cherry-shared2 0.1.26__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cherry_shared/InfoService.py +369 -0
- cherry_shared/__init__.py +5 -0
- cherry_shared/blockchains.py +265 -0
- cherry_shared/bot_strings.py +529 -0
- cherry_shared/constants.py +36 -0
- cherry_shared/emojis.py +63 -0
- cherry_shared/functions.py +511 -0
- cherry_shared/launchpads.py +193 -0
- cherry_shared/types/__init__.py +6 -0
- cherry_shared/types/blockchain.py +51 -0
- cherry_shared/types/dexscreener.py +376 -0
- cherry_shared/types/launchpad.py +72 -0
- cherry_shared/types/leaderboardEntry.py +62 -0
- cherry_shared/types/raid_info.py +92 -0
- cherry_shared/types/user_wallet.py +9 -0
- cherry_shared2-0.1.26.dist-info/METADATA +91 -0
- cherry_shared2-0.1.26.dist-info/RECORD +19 -0
- cherry_shared2-0.1.26.dist-info/WHEEL +5 -0
- cherry_shared2-0.1.26.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cherry_shared2
|
|
3
|
+
Version: 0.1.26
|
|
4
|
+
Summary: Cherry Bot shared utilities
|
|
5
|
+
Author: headria
|
|
6
|
+
Classifier: Development Status :: 4 - Beta
|
|
7
|
+
Classifier: Intended Audience :: Developers
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
11
|
+
Requires-Python: >=3.11
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: web3
|
|
14
|
+
Requires-Dist: pyrogram
|
|
15
|
+
Requires-Dist: aiohttp
|
|
16
|
+
Dynamic: author
|
|
17
|
+
Dynamic: classifier
|
|
18
|
+
Dynamic: description
|
|
19
|
+
Dynamic: description-content-type
|
|
20
|
+
Dynamic: requires-dist
|
|
21
|
+
Dynamic: requires-python
|
|
22
|
+
Dynamic: summary
|
|
23
|
+
|
|
24
|
+
# Cherry Shared
|
|
25
|
+
|
|
26
|
+
Cherry Bot shared utilities package.
|
|
27
|
+
|
|
28
|
+
## Installation
|
|
29
|
+
|
|
30
|
+
This is a private package. Install it directly from the Git repository:
|
|
31
|
+
|
|
32
|
+
### Using HTTPS (requires authentication)
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
pip install git+https://github.com/YOUR_USERNAME/cherry_shared.git@main#egg=cherry_shared
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
For private repositories, you'll need to authenticate. You can use a personal access token:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
pip install git+https://YOUR_TOKEN@github.com/YOUR_USERNAME/cherry_shared.git@main#egg=cherry_shared
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
### Using SSH (recommended for private repos)
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
pip install git+ssh://git@github.com/YOUR_USERNAME/cherry_shared.git@main#egg=cherry_shared
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### Installing a specific version/tag
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
pip install git+ssh://git@github.com/YOUR_USERNAME/cherry_shared.git@v0.1.1#egg=cherry_shared
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
### Installing from a requirements.txt
|
|
57
|
+
|
|
58
|
+
Add this line to your `requirements.txt`:
|
|
59
|
+
|
|
60
|
+
```
|
|
61
|
+
git+ssh://git@github.com/YOUR_USERNAME/cherry_shared.git@main#egg=cherry_shared
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
Then install with:
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
pip install -r requirements.txt
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## Development Installation
|
|
71
|
+
|
|
72
|
+
For development, install in editable mode:
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
pip install -e git+ssh://git@github.com/YOUR_USERNAME/cherry_shared.git@main#egg=cherry_shared
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
Or clone the repository and install locally:
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
git clone git@github.com:YOUR_USERNAME/cherry_shared.git
|
|
82
|
+
cd cherry_shared
|
|
83
|
+
pip install -e .
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## Usage
|
|
87
|
+
|
|
88
|
+
```python
|
|
89
|
+
from cherry_shared import Blockchains, BotStrings, Constants, Emojis, LaunchPads
|
|
90
|
+
```
|
|
91
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
cherry_shared/InfoService.py,sha256=CikZgVsDgxmonaQrJZuS8vJATL9t7OBIwRYoab3n-5g,13438
|
|
2
|
+
cherry_shared/__init__.py,sha256=4DXpYSpmUPva4PvPewonY2gJFqtSUIMdsnf4QcDcrlc,230
|
|
3
|
+
cherry_shared/blockchains.py,sha256=2q_U9Uos9h1K3ybRBWIOtzPIdsfERg7CSCLRTvcDIb4,7269
|
|
4
|
+
cherry_shared/bot_strings.py,sha256=i-YEMwVLL7M_zaPqPfURviuGMKVS7CcXZkCXZcRaHac,23409
|
|
5
|
+
cherry_shared/constants.py,sha256=xcb0daGqq3hqJfbIJMQcQBM-4GPKR4JBGSjtjhwqDeI,1411
|
|
6
|
+
cherry_shared/emojis.py,sha256=ObKHhNYIHYh3eCSiqSExppa2lQ8TBc1ij0c91vEq5A0,2720
|
|
7
|
+
cherry_shared/functions.py,sha256=wl_0ni91MoSZDOdk4hG2mzkQmyG7fRKsgJjVRUdQDZA,16355
|
|
8
|
+
cherry_shared/launchpads.py,sha256=DfFZVmQinCsTMH-1ibJf7mv2xhtlKmqnRckBE8BN9xM,4714
|
|
9
|
+
cherry_shared/types/__init__.py,sha256=rTvEkBDHKQHkXQ8Uy1TLbtLkrScqalyuSKpxUTPDdCg,260
|
|
10
|
+
cherry_shared/types/blockchain.py,sha256=41rNbcIJqaxqsxXKB2eSEizReB-BxHLHpvdXWX26E2Y,1409
|
|
11
|
+
cherry_shared/types/dexscreener.py,sha256=S7TonogTie4J9AMsh1WWexto-M8Z5MDivB7ry-cwK0U,12593
|
|
12
|
+
cherry_shared/types/launchpad.py,sha256=I-oHS96ggyXkSgcpIsVt2U8wbh_myEWssAq3Hnt9qOg,2283
|
|
13
|
+
cherry_shared/types/leaderboardEntry.py,sha256=BvHACWHQzM5wd3qbc592MOYgNepVBH_ZrGsI8a9qn9A,1979
|
|
14
|
+
cherry_shared/types/raid_info.py,sha256=qvS3CRCb9sst91iQNvWq0y3m1LMLNNOsXK1xzyiayFg,2916
|
|
15
|
+
cherry_shared/types/user_wallet.py,sha256=Wq-_eBYLqelsjli890ZyBQCZir_85pC3aBPx1r6v_dA,333
|
|
16
|
+
cherry_shared2-0.1.26.dist-info/METADATA,sha256=qA3iW3VHIehE287h_hW0u1s0uIZyEIAhLws16lj3Kxk,2107
|
|
17
|
+
cherry_shared2-0.1.26.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
18
|
+
cherry_shared2-0.1.26.dist-info/top_level.txt,sha256=26KLLqVpxIRwDrmJLVqK-fRjZ3ONZSMIK5xvRSMvQPA,14
|
|
19
|
+
cherry_shared2-0.1.26.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
cherry_shared
|