Skip to main content

Centralize database access

Project description

Schemapy allows you to generate objects for centralized database access. You define the schema for your API, the code that needs to be executed, then the validation part is dealt with for you. Everything is then encapsulated in a single object.

Schemapy relies on PyDAL for schema definition but is not tied to it.

See documentation for more informations.

License Development Status Latest release Supported Python versions Supported Python implementations Download format Build status Code test coverage Code Health

Installation

pip install schemapy

Usage

Using PyDAL:

from schemapy import API, DAL, Field
from datetime import datetime, timedelta

db = DAL('sqlite:memory')
db.define_table(
    'users',
    Field('name', type='string', required=True),
    Field('created_on', type='date')
)

db.define_table(
    'posts',
    Field('subject', type='string', required=True),
    Field('author', type='reference users', required=True),
    Field('created_on', type='date'),
    Field('content', type='text', required=True)
)

api = API(db)

@api.as_action(
    type='read',
    request=[
        Field('begin', type='date', required=True),
        Field('end', type='date', required=True)
    ],
    response=db.posts
)
def select_posts_by_date(db, req, action):
    query = (db.posts.created_on >= req.begin) | (db.posts.created_on <= req.end)
    return db(query).select()

now = datetime.now()
result = api.select_posts_by_date(
    begin=now - timedelta(days=1),
    end=now
)
print(list(result))

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

schemapy-0.2.4.tar.gz (6.6 kB view details)

Uploaded Source

Built Distribution

schemapy-0.2.4-py2.py3-none-any.whl (10.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file schemapy-0.2.4.tar.gz.

File metadata

  • Download URL: schemapy-0.2.4.tar.gz
  • Upload date:
  • Size: 6.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for schemapy-0.2.4.tar.gz
Algorithm Hash digest
SHA256 d21e9cd627e42b0f2bee883ce48fcda7a1550328191fe4c2cef7ea33681966a0
MD5 8c03da16d287524d5ac3623e56a1030d
BLAKE2b-256 9ab5b679384ce43931f31971710ce648e59fd54342027d31b097ad65cf7baa39

See more details on using hashes here.

File details

Details for the file schemapy-0.2.4-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for schemapy-0.2.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b4a79ad1ad30c392afdcf3d7db9ccaea201ce7bd95627ed03c097e8a01c859a2
MD5 b30cc30f62e5fc7b918fa4ca7e374b34
BLAKE2b-256 66637835412cdc05268f10aecc4fa0144a4fd0e6f6304f6e3431c8b2ee88ee09

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