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.
- Host: GitHub
- URL: https://github.com/sifte/myreplitdb
- Owner: sifte
- Created: 2021-12-05T04:43:10.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-29T16:29:20.000Z (about 4 years ago)
- Last Synced: 2025-08-26T10:44:40.385Z (10 months ago)
- Topics: database, db, replit
- Language: Python
- Homepage:
- Size: 17.6 KB
- Stars: 5
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## MyReplitDB  
A simple wrapper for replit's db.
## Example
```py
from myreplitdb import Database
db = Database()
db.insert('test', 'hello')
db.get('test') # hello
```