What is the difference between these two apis? Which one faster, reliable using Python DB API?

Upd: I see two psql drivers for Django. The first one is psycopg2. What is the second one? pygresql?

link|improve this question

67% accept rate
Django's second PostgreSQL driver is called postgresql, but it is actually psychopg1 -- so your choices in Django are between version 1 and version 2 of psychopg. – stw_dev Jan 22 '11 at 8:28
feedback

5 Answers

up vote 2 down vote accepted

For what it's worth, django uses psycopg2.

link|improve this answer
There are two psql drivers in Django, the most popular is psycopg2 but what about second? Is it pygresql driver? – maxp Jan 6 '09 at 5:03
feedback

Licensing may be an issue for you. PyGreSQL is MIT license. Psycopg2 is GPL license.

(as long as you are accessing psycopg2 in normal ways from Python, with no internal API, and no direct C calls, this shouldn't cause you any headaches, and you can release your code under whatever license you like - but I am not a lawyer).

link|improve this answer
psycopg2 is LGPL licensed not GPL. – Nick Feb 17 at 19:27
feedback

Psycopg2 doesn't have much documentation but the code in the examples directory is very helpful.
Also it's thread safety level 2, meaning multiple threads can share the module and connections but not the cursors.
python dbi pep

link|improve this answer
feedback

psycopg2 is partly written in C so you can expect a performance gain, but on the other hand, a bit harder to install. PyGreSQL is written in Python only, easy to deployed but slower.

link|improve this answer
PyGreSQL has C module too. – iny Jan 5 '09 at 15:52
feedback

"PyGreSQL is written in Python only, easy to deployed but slower."

PyGreSQL contains a C-coded module, too. I haven't done speed tests, but they're not likely to be much different, as the real work will happen inside the database server.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.