Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/web2py/pydal
A pure Python Database Abstraction Layer
https://github.com/web2py/pydal
Last synced: 6 days ago
JSON representation
A pure Python Database Abstraction Layer
- Host: GitHub
- URL: https://github.com/web2py/pydal
- Owner: web2py
- License: bsd-3-clause
- Created: 2014-12-05T20:51:28.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-04-28T19:49:13.000Z (7 months ago)
- Last Synced: 2024-05-22T17:10:40.595Z (6 months ago)
- Language: Python
- Homepage:
- Size: 31.5 MB
- Stars: 479
- Watchers: 37
- Forks: 136
- Open Issues: 148
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES
- License: LICENSE.txt
- Authors: AUTHORS
Awesome Lists containing this project
README
# 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.
pyDAL comes from the original web2py's DAL, with the aim of being compatible with any Python program. pyDAL doesn't require web2py and can be used in any Python context.
[![pip version](https://img.shields.io/pypi/v/pydal.svg?style=flat-square)](https://pypi.python.org/pypi/pydal)
[![Build Status](https://img.shields.io/travis/web2py/pydal/master.svg?style=flat-square&label=Travis-CI)](https://travis-ci.com/web2py/pydal)
[![Coverage Status](https://img.shields.io/codecov/c/github/web2py/pydal.svg?style=flat-square)](https://codecov.io/github/web2py/pydal)
[![API Docs Status](https://readthedocs.org/projects/pydal/badge/?version=latest&style=flat-square)](http://pydal.rtfd.org/)## Installation
You can install pyDAL using `pip`:
```bash
pip install pyDAL
```## Usage and Documentation
Here is a quick example:
```pycon
>>> 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 documentation is available on http://www.web2py.com/books/default/chapter/29/06/the-database-abstraction-layer
## 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.