Skip to main content

a little orm

Project description


Crystaldb
======

crystaldb is a simple and small ORM. .

* a small, expressive ORM, and no need to provide a model.
* python 3.4+
* supports mysql(developed with others)


Examples
--------

Connect to the database:

.. code-block:: python

import crystaldb

db_host = '127.0.0.1'
db_port = 3306
db_user = 'root'
db_pass = '123'
db_database = 'testdb'

db_handle = crystaldb.database(
dbn='mysql',
host=db_host,
port=db_port,
user=db_user,
passwd=db_pass,
db=db_database,
debug=True)

Query method:

.. code-block:: python

tablename: 'user' fields: 'id', 'name', 'age', 'birthday'
db_handle.select("user").get(id=1)
db_handle.select("user").lt(id=5).gt(id=2).all() or db_handle.select("user").lt(id=5).gt(id=2).all().list()
db_handle.select("user").between(id=[2, 5]).all()
db_handle.select("user").in_(id=[2, 3, 4]).all()

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

crystaldb-1.0.0.tar.gz (16.9 kB view hashes)

Uploaded Source

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