Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Its important to know what you are searching for and the results you pasted:</p> <ul> <li><a href="http://sourceforge.net/projects/mysql-python/">MySQLdb</a> - this is a Python driver for MySQL. This is a requirement to use MySQL with Python.</li> <li><a href="http://www.sqlalchemy.org/">SQLAlchemy</a> - this in an object relational mapper. A library used to define database objects in code. By itself, this library cannot connect to any database.</li> <li><a href="http://sqlobject.org/">SQLObject</a> - this is an alternate object relational mapper.</li> <li><a href="http://pythonhosted.org/oursql/">ourSQL</a> - an alternate database driver for MySQL to be used in Python. </li> <li><a href="http://dev.mysql.com/downloads/connector/python/1.0.html">Connector/Python</a> - a driver for Python from the developers of MySQL. </li> <li><a href="http://www.sqlite.org/">SQLite</a> - this is a file-based database, and has nothing to do with MySQL. Libraries for sqlite are bundled with Python.</li> <li><a href="http://wiki.postgresql.org/wiki/Psycopg2_Tutorial">Psycopg2</a> - this is a driver for postgreSQL, a different database.</li> <li><a href="https://github.com/yhat/pandasql">pandaSQL</a> - this has nothing to do with MySQL but is rather a component for the pandas library.</li> <li><a href="https://code.google.com/p/python-sql/">python-sql</a>, this library is only for SQL statements and nothing to do with MySQL.</li> <li><a href="http://pythonweb.org/projects/snakesql/">SnakeSQL</a> - this is a database written in Python.</li> </ul> <p>Of what you have searched, the <strong>recommended library is MySQLdb</strong>.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload