Skip to main content

Mini and Secure SQLite ORM

Project description

MiniSLite

MiniSLite is a secure and mini SQLite ORM module.

Install

From Pypi

The script is available on PyPI. To install with pip:

pip install minislite

From Source Code

git clone https://github.com/ahmetkotan/minislite
cd minislite
python setup.py build
python setup.py install

Usage

Create Model

from minislite import MiniSLiteModel
from minislite import DatabaseField


class Person(MiniSLiteModel):
    # Only field_type is required
    name = DatabaseField(field_type=str, unique=False, not_null=True, auto_increment=False)
    last_name = DatabaseField(field_type=str, default="mini")
    age = DatabaseField(field_type=int, not_null=False)

    # Optionals
    table_name = "person"
    unique_together = ["name", "last_name"]

Create Database and Add Model

from minislite import MiniSLiteDb

database = MiniSLiteDb("minis.db")
database.add_model(Person)

Create and Update Object

person1 = Person(name="mini", last_name="slite")  # not created
person1.age = 1
person1.save()  # created

person2 = Person.objects.create(name="mini2", last_name="slite")  # created
person2.age = 2
person2.save()  # updated

person3 = Person.objects.create(name="mini3", last_name="slite", age=10)  # created
person4 = Person.objects.create(name="mini4", last_name="slite", age=20)  # created

Update All Objects

Person.objects.update(last_name="slite-updated")

Filter/Get and Delete Object

first_person = Person.objects.first()
last_person = Person.objects.last()

person_objects = Person.objects.filter(last_name="slite-updated")
# or
# person_objects = Person.objects.all()
for person in person_objects:
    print(person.name)

person_obj = Person.objects.get(name="mini")
person_obj.delete()

Special Filters

  • gt, gte, lt, lte for integer, bool and float fields
  • contains, startswith, endswith for string fields
older_than_10 = Person.objects.filter(age__gt=10)[0]
print(older_than_10.name)  # mini4

Delete All Objects

Person.objects.delete(i_am_sure=True)

Clean All Tables or Drop Model

database.clean_tables()
database.drop_model(Person)

Exceptions

from minislite.exceptions import RecordNotFoundError, AlreadyExistsError, DatabaseNotFoundError, \
    AreYouSureError, WhereOperatorError
  • RecordNotFoundError: If you use objects.get() and that is not found in database
  • AlreadyExistsError: Raise this exception when an object creating or saving. Check your unique=True fields and unique_together fields.
  • DatabaseNotFoundError: Cannot use TableManager if you don't initialize MiniSLiteDb()
  • AreYouSureError: Raise this exception if you want to delete all objects(objects.delete()) in model. Add i_am_sure=True arguments.
  • WhereOperatorError: Raise this exception if you use integer operator for string field. Or vice versa.

Development and Contribution

See; CONTRIBUTING.md

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

minislite-0.99.tar.gz (6.3 kB view details)

Uploaded Source

Built Distribution

minislite-0.99-py3-none-any.whl (7.8 kB view details)

Uploaded Python 3

File details

Details for the file minislite-0.99.tar.gz.

File metadata

  • Download URL: minislite-0.99.tar.gz
  • Upload date:
  • Size: 6.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for minislite-0.99.tar.gz
Algorithm Hash digest
SHA256 e072b196244ee220eb17ad6a4dff9e08a963ed039ff95ba6a1de9a69869972eb
MD5 038d6d2aceff6cfdd760dfbc93521847
BLAKE2b-256 9942ca3f13dd0a6feeb632b467abc6e2fdf68c205020aeaa33b716acc8033f34

See more details on using hashes here.

File details

Details for the file minislite-0.99-py3-none-any.whl.

File metadata

  • Download URL: minislite-0.99-py3-none-any.whl
  • Upload date:
  • Size: 7.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.6

File hashes

Hashes for minislite-0.99-py3-none-any.whl
Algorithm Hash digest
SHA256 653b249f3d09232b9346626cb754cfc4d6d82eeb8e54930d8ace36e1838f2f6f
MD5 db1f52675d6b66fc13e1369cad4de90a
BLAKE2b-256 aed6f394fffa4a95158c3cda84787fb5f2f4030fea3f699d03823723520762e2

See more details on using hashes here.

Supported by

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