DESCRIPTION.rst 640 B

123456789101112131415161718192021
  1. =========================
  2. Python interface to MySQL
  3. =========================
  4. MySQLdb is an interface to the popular MySQL_ database server for
  5. Python. The design goals are:
  6. - Compliance with Python database API version 2.0 [PEP-0249]_
  7. - Thread-safety
  8. - Thread-friendliness (threads will not block each other)
  9. MySQL-3.23 through 5.5 and Python-2.4 through 2.7 are currently
  10. supported. Python-3.0 will be supported in a future release.
  11. PyPy is supported.
  12. MySQLdb is `Free Software`_.
  13. .. _MySQL: http://www.mysql.com/
  14. .. _`Free Software`: http://www.gnu.org/
  15. .. [PEP-0249] http://www.python.org/peps/pep-0249.html