Skip to main content

pyDAL is a Database Abstraction Layer. It generates queries for SQlite, PotsgreSQL, MySQL, and other backends. It was originally part of the web2py frameworks but it is now an independent project. Example: db.define_table("thing",Field("name")) and db.thing.insert(name="Pizza")

Project description

pyDAL

pyDAL is a pure Python Database Abstraction Layer.

It dynamically generates the SQL/noSQL in realtime using the specified dialect for the database backend, so that you do not have to write SQL code or learn different SQL dialects (the term SQL is used generically), and your code will be portable among different types of databases. What makes pyDAL different from most of the other DALs is the syntax: it maps records to python dictionaries, which is simpler and closer to SQL. Other famous frameworks instead strictly rely on an Object Relational Mapping (ORM) like the Django ORM or the SQL Alchemy ORM, that maps tables to Python classes and rows to Objects.

Historically pyDAL comes from the original web2py's DAL, with the aim of being compatible with any Python program. However, pyDAL nowadays is an indipendent package that can be used in any Python 3.7+ context.

pip version Build Status Coverage Status API Docs Status

Installation

You can install pyDAL using pip:

pip install pyDAL

Usage and Documentation

Here is a quick example:

>>> from pydal import DAL, Field
>>> db = DAL('sqlite://storage.db')
>>> db.define_table('thing', Field('name'))
>>> db.thing.insert(name='Chair')
>>> query = db.thing.name.startswith('C')
>>> rows = db(query).select()
>>> print rows[0].name
Chair
>>> db.commit()

The complete updated documentation is available on the py4web manual

What's in the box?

A little taste of pyDAL features:

  • Transactions
  • Aggregates
  • Inner Joins
  • Outer Joins
  • Nested Selects

Which databases are supported?

pyDAL supports the following databases:

  • SQLite
  • MySQL
  • PostgreSQL
  • MSSQL
  • FireBird
  • Oracle
  • DB2
  • Ingres
  • Sybase
  • Informix
  • Teradata
  • Cubrid
  • SAPDB
  • IMAP
  • MongoDB

License

pyDAL is released under the BSD-3c License. For further details, please check the LICENSE file.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pydal-20241111.1.tar.gz (623.2 kB view details)

Uploaded Source

Built Distribution

pydal-20241111.1-py2.py3-none-any.whl (246.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file pydal-20241111.1.tar.gz.

File metadata

  • Download URL: pydal-20241111.1.tar.gz
  • Upload date:
  • Size: 623.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.6

File hashes

Hashes for pydal-20241111.1.tar.gz
Algorithm Hash digest
SHA256 5071eb978c23a52c5420d0eec9031367d364cd88a4854eaad0e43cc98d5dd8cc
MD5 c8de7ccce6a7e195afe898472ee0c8c8
BLAKE2b-256 295aa126f226b960ae4498a1f07a7f39f76d9b25ad0179444df480403fb79e89

See more details on using hashes here.

File details

Details for the file pydal-20241111.1-py2.py3-none-any.whl.

File metadata

  • Download URL: pydal-20241111.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 246.5 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.6

File hashes

Hashes for pydal-20241111.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b3a556c6f15c58b4fba4b5b23dcabfdb988744941c08930217c88d8376b31f6c
MD5 d0422c44ac07256c94fdf2de2b593bcb
BLAKE2b-256 e67b822e1d62078dc0eee6d4e9761a565b2504768860f0d83c4ea3aeb0151b6c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page