Metadata-Version: 2.4
Name: storagepy
Version: 0.1.0
Summary: A simple text-based storage system where you can create tables, store data, and more! Encryption is included for data files.
Author: Yuvaan Pandita
Author-email: Nehan Nishad <creativenehan@gmail.com>
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: cryptography
Dynamic: license-file

# storagepy

storagepy is a lightweight text-based key-value storage system with strong AES encryption.  
All functionality is contained in a single file: `core.py`.

## Features

- Simple key-value text storage
- Automatic AES encryption key generation
- Strong encryption/decryption using Fernet (AES-128)
- Table formatting
- Key lookup
- Easy file creation

## Installation
pip install storagepy

## Usage
Create a file
from storagepy import create

# Create a new storage file
create("data.txt")
### Create a file
```python
from storagepy.core import createfile
createfile("data.txt")
### Upload data
from storagepy.core import upload
upload("data.txt", {"Name": "John", "Age": 15})
### Encrypt file
from storagepy.core import encrypt
encrypt("data.txt")
### Decrypt file
from storagepy.core import decrypt
decrypt("data.txt")
### Tablify (format)
from storagepy.core import tablify
print(tablify("data.txt"))
### Find data
from storagepy.core import find
print(find("Name", {"Name": "John", "Age": 15}))
###License
MIT

