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

https://github.com/sifte/myreplitdb

A simple wrapper for replit's db.
https://github.com/sifte/myreplitdb

database db replit

Last synced: 6 months ago
JSON representation

A simple wrapper for replit's db.

Awesome Lists containing this project

README

          

## MyReplitDB ![Generic badge](https://img.shields.io/badge/Python-3.8-blue.svg) ![Downloads](https://img.shields.io/pypi/dm/MyReplitDB)

A simple wrapper for replit's db.

## Example

```py
from myreplitdb import Database

db = Database()
db.insert('test', 'hello')
db.get('test') # hello
```