It lets you use the common Python's data structures to build SQLs, and provides a convenient model of result set.
Project description
The full version of this documentation is at mosql.mosky.tw.
MoSQL — More than SQL
It lets you use the common Python’s data structures to build SQLs, and provides a convenient model of result set.
The main features:
Easy-to-learn — No magic syntax. Everything is just plain data structure or SQL keyword.
Convenient — It makes result set more easy to use.
Secure — It prevents the SQL injection from both identifier and value.
Faster — It just builds the SQLs from Python’s data structure and then send it via the connector.
It is just “More than SQL”.
NOTE: The versions after v0.2 is a new branch and it does not provide backward-compatibility for v0.1.x.
The SQL Builders
>>> from mosql import build >>> build.select('author', {'email like': '%mosky%@%'}) SELECT * FROM "author" WHERE "email" LIKE '%mosky%@%'
It is very easy to build a query by Python’s data structures and mosql.build.
There is more explanation of the builders — mosql.build.
It also provides mosql.result.Model for result set, and you can use the same way to make queries to database.
The Model of Result Set
Here is a SQL and the result set:
mosky=> select * from detail where person_id in ('mosky', 'andy') order by person_id, key; detail_id | person_id | key | val -----------+-----------+---------+-------------------------- 5 | andy | email | andy@gmail.com 3 | mosky | address | It is my first address. 4 | mosky | address | It is my second address. 1 | mosky | email | mosky.tw@gmail.com 2 | mosky | email | mosky.liu@pinkoi.com 10 | mosky | email | mosky@ubuntu-tw.org (6 rows)
Then, use mosql.result.Model to do so: (The detail.py is in the examples.)
>>> from detail import Detail >>> for detail in Detail.arrange({'person_id': ('mosky', 'andy')}): ... print detail ... {'detail_id': [5], 'key': 'email', 'person_id': 'andy', 'val': ['andy@gmail.com']} {'detail_id': [3, 4], 'key': 'address', 'person_id': 'mosky', 'val': ['It is my first address.', 'It is my second address.']} {'detail_id': [1, 2, 10], 'key': 'email', 'person_id': 'mosky', 'val': ['mosky.tw@gmail.com', 'mosky.liu@pinkoi.com', 'mosky@ubuntu-tw.org']}
There are almost same, right?
Here I use arrange for taking advantages from the model configured, so the result sets are grouped into three model instances, but the plain methods, such as select, are also available.
There is more explanation of the model — mosql.result.
Installation
It is easy to install MoSQL with pip:
$ sudo pip install mosql
Or clone the source code from Github:
$ git clone git://github.com/moskytw/mosql.git
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
File details
Details for the file mosql-0.4.tar.gz
.
File metadata
- Download URL: mosql-0.4.tar.gz
- Upload date:
- Size: 30.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0c5253dd49022874dbd0f0d3a132a0fcd3e6c9c04579e1f0e5b0119813b73a0 |
|
MD5 | 548db7c1901bb5db2aa7983290de308c |
|
BLAKE2b-256 | ebf3282f24121894afe4c2829ccb949dcb42e809d13808fefe6335c6011fa851 |