pypi mysqlclient 2.2.0rc1
v2.2.0rc1

latest releases: 2.2.4, 2.2.3, 2.2.2...
11 months ago

Important changes

v2.2.0 uses pkg-config instead of mysql_config. You need to install pkg-config to build. You can configure cflags and ldflags manually by setting MYSQLCLIENT_CFLAGS and MYSQLCLIENT_LDFLAGS too.

Cursor.mogrify() is added.

Cursor.executemany implementation now uses mogrify(). Sequencee of scalar value (e.g. executemany("INSERT INTO t (data) VALUES (%s)", [1, 2, 3]) is no more valid args. You need to use sequence of tuple (e.g. [(1,), (2,), (3,)]) instead.

What's Changed

New Contributors

Full Changelog: v2.1.1...v2.2.0rc1

Don't miss a new mysqlclient release

NewReleases is sending notifications on new releases.