Metadata-Version: 2.1
Name: MyReplitDB
Version: 1.2
Summary: The most simplistic and easiest wrapper to use for replit's database system.
Home-page: https://github.com/kaylebetter/myreplitdb
Author: kaylebetter
License: MIT
Project-URL: Github, https://github.com/PyTweet/PyTweet/
Keywords: myreplitdb
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: replit
Requires-Dist: db

## MyReplitDB

- MyReplitDB is the most simplistic and easiest wrapper to use for replit's database system.

## Example

```py
>>> import mydb

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

hello!
```

