Metadata-Version: 2.4
Name: bcsfe-wrapper-python
Version: 0.2.0
Summary: A comprehensive Python wrapper for the Battle Cats Save File Editor (BCSFE) core library.
Author-email: Manus AI <info@example.com>
Project-URL: Homepage, https://github.com/your_username/bcsfe-wrapper-python
Project-URL: Bug Tracker, https://github.com/your_username/bcsfe-wrapper-python/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: bcsfe

# bcsfe-wrapper-python

A comprehensive Python wrapper for the Battle Cats Save File Editor (BCSFE) core library.

## Installation

```bash
pip install bcsfe-wrapper-python
```

## Usage

```python
from bcsfe_wrapper_python.wrapper import BCSFEWrapper

# Load save data from file
save = BCSFEWrapper.from_file("SAVE_DATA", cc="jp")

# Edit items
save.set_catfood(99999)
save.max_xp()

# Unlock all cats
save.unlock_all_cats()

# Upload to server
transfer_code, confirmation_code = save.upload_to_server()
print(f"New Transfer Code: {transfer_code}, Confirmation Code: {confirmation_code}")
```
