Psycopg2
Psycopg is the most popular PostgreSQL database adapter for the Python programming language. Its main features are the complete implementation of the Python DB API 2.0 specification and the thread safety (several threads can share the same connection). It was designed for heavily multi-threaded applications that create and destroy lots of cursors and make a large number of concurrent “INSERT”s or “UPDATE”s.
Psycopg 2 is mostly implemented in C as a libpq wrapper, resulting in being both efficient and secure. It features client-side and server-side cursors, asynchronous communication and notifications, “COPY TO/COPY FROM” support. Many Python types are supported out-of-the-box and adapted to matching PostgreSQL data types; adaptation can be extended and customized thanks to a flexible objects adaptation system.
Psycopg 2 is both Unicode and Python 3 friendly.
How to install
PostgreSQL 클라이언트가 설치되어있을 경우 아래 명령으로 설치 가능하다.
from source code:
PostgreSQL 클라이언트가 없을 경우 아래의 명령으로 바이너리까지 설치할 수 있다. 프로덕션 환경에서는 추천하지 않는다.
with statement
Starting from version 2.5, psycopg2’s connections and cursors are context managers and can be used with the with statement: