Metadata-Version: 2.4
Name: databank_x
Version: 0.0.1
Summary: A minimalistic, extensible database and encryption toolkit for Python
Project-URL: Homepage, https://github.com/Micro444/databank-x
Project-URL: Issues, https://github.com/Micro444/databank-x/issues
Author-email: Micro444 <example@example.com>
License: MIT License
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.0
Requires-Dist: cryptography
Requires-Dist: numpy<1.27
Requires-Dist: openpyxl
Requires-Dist: pandas
Description-Content-Type: text/markdown

# Databank_X

A minimalistic, extensible database and encryption toolkit for Python

## Installation

```bash
pip install databank-x
```

## Quick Start

```python
from databank_x import basic, saves, security

# Initialize with sample data
basic.basic_List()

# Show current data
print(basic.show_List())

# Add new directory
basic.add_directory("my_data")

# Add data to directory
basic.add_data("Hello World", "my_data")

# Save to JSON
saves.save_json("my_database.json")
```

## Features

- Simple dictionary-based data management
- JSON file operations
- File encryption with Fernet
- Easy to use API

## Author

Micro (Micro444)
