Metadata-Version: 2.1
Name: Effortless
Version: 0.0.3
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
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Natural Language :: English
Classifier: Topic :: Database
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Database :: Database Engines/Servers
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Requires-Python: >=3.9
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
```
