1.什么是PyMySQL?活动地址:CSDN21天学习挑战赛
PyMySQL是从Python连接到MySQL数据库服务器的接口。 它实现了Python数据库API v2.0,并包含一个纯Python的MySQL客户端库。 PyMySQL的目标是成为MySQLdb的替代品。
PyMySQL参考文档:http://pymysql.readthedocs.io/
在使用PyMySQL之前,请确保您的机器上安装了PyMySQL。只需在Python脚本中输入以下内容即可执行它 -
#!/usr/bin/python3 import PyMySQL
在 Windows 系统上,打开命令提示符 -
C:UsersAdministrator>python Python 3.6.1 (v3.6.1:69c0db5, Mar 21 2017, 18:41:36) [MSC v.1900 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import PyMySQL Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'PyMySQL' >>>
如果产生如上结果,则表示PyMySQL模块尚未安装。
最后一个稳定版本可以在PyPI上使用,可以通过pip命令来安装- pip install PyMySQL
:UsersAdministrator> pip install PyMySQL
Collecting PyMySQL
Downloading PyMySQL-0.7.11-py2.py3-none-any.whl (78kB)
51% |████████████████▋ |
40kB 109kB/s eta 0:0 64% |████████████████████▊
| 51kB 112kB/s eta 77% |█████████████████████████ | 61kB 135kB/s 90% |█████████████████████████████
| 71kB 152 100% |████████████████████████████████| 81kB 163kB/s
Installing collected packages: PyMySQL
Successfully installed PyMySQL-0.7.11
C:UsersAdministrator>
或者(例如,如果pip不可用),可以从GitHub下载tarball,并按照以下方式安装:
$ # X.X is the desired PyMySQL version (e.g. 0.5 or 0.6). $ curl -L http://github.com/PyMySQL/PyMySQL/tarball/pymysql-X.X | tar xz $ cd PyMySQL* $ python setup.py install $ # The folder PyMySQL* can be safely removed now.
注意 - 确保具有root权限来安装上述模块。
未完续待…



