Pydapper Versions Save

a pure python port of the NuGet library dapper

0.4.0

2 years ago

Features

0.3.0

2 years ago

0.3.0

Features

  • ✨ support PYDAPPER_DSN environment variable for connections. PR #21 by @zschumacher.

Internal

  • 🔧 Cache oracle-instantclient download in test workflow. PR #20 by @zschumacher.

0.2.0

2 years ago

Features

Docs

Internal

0.1.2

2 years ago

🚀 First stable release of pydapper!

pydapper supports MySQL, PostgreSQL, Microsoft SQL Server and SQLite and strives to prevent you from ever having to write this code again:

from psycopg2 import connect

with connect("postgresql://pydapper:pydapper@localhost/pydapper") as conn:
    with conn.cursor() as cursor:
        cursor.execute("select * from task")
        headers = [i[0] for i in cursor.description]
        data = cursor.fetchall()

list_data = [dict(zip(headers, row)) for row in data]

0.1.1a3

2 years ago

Features

Docs

Internal

0.1.1a2

2 years ago

initial alpha release of pydapper