A light weight python ORM without models.
Project description
Lorm is a light weight ORM library for Python, model-less, Django style lookup expressions. It’s suitable for small standalone database script.
Installation
The last stable release is available on PyPI and can be installed with pip:
$ pip install lorm
Example
CREATE TABLE `pets` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(20) NOT NULL DEFAULT '',
`add_time` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
Connect to Mysql
>>> c = lorm.mysql_connect('localhost', 3306, 'root', 'root', 'test')
Insert
>>> c.pets.create(name='cat')
1
Query
>>> c.pets.get(id=1)
{u'id': 2, u'name': u'cat'}
>>> c.last_query
select * from pets where id=1 limit 1
Raw SQL
>>> c.fetchall("select * from pets")
((1, u'cat'), (2, u'dog'), (3, u'bird'))
For more examples, see test.py
Features
No Model, use table name directly.
Auto reconnect
Connection pool
Django style lookup expressions
Threading safe
Requirements
pymysql
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
lorm-0.2.15.zip
(9.6 kB
view details)
File details
Details for the file lorm-0.2.15.zip
.
File metadata
- Download URL: lorm-0.2.15.zip
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26d5666c3fe638572dedffcaf389d409fab6f235201e75f990df1d1fc3f6bd20 |
|
MD5 | f2812001497f379194b732be68ed22e2 |
|
BLAKE2b-256 | b521c32aa8f1a42117ac3b8c4ce1a74422e340b1993454cb3e4c27f572c77582 |