Metadata-Version: 2.1
Name: mysqlengine
Version: 0.1.11.3
Summary: Asynchronous MySQL ORM for Python
Home-page: https://github.com/AresJef/MysqlEngine
Author: Jiefu Chen
Author-email: keppa1991@163.com
License: MIT license
Keywords: mysql,engine,ORM
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: cryptography>=41.0.1
Requires-Dist: Cython==3.0.4
Requires-Dist: cytimes>=0.1.12.2
Requires-Dist: pyarrow>=12.0.1

## Asynchronous MySQL ORM for Python

Created to be used in a project, this package is published to github 
for ease of management and installation across different modules.

### Installation
Install from `PyPi`
``` bash
pip install mysqlengine
```

Install from `github`
``` bash
pip install git+https://github.com/AresJef/MysqlEngine.git
```

### Compatibility
Only support for python 3.11 and above.

### Acknowledgements
MysqlEngine is based on several open-source repositories.
- [cryptography](https://github.com/pyca/cryptography)
- [cytimes](https://github.com/AresJef/cyTimes)
- [numpy](https://github.com/numpy/numpy)
- [pandas](https://github.com/pandas-dev/pandas)

MysqlEngine makes modification of the following open-source repositories:
- [aiomysql](https://github.com/aio-libs/aiomysql)
- [PyMySQL](https://github.com/PyMySQL/PyMySQL)
