Metadata-Version: 2.4
Name: cherry_shared2
Version: 0.1.36
Summary: Cherry Bot shared utilities
Author: headria
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: web3
Requires-Dist: pyrogram
Requires-Dist: aiohttp
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Cherry Shared

Cherry Bot shared utilities package.

## Installation

This is a private package. Install it directly from the Git repository:

### Using HTTPS (requires authentication)

```bash
pip install git+https://github.com/YOUR_USERNAME/cherry_shared.git@main#egg=cherry_shared
```

For private repositories, you'll need to authenticate. You can use a personal access token:

```bash
pip install git+https://YOUR_TOKEN@github.com/YOUR_USERNAME/cherry_shared.git@main#egg=cherry_shared
```

### Using SSH (recommended for private repos)

```bash
pip install git+ssh://git@github.com/YOUR_USERNAME/cherry_shared.git@main#egg=cherry_shared
```

### Installing a specific version/tag

```bash
pip install git+ssh://git@github.com/YOUR_USERNAME/cherry_shared.git@v0.1.1#egg=cherry_shared
```

### Installing from a requirements.txt

Add this line to your `requirements.txt`:

```
git+ssh://git@github.com/YOUR_USERNAME/cherry_shared.git@main#egg=cherry_shared
```

Then install with:

```bash
pip install -r requirements.txt
```

## Development Installation

For development, install in editable mode:

```bash
pip install -e git+ssh://git@github.com/YOUR_USERNAME/cherry_shared.git@main#egg=cherry_shared
```

Or clone the repository and install locally:

```bash
git clone git@github.com:YOUR_USERNAME/cherry_shared.git
cd cherry_shared
pip install -e .
```

## Usage

```python
from cherry_shared import Blockchains, BotStrings, Constants, Emojis, LaunchPads
```

