
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
NOTE: These features have been merged upstream into mysqlclient 2.2.0. This package is now archived. Please switch to mysqlclient>=2.2
instead.
Fork of mysqlclient which adds support for setting collation via connection options.
Setting collation is necessary for servers that do not use the default, and for Django queries using CAST
statements, which are prevalent in Wagtail 4. For more background, see the following discussions:
Make sure you have MySQL or MariaDB C connector, and a C compiler installed.
IMPORTANT: If you already have mysqlclient
installed, uninstall it before installing this fork. Both projects use the same module name and cannot be installed at the same time.
pip uninstall mysqlclient
pip install mysqlclient-collate
For use in a Django project, set your database connection as so:
DATABASES = {
"default": {
"ENGINE": "django.db.backends.mysql",
"HOST": "",
"NAME": "",
"USER": "",
"PASSWORD": "",
"OPTIONS": {
"charset": "utf8mb4",
"collation": "utf8mb4_unicode_ci",
},
}
}
FAQs
Python interface to MySQL
We found that mysqlclient-collate demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.