Skip to main content

Ardilla ORM. Easy to use, fast to implement, with sync and async flavors

Project description

ardilla

Downloads PyPI - Python Version PyPI GitHub Documentation Status

Ardilla (pronounced ahr-dee-yah) means "SQuirreL" in spanish.

This library aims to be a simple way to add an SQLite database and basic C.R.U.D. methods to python applications. It uses pydantic for data validation and supports a sync engine as well as an async (aiosqlite) version.

Who and what is this for

This library is well suited for developers seeking to incorporate SQLite into their python applications to use simple C.R.U.D. methods. It excels in its simplicity and ease of implementation while it may not be suitable for those who require more complex querying, intricate relationships or top performance.

For developers who desire more advanced features, there are other libraries available, such as tortoise-orm, sqlalchemy, pony or peewee.

Links

Find Ardilla's source code here

Documentation can be accessed here

install

Install lastest release from PyPi

pip install -U ardilla
pip install -U ardilla[async]
pip install -U ardilla[dev]
  • async instaslls aiosqlite
  • dev installs formatting and testing dependencies

Or install the lastest changes directly from github

pip install git+https://github.com/chrisdewa/ardilla.git
pip install git+https://github.com/chrisdewa/ardilla.git#egg=ardilla[async]
pip install git+https://github.com/chrisdewa/ardilla.git#egg=ardilla[dev]

How to use

from ardilla import Engine, Model, Crud
from pydantic import Field

engine = Engine('db.sqlite3')

class User(Model):
    id: int = Field(primary=True, autoincrement=True) 
    name: str
    age: int

crud = engine.crud(User)

def main():
    # get or none
    user = crud.get_or_none(id=1) # user with id of 1
    # get or create
    user2, was_created = crud.get_or_create(id=2, name='chris', age=35)
    # get many
    users = crud.get_many(name='chris') # all users named chris
    # save one
    user3 = User(id=3, name='moni', age=35)
    user.age += 1 # it's her birthday
    crud.save_one(user3)
    # save many
    crud.save_many(user, user2, user3)

Supported CRUD methods:

  • crud.insert Inserts a record, rises errors if there's a conflict
  • crud.insert_or_ignore Inserts a record or silently ignores if it already exists
  • crud.save_one upserts an object
  • crud.save_many upserts many objects
  • crud.get_all equivalent to SELECT * FROM tablename
  • crud.get_many returns all the objects that meet criteria
  • crud.get_or_create returns an tuple of the object and a bool, True if the object was newly created
  • crud.get_or_none Returns the first object meeting criteria if any
  • crud.delete_one Deletes an object
  • crud.delete_many Deletes many objects

Examples:

To-dos

  • Add testing
  • Add a schema generator
  • Add filtering
  • Add limiting
  • Docstring everything using Google format
  • Start a changelog when out of alpha
  • Add proper documentation
    • propper as in a site with how to use

Project details


Download files

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

Source Distribution

ardilla-0.2.0b0.tar.gz (19.9 kB view details)

Uploaded Source

Built Distribution

ardilla-0.2.0b0-py3-none-any.whl (20.6 kB view details)

Uploaded Python 3

File details

Details for the file ardilla-0.2.0b0.tar.gz.

File metadata

  • Download URL: ardilla-0.2.0b0.tar.gz
  • Upload date:
  • Size: 19.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for ardilla-0.2.0b0.tar.gz
Algorithm Hash digest
SHA256 c2b2db1ca7706f08dc269fb7c602a47306b796bc1c09f96690e810fb771996d3
MD5 0a378be7be4a8f644f3fad6b9cf0c616
BLAKE2b-256 70cf081a1d2a96cb406a78933246f9c296a7ef2f640ca0616b3b631c455dee26

See more details on using hashes here.

File details

Details for the file ardilla-0.2.0b0-py3-none-any.whl.

File metadata

  • Download URL: ardilla-0.2.0b0-py3-none-any.whl
  • Upload date:
  • Size: 20.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for ardilla-0.2.0b0-py3-none-any.whl
Algorithm Hash digest
SHA256 6b30b7eddc6d07b2c72c4771672411b53787e82ee37ff9a82f2873174cfb6fb2
MD5 833758389d50f28220d144a23c9c61b2
BLAKE2b-256 23399c23ae76c2b860bba7f3a9b6d636ed6591aa6387f7728a9eefff862bfed2

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