Open zbyte64 opened 9 years ago
This seems like a nice addition. There's currently a pending pull request for Pony ORM, and it seems that the only rejected datastore addition was for a proprietary and fully managed datastore. RethinkDB is open source with official Python support, so I don't see many arguments against it.
It looks likes I will need to modify .travis.yml to install rethinkdb:
+1 for rethinkdb :+1:
:+1:
+1 for rethinkdb
:+1: too
I've started work on a little thing that allows Flask-Security to be used with RethinkDB with Schematics supplying the model definitions, figured I'd post it here for those interested in using RethinkDB with Flask-Security. It's working, but still considered pre-alpha so if anyone wants to contribute they'd be more than welcome.
https://github.com/hactar-is/frink/
http://frink.readthedocs.org/en/latest/ (I've not managed to get RtD to generate the autoclass stuff yet but if you generate the docs locally it'll work)
Update, it's now on PyPI if you fancy trying it out: https://pypi.python.org/pypi/frink
For travis support, just add:
addons:
rethinkdb: "2.3"
If a pull request was sent to add RethinkDB support, would it be accepted (assuming it is up to par)?
I found a gist that implements support though it would need to be adapted to conform to how it is done in
datastores.py
: https://gist.github.com/BrianHicks/9054310