About Connector/Python
Overview of MariaDB Connector/Python: a PEP-249-compliant DB API 2.0 driver supporting sync and async operations, available as pure Python, a C extension, or pre-compiled binary wheels.
Last updated
Was this helpful?
Was this helpful?
# Pure Python (default)
$ pip3 install --pre mariadb
# C extension for maximum performance
$ pip3 install --pre mariadb[c]
# Pre-compiled binary wheels
$ pip3 install --pre mariadb[binary]
# With connection pooling
$ pip3 install --pre mariadb[binary,pool]