
Product
Introducing Repository Labels and Security Policies
Socket is introducing a new way to organize repositories and apply repository-specific security policies.
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.
pip install aws-psycopg2
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.
./configure --prefix {path_to_postgresql_source} --without-readline --without-zlib
make
make install
setup.cfg
file with the following:pg_config={path_to_postgresql_source/bin/pg_config}
static_libpq=1
python setup.py build
in the psycopg2 source directory.After the above steps have been completed you will then have a build directory and the custom compiled psycopg2 library will be contained within it. Copy this directory into your AWS Lambda package and you will now be able to access PostgreSQL from within AWS Lambda using the psycopg2 library.
FAQs
A aws psycopg2 package from psycopg2.
We found that aws-psycopg2 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket is introducing a new way to organize repositories and apply repository-specific security policies.
Research
Security News
Socket researchers uncovered malicious npm and PyPI packages that steal crypto wallet credentials using Google Analytics and Telegram for exfiltration.
Product
Socket now supports .NET, bringing supply chain security and SBOM accuracy to NuGet and MSBuild-powered C# projects.