Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/pfalcon/pycopy-filedb

Simple file-based ORM for Pycopy
https://github.com/pfalcon/pycopy-filedb

micropython pycopy

Last synced: 3 months ago
JSON representation

Simple file-based ORM for Pycopy

Lists

README

        

pycopy-filedb
=============

`filedb` is a simple ORM-like module for storing database data in file
system using files and directories, primarily intended for Pycopy
(https://github.com/pfalcon/pycopy), a lightweight Python implementation.

`filedb` was a proof-of-concept style implementation of database-like
functionality, made before the builtin
[btree](https://pycopy.readthedocs.io/en/latest/library/btree.html) database
module was added to Pycopy. For the most purposes, `filedb` would
be superceded by `btree` now, but is still provided for special cases
when it may be useful.

For more information, refer to the source, and for usage example in
https://github.com/pfalcon/notes-pico/tree/master/notes_pico (this
web application support different backends, included `filedb`; note
that the default one is `btree`).