Metadata-Version: 2.1
Name: Effortless
Version: 0.0.2
Summary: Databases should be Effortless.
Home-page: https://github.com/bboonstra/Effortless
Author: Ben Boonstra
License: MIT
Project-URL: Bug Tracker, https://github.com/bboonstra/Effortless/issues
Project-URL: Documentation, https://github.com/bboonstra/Effortless
Project-URL: Source Code, https://github.com/bboonstra/Effortless
Keywords: database,effortless,simple storage,beginner,easy,db
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Databases should be _Effortless_.

[![Publish Package](https://github.com/bboonstra/Effortless/actions/workflows/publish.yml/badge.svg?branch=main)](https://github.com/bboonstra/Effortless/actions/workflows/publish.yml)
[![Run Tests](https://github.com/bboonstra/Effortless/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/bboonstra/Effortless/actions/workflows/test.yml)

Effortless has one objective: be the easiest database.
It's perfect for beginners, but effortless for anyone.

## Quickstart

```bash
pip install effortless
```

## Usage

```python3
import effortless as db
db.set("test")
print(db.get())
test
```
