Metadata-Version: 2.1
Name: blockmango
Version: 1.4.5
Summary: Blockman Go API package
Home-page: https://github.com/darkkpy/blockmango
Author: Dark
Author-email: darkness0777@proton.me
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
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: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.md

---
# Blockmango API Wrapper

This Python package provides a convenient way to interact with the Blockmango API.

## Installation

You can install the package via pip:

```bash
pip install blockmango
```

## Usage

Import the package and create a `Clan` object using your user ID and access token:

```python
import blockmango
from blockmango import clan

clan = blockmango.Clan(user_id="your_id", access_token="your_token")
```

### Example Usage

```python
# Search for a clan by name
clans = clan.searchclan("Nasa")
print(clans)
```

Replace `your_id` and `your_token` with your actual Blockmango user ID and access token.

For more information on available methods and parameters, contact me on discord, darkk.py
## License

This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.

---


