Metadata-Version: 2.1
Name: disnakedb
Version: 0.1.3
Summary: Easy and fast db for python users
Author: Hawchik
Requires-Python: >=3.0,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown

# disnakedb

## Installation

```
pip3 install disnakedb
```

## Usage
```python
import disnakedb

db = disnakedb.Init()

print(db.get("foo"))  # None

db.set("foo", "bar")
print(db.get("foo"))  # bar

db.set("any", {"id": 1234, "top": 1, "str": "any string"})
print(db.get("any"))  # {"id": 1234, "top": 1, "str": "any string"}
print(db.get("any")["id"])  # 1234

db.remove("foo")
db.remove("any")
print(db.get("foo"))  # None

```
