Metadata-Version: 2.1
Name: lowDB
Version: 0.0.1
Summary: A simple package to convert a local JSON file into a NoSQL db and use for small projects
Home-page: UNKNOWN
Author: Iresharma
License: UNKNOWN
Platform: UNKNOWN
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

# LowDB-py

Heavy inspired from lowDb a node package

[typicode/lowdb](https://github.com/typicode/lowdb#api)

## Why ??

Not every project requires a full on database with proper dbm and you requiring to write a db module, sometiems all you want is a basic storage for your Proof of concept or for the project where you are something very new and don't want to focus on database functions.

## Solution

A simple JSON file with a wrapper sdk to handle basic operations locally to a file, which can later be exported to Firestore or mongodb directly.



### To build and install the project
```bash
# Install package building tools
python3 -m pip install setuptools wheel

# Build the project
python3 -m setup.py sdist bdist_wheel

# Install the project to your local machine
python3 -m pip install -e .
```

