MyReplitDB

An easy to use wrapper for replit's database.


Keywords
myreplitdb
License
MIT
Install
pip install MyReplitDB==1.3

Documentation

MyReplitDB

  • An easy to use wrapper for replit's database system.

Example

>>> import myreplitdb

>>> db = myreplitdb.Database()
>>> db.insert('test', 'hello!')
>>> db.get('test')

hello!

Links