Metadata-Version: 2.4
Name: dragohan-grimoire
Version: 1.0.1
Summary: AI Automation Grimoire - JSON mastery & file handling made dead simple
Home-page: https://github.com/farhanistopG1/my_grimoire
Author: DragoHan
Author-email: aafr0408@gmail.com
Project-URL: Bug Tracker, https://github.com/farhanistopG1/my_grimoire/issues
Project-URL: Source Code, https://github.com/farhanistopG1/my_grimoire
Keywords: json,files,automation,api,data-processing
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: jmespath>=1.0.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# DragoHan's Grimoire 🔥

My personal AI automation library - built by an automation god, for automation gods.

## Installation
```bash
pip install git+https://github.com/farhanistopG1/my_grimoire.git --break-system-packages
```

## Libraries

### JSON Mage
Master any JSON structure without bullshit.
```python
from json_mage import modify

# Convert any JSON to powerful object
response = api.get_data()
data = modify(response)

# Use it
print(data.first)
print(data.last)
print(data.get('email'))
print(data.all('name'))
```

### Simple File
File handling made stupid simple.
```python
import simple_file

# Save anything
simple_file.save('config', {'key': 'value'})

# Load anything
config = simple_file.load('config')

# Delete, rewrite, append
simple_file.delete('old_file')
simple_file.rewrite('note', 'New content')
simple_file.add('log', 'Error message')

# Check, list, backup
simple_file.exists('config')
simple_file.list_files()
simple_file.backup('important.json')
```

## Author

DragoHan - AI Automation God
