Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pfalcon/uorm
Sqlite3-based anti-ORM for Pycopy
https://github.com/pfalcon/uorm
micropython pycopy unbloated
Last synced: 4 months ago
JSON representation
Sqlite3-based anti-ORM for Pycopy
- Host: GitHub
- URL: https://github.com/pfalcon/uorm
- Owner: pfalcon
- Created: 2014-06-17T19:32:03.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-08-05T19:35:29.000Z (over 1 year ago)
- Last Synced: 2024-10-01T05:14:53.203Z (4 months ago)
- Topics: micropython, pycopy, unbloated
- Language: Python
- Homepage: https://github.com/pfalcon/pycopy
- Size: 7.81 KB
- Stars: 16
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
- awesome-micropython-lib - uorm - Sqlite3-based anti-ORM for MicroPython (Database)
README
uorm is very lightweight "Anti-ORM" style ORM (Object-Relational Mapper)
for Pycopy (https://github.com/pfalcon/pycopy), a small Python
implementation.uorm doesn't try to define obscure API to conceal SQL from a programmer,
it's sole purpose is to provide very thin "model" abstraction just to
keep code organized, and automate the most repeative, trivial SQL
queries. More complex queries, you will write in full SQL as usual, so
you will know what exactly is executed, will be able to easily optimize
it, etc.See examples/ directory for usage examples.