You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Enso-Bot/venv/Lib/site-packages/mysqlclient-2.0.1.dist-info/METADATA

105 lines
3.2 KiB
Plaintext

Metadata-Version: 2.1
Name: mysqlclient
Version: 2.0.1
Summary: Python interface to MySQL
Home-page: https://github.com/PyMySQL/mysqlclient-python
Author: Inada Naoki
Author-email: songofacandy@gmail.com
License: GPL
Platform: ALL
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Other Environment
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows :: Windows NT/2000
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Unix
Classifier: Programming Language :: C
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Database
Classifier: Topic :: Database :: Database Engines/Servers
Requires-Python: >=3.5
Description-Content-Type: text/markdown
# 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:
* Python mailing list [python-list](https://mail.python.org/mailman/listinfo/python-list)
* Slack [pythondev.slack.com](https://pyslackers.com/web/slack)
Or when you have question about MySQL:
* [MySQL Community on Slack](https://lefred.be/mysql-community-on-slack/)
## 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:
* `$ sudo apt-get install python3-dev default-libmysqlclient-dev build-essential` # Debian / Ubuntu
* `% sudo yum install python3-devel mysql-devel` # Red Hat / CentOS
Then you can install mysqlclient via pip now:
```
$ pip install mysqlclient
```
### Documentation
Documentation is hosted on [Read The Docs](https://mysqlclient.readthedocs.io/)