asyncpg
asyncpg is a database interface library designed specifically for PostgreSQL and asyncio.
S'ensenya a
ProgramacióBases de dadesDAW-BIO
Introduction
asyncpg is an efficient implementation of the PostgreSQL binary protocol for Python’s asyncio. It provides fast queries, native protocol features, and convenient primitives for async I/O.
Setup
uv init asyncpg-basic
cd asyncpg-basic
uv add asyncpgCreate and start a PostgreSQL instance as explained in Basic.
Then create a database named test:
;Basic Usage
Create test_database.py:
# Establish a connection to an existing database named "test"
= await
# Execute a statement to create a new table.
await """
,
,
) )
# Insert a record into the created table.
await """
,
,
)
# Select a row from the table.
= await
# *row* now contains <Record id=1 name='Alice' dob=datetime.date(1980, 25, 1)>
# Close the connection.
await
Run the script and you should see:
<Record id=1 name='Alice' dob=datetime.date()Estàs llegint una vista prèvia.
Inicia sessió amb Google per llegir la pàgina completa.
Inicia sessió amb GoogleAmb qualsevol compte de Google. Només et demanarem que acceptis les condicions del servei.