METADATA 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. Metadata-Version: 2.0
  2. Name: MySQL-python
  3. Version: 1.2.5
  4. Summary: Python interface to MySQL
  5. Home-page: https://github.com/farcepest/MySQLdb1
  6. Author: Andy Dustman
  7. Author-email: farcepest@gmail.com
  8. License: GPL
  9. Platform: ALL
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Environment :: Other Environment
  12. Classifier: License :: OSI Approved :: GNU General Public License (GPL)
  13. Classifier: Operating System :: MacOS :: MacOS X
  14. Classifier: Operating System :: Microsoft :: Windows :: Windows NT/2000
  15. Classifier: Operating System :: OS Independent
  16. Classifier: Operating System :: POSIX
  17. Classifier: Operating System :: POSIX :: Linux
  18. Classifier: Operating System :: Unix
  19. Classifier: Programming Language :: C
  20. Classifier: Programming Language :: Python
  21. Classifier: Topic :: Database
  22. Classifier: Topic :: Database :: Database Engines/Servers
  23. =========================
  24. Python interface to MySQL
  25. =========================
  26. MySQLdb is an interface to the popular MySQL_ database server for
  27. Python. The design goals are:
  28. - Compliance with Python database API version 2.0 [PEP-0249]_
  29. - Thread-safety
  30. - Thread-friendliness (threads will not block each other)
  31. MySQL-3.23 through 5.5 and Python-2.4 through 2.7 are currently
  32. supported. Python-3.0 will be supported in a future release.
  33. PyPy is supported.
  34. MySQLdb is `Free Software`_.
  35. .. _MySQL: http://www.mysql.com/
  36. .. _`Free Software`: http://www.gnu.org/
  37. .. [PEP-0249] http://www.python.org/peps/pep-0249.html