rethinkdbcm

RethinkDB context manager


License
MIT
Install
pip install rethinkdbcm==0.1.1

Documentation

RethinkDB контекстный менеджер

Контекстный менеджер реклизует некоторые основные методы API RethinkDB
RethinkDB-context-manager
Python ReQL command reference

Использование

pip install rethinkdbcm

from rethinkdbcm import WorkRethinkDB
db = WorkRethinkDB()
db.db_list()

python
Python 3.8.5 (default, Jan 27 2021, 15:41:15) 
[GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from rethinkdbcm import WorkRethinkDB
>>> db = WorkRethinkDB()
>>> db.db_list()
['geo-temp', 'rethinkdb', 'test']
>>>