A aws psycopg2 package from psycopg2 https://pypi.org/project/aws-psycopg2/
Last updated Jun 6, 2026
80
Stars
11
Forks
6
Issues
0
Stars/day
Attention Score
2
Language breakdown
No language data available.
โธ Files
click to expand
README
psycopg2 Python Library for AWS Lambda ======================================
This is a custom compiled psycopg2 C library for Python. Due to AWS Lambda missing the required PostgreSQL libraries in the AMI image, we needed to compile psycopg2 with the PostgreSQL libpq.so library statically linked libpq library instead of the default dynamic link.
Install and setup
pip install aws-psycopg2
Source code : https://github.com/AbhimanyuHK/aws-psycopg2
Instructions on compiling this package from scratch
Here was the process that was used to build this package. You will need to perform these steps if you want to build a newer version of the psycopg2 library.
- Download the
- Download the
- Go into the PostgreSQL source directory and execute the following commands:
./configure --prefix {pathtopostgresql_source} --without-readline --without-zlib
- make
- make install
- Go into the psycopg2 source directory and edit the
setup.cfgfile with the following:
pgconfig={pathtopostgresqlsource/bin/pg_config}
- static_libpq=1
- Execute
python setup.py buildin the psycopg2 source directory.
๐ More in this category