Skip to content

Latest commit

 

History

History

with-sqlalchemy-asyncpg

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Getting started with Neon and SQLAlchemy using asyncpg

Clone the repository

npx degit neondatabase/examples/with-sqlalchemy-asyncpg ./with-sqlalchemy-asyncpg

Run the command below to copy the .env.example file:

cp .env.example .env

Store your Neon credentials

Store your Neon credentials in your .env file.

DATABASE_URL="postgresql://neondb_owner:...@ep-...us-east-1.aws.neon.tech/neondb?sslmode=require"
  • user is the database user.
  • password is the database user’s password.
  • endpoint_hostname is the host with neon.tech as the TLD.
  • dbname is the name of the database. “neondb” is the default database created with each Neon project.
  • ?sslmode=require an optional query parameter that enforces the SSL mode while connecting to the Postgres instance for better security.

Important: To ensure the security of your data, never expose your Neon credentials to the browser.

Run one of the following commands to create a virtual environment:

# Create a virtual environment
python -m venv venv

# Active the virtual environment (Windows)
.\venv\Scripts\activate.bat

# Active the virtual environment (Linux)
source ./venv/bin/activate

Run the command below to install project dependencies:

pip install -r requirements.txt

Run the Python application using the following command:

python index.py