
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
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
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.