Skip to main content

Provides an ORM for MySQL, PostgreSQL and SQLite.

Project description

Tests

Nopea

(Version 0.0.16)


Purpose

Provides an ORM for MySQL, PostgreSQL and SQLite.

Usage

To use the power of Nopea you need to set up an adaptor and let your classed inherit from nopea.DbObject.

Setting up Adaptor and Connection

from nopea.dbobject import DbObject
from nopea.adaptors.sqlite import SQLiteAdaptor

DbObject = DbObject
DbObject.adaptor = SQLiteAdaptor('nopea.db')

Creating a subclass

class User(DbObject):
    name = nopea.CharField(max_length=25)
    password = nopea.CharField(max_length=50)
    describtion = nopea.TextField()
    registered = nopea.DateField()
    logins = nopea.IntegerField()
    active = nopea.BooleanField(default=True)

Users automatically get an additional id field which is an instance of nopea.fields.PkField.

Instance methods:

instance.save()
# Simply saves the object. If it is new, it will be created, if it already exists, it will be updated. Depending on whether the instance has an id != None or not.

instance.delete()
# The instance will be delete from the removed from the database. The instance will not be deleted and keep it's original id.

Class methods

User.create_table()
# Function to create tables.
# The class which calls this function will get a table in the database.

Manager operations:

The class provides an interface to create objects: The objects manager.

User.objects.all()
# Returns all objects, unordered

User.objects.get(key=value)
# E.g.: User.objects.get(id=2) Returns one object

User.objects.filter(key=value)
# E.g.: User.objects.filter(active=True) Returns a list of
# objects (like `get` but returns more than one).

# key__lt, key__lte, key__gte and key__gt can be used to limit
# the results. lte means 'lower than equal',
# lt means 'lower than', gte means 'greater than equal' and
# gt means 'greater than'

# E.g. "logins__lt=10". This will return all users with less
# than 10 logins.

# The filters can be combined:

User.objects.filter(logins__gte=10, logins__lte=50)

User.objects.exclude(key=value)
# Returns all results where the the value of the row does not match.

User.objects.create()
# Used to create objects of the calling class.
# Takes fieldnames as kwargs. E.g.

User.objects.create(name='Christian')
# returns the just created object.

User.objects.order_by('name')
# Returns a list of matching object. Can be used with a leading - to
# reverse the order.

User.objects.count()
# Returns the number of mathing rows.

DbObject class methods

DbObject.raw(query, args)
# The builtin SQL injection function.
# It simply executes queries and can be used with arguments.
# It always returns what it fetches. Use it wisely.

DbObject.raw(
    "INSERT INTO user (name, description)
     VALUES (?, ?)", 'Christian', 'Nopea developer.'
    )

License

Nopea is available under the terms of the GPLv3.

Disclaimer

This software comes without any warranty. You use it on your own risk. It may contain bugs, viruses or harm your software and hardware in another way. The developer is not responsible for any consequences which may occur caused by using the software.

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

nopea-0.0.26.tar.gz (15.0 kB view details)

Uploaded Source

Built Distribution

nopea-0.0.26-py3-none-any.whl (19.2 kB view details)

Uploaded Python 3

File details

Details for the file nopea-0.0.26.tar.gz.

File metadata

  • Download URL: nopea-0.0.26.tar.gz
  • Upload date:
  • Size: 15.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.20

File hashes

Hashes for nopea-0.0.26.tar.gz
Algorithm Hash digest
SHA256 87bb8a87de7a5de2c682d6d1286d1753eb8dc0afad0b6fe67fef662b4185b050
MD5 f96bf10f8f6f3347ebfe04d052618507
BLAKE2b-256 c0b42d43a1d3af837c2e23eea752c1e610a38a5dccfed43ff3c08a87b34f0f8e

See more details on using hashes here.

File details

Details for the file nopea-0.0.26-py3-none-any.whl.

File metadata

  • Download URL: nopea-0.0.26-py3-none-any.whl
  • Upload date:
  • Size: 19.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.20

File hashes

Hashes for nopea-0.0.26-py3-none-any.whl
Algorithm Hash digest
SHA256 ce1e3f6014154c59d038d484e8c3cf17374ea41834cc50562c296ec135bc9af8
MD5 ef3e3066e4f66fa56710704755233602
BLAKE2b-256 462e0ef68ab5641e2387e42eb08b8eda642eb3d7daee8acebf65d25dff326bb8

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