agarza/dev-garza/: mysqlclient-2.0.1 metadata and description

Homepage | Simple index

Python interface to MySQL

author Inada Naoki
author_email songofacandy@gmail.com
classifiers
  • Development Status :: 5 - Production/Stable
  • Environment :: Other Environment
  • License :: OSI Approved :: GNU General Public License (GPL)
  • Operating System :: MacOS :: MacOS X
  • Operating System :: Microsoft :: Windows :: Windows NT/2000
  • Operating System :: OS Independent
  • Operating System :: POSIX
  • Operating System :: POSIX :: Linux
  • Operating System :: Unix
  • Programming Language :: C
  • Programming Language :: Python
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.5
  • Programming Language :: Python :: 3.6
  • Programming Language :: Python :: 3.7
  • Programming Language :: Python :: 3.8
  • Topic :: Database
  • Topic :: Database :: Database Engines/Servers
license GPL
requires_python >=3.5

Because this project isn't in the mirror_whitelist, no releases from root/pypi are included.

File Tox results History
mysqlclient-2.0.1-cp37-cp37m-win_amd64.whl
Size
263 KB
Type
Python Wheel
Python
3.7
mysqlclient-2.0.1-cp38-cp38-win_amd64.whl
Size
263 KB
Type
Python Wheel
Python
3.8
mysqlclient-2.0.1.tar.gz
Size
86 KB
Type
Source

# mysqlclient

[![Build Status](https://secure.travis-ci.org/PyMySQL/mysqlclient-python.png)](http://travis-ci.org/PyMySQL/mysqlclient-python)

This is a fork of [MySQLdb1](https://github.com/farcepest/MySQLdb1).

This project adds Python 3 support and bug fixes. I hope this fork is merged back to MySQLdb1 like distribute was merged back to setuptools.

## Support

Do Not use Github Issue Tracker to ask help. OSS Maintainer is not free tech support

When your question looks relating to Python rather than MySQL:

Or when you have question about MySQL:

## Install

### Windows

Building mysqlclient on Windows is very hard. But there are some binary wheels you can install easily.

### macOS (Homebrew)

Install MySQL and mysqlclient:

` # Assume you are activating Python 3 venv $ brew install mysql $ pip install mysqlclient `

If you don’t want to install MySQL server, you can use mysql-client instead:

` # Assume you are activating Python 3 venv $ brew install mysql-client $ echo 'export PATH="/usr/local/opt/mysql-client/bin:$PATH"' >> ~/.bash_profile $ export PATH="/usr/local/opt/mysql-client/bin:$PATH" $ pip install mysqlclient `

### Linux

Note that this is a basic step. I can not support complete step for build for all environment. If you can see some error, you should fix it by yourself, or ask for support in some user forum. Don’t file a issue on the issue tracker.

You may need to install the Python 3 and MySQL development headers and libraries like so:

Then you can install mysqlclient via pip now:

` $ pip install mysqlclient `

### Documentation

Documentation is hosted on [Read The Docs](https://mysqlclient.readthedocs.io/)