Metadata-Version: 2.1
Name: LbelDB
Version: 1.0.0
Summary: A text based no corruption database for python. Easy to use. Made for beginners
Home-page: https://github.com/UnTenseUnJury/LbelDB.py
Author: UnTenseUnJury
Author-email: untenseunjury@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

[![License: Unlicense](https://img.shields.io/badge/license-Unlicense-lightgreen.svg)](http://unlicense.org/) ![version](https://img.shields.io/badge/Version-0.2.0-brightgreen)

# LbelDB.py

>**A text based no corruption database for python. Easy to use. Made for beginners**

## Installation

Use the package manager pip to install LbelDB.py

```bash
pip install LbelDB
```

## Usage

```python
import ldb

ldb.init() # general initialization

ldb.create(("name","score")) # creates the dbs first labels or columns

for i in enumerate(scores):
    ldb.update_ri(i[0] , 1 , i[1]) # updates the scores in each row

ldb.store() # stores to the db to the `.lbel` file

ldb.retrieve() # retrieves the db from memory 

ldb.view() # prints the db to the console
```

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License
[Unlicense](https://choosealicense.com/licenses/unlicense/)



