Skip to main content

pyDAL

pip version master-test Coverage Status API Docs Status

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.

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
  • Google Firestore

License

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

Download files

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

Source Distribution

pydal-20260520.0.tar.gz (555.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pydal-20260520.0-py2.py3-none-any.whl (253.2 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

  • Download URL: pydal-20260520.0.tar.gz
  • Upload date:
  • Size: 555.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for pydal-20260520.0.tar.gz
Algorithm Hash digest
SHA256 a1a01d28655231b7e0893ca13e9c92084549f7761042e1ae9ef70d37146737c4
MD5 21ca33debbc8a022137143d4b04dbaa4
BLAKE2b-256 204e1d576fcb6857f56cd0aeb413c387044fd609140628d1c401b7ae29ee6190

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydal-20260520.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 253.2 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for pydal-20260520.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 f3dc3d4f9c2c032984479722834750778480c8c0ca7a51c3e40084cde3372a5d
MD5 e30e59a732903a9306d1128181f72a32
BLAKE2b-256 a644dd4e3dd0b0fa4c9d5467b2fab11b1b2c208dd4cc460540d73abfcf40e1d8

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

20260520.0 This release

2 files

20260519.1

2 files

20260313.1

2 files

20260216.1

2 files

20260118.1

2 files

20260110.1

2 files

20251207.1

2 files

20251115.1

2 files

20251109.1

2 files

20251018.1

2 files

20251012.3

2 files

20251012.2

2 files

20251012.1

2 files

20250922.1

2 files

20250920.1

2 files

20250914.1

2 files

20250913.1

2 files

20250908.2

2 files

20250906.1

2 files

20250629.2

2 files

20250622.1

2 files

20250607.2

2 files

20250607.1

2 files

20250526.4

2 files

20250526.3

2 files

20250526.2

2 files

20250525.3

2 files

20250525.2

2 files

20250525.1

2 files

20250501.2

2 files

20250501.1

2 files

20250228.1

2 files

20250215.2

2 files

20250215.1

2 files

20241204.1

2 files

20241201.2

2 files

20241201.1

2 files

20241111.2

2 files

20241111.1

2 files

20241027.1

2 files

20240906.1

2 files

20240713.1

2 files

20240601.3

2 files

20240601.2

2 files

20240601.1

2 files

20240529.1

2 files

20240428.2

2 files

20240428.1

2 files

20240427.3

2 files

20240427.2

2 files

20240427.1

2 files

20231114.3

2 files

20231114.2

2 files

20231111.1

2 files

20230521.1

2 files

20230511.1

2 files

20230507.3

2 files

20230507.1

3 files

20230407.2

2 files

20221110.1

1 file

20220916.1

1 file

20220814.1

1 file

20220807.1

1 file

20220725.1

1 file

20220721.1

1 file

20220720.1

1 file

20220609.1

1 file

20220213.2

1 file

20220213.1

1 file

20220114.1

1 file

20210626.3

1 file

20210626.2

1 file

20210626.1

1 file

20210215.1

1 file

20200910.1

1 file

20200714.1

1 file

20200712.2

1 file

20200712.1

1 file

20200711.1

1 file

20200709.3

1 file

20200709.2

1 file

20200531.3

1 file

20200531.2

1 file

20200531.1

1 file

20200524.3

1 file

20200524.2

1 file

20200524.1

1 file

20200517.1

1 file

20200506.1

1 file

20200502.2

1 file

20200502.1

1 file

20200429.4

1 file

20200429.3

1 file

20200429.2

1 file

20200429.1

1 file

20200404.1

1 file

20200321.1

1 file

20191227.1

1 file

20191224.2

1 file

20191224.1

1 file

20190915.2

1 file

20190915.1

1 file

20190826.1

1 file

20190818.1

1 file

19.8.18

1 file

19.8.17

1 file

19.8.16

1 file

19.5.11

1 file

19.5.10

1 file

19.5.9

1 file

19.5

2 files

19.4

2 files

17.11

2 files

17.8

2 files

17.7

2 files

17.3

2 files

17.1

2 files

16.11

1 file

16.9

1 file

16.8

1 file

16.7

1 file

16.6.28

1 file

16.6.20

1 file

16.6.9

1 file

16.6

1 file

16.3

1 file

15.12

1 file

15.9

1 file

15.07

1 file

15.05.29

1 file

15.05.26

1 file

15.05

1 file

15.03

1 file

15.02.27

1 file

15.02

1 file

3.20260526.0

2 files

0.12.25

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page