cxppython 0.1.81__tar.gz → 0.2.2__tar.gz
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.
- {cxppython-0.1.81 → cxppython-0.2.2}/PKG-INFO +12 -12
- cxppython-0.2.2/cxppython/utils/database/mysql.py +734 -0
- cxppython-0.2.2/cxppython/utils/database/mysql_singleton.py +534 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython.egg-info/PKG-INFO +12 -12
- cxppython-0.2.2/cxppython.egg-info/requires.txt +13 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/setup.py +16 -15
- cxppython-0.1.81/cxppython/utils/database/mysql.py +0 -454
- cxppython-0.1.81/cxppython/utils/database/mysql_singleton.py +0 -368
- cxppython-0.1.81/cxppython.egg-info/requires.txt +0 -13
- {cxppython-0.1.81 → cxppython-0.2.2}/LICENSE +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/README.md +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython/__init__.py +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython/bittensor/__init__.py +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython/bittensor/synapse.py +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython/core/__init__.py +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython/core/config.py +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython/main.py +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython/utils/__init__.py +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython/utils/cxplogging/__init__.py +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython/utils/cxplogging/console.py +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython/utils/cxplogging/defines.py +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython/utils/cxplogging/format.py +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython/utils/cxplogging/helpers.py +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython/utils/cxplogging/loggingmachine.py +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython/utils/cxplogging/logginsimple.py +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython/utils/database/__init__.py +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython/utils/database/mongo_singleton.py +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython/utils/database/redis.py +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython/utils/easy_imports.py +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython.egg-info/SOURCES.txt +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython.egg-info/dependency_links.txt +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/cxppython.egg-info/top_level.txt +0 -0
- {cxppython-0.1.81 → cxppython-0.2.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: cxppython
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: A python utils package
|
|
5
5
|
Home-page: https://github.com/yourusername/my_package
|
|
6
6
|
Author: cxp
|
|
@@ -12,19 +12,19 @@ Classifier: Operating System :: OS Independent
|
|
|
12
12
|
Requires-Python: >=3.10
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
|
-
Requires-Dist: pymysql<2.0.0,>=1.1.
|
|
15
|
+
Requires-Dist: pymysql<2.0.0,>=1.1.1
|
|
16
16
|
Requires-Dist: python-dotenv<2.0.0,>=1.0.0
|
|
17
|
-
Requires-Dist: requests<3.0
|
|
18
|
-
Requires-Dist: colorama
|
|
19
|
-
Requires-Dist: python-statemachine<3.0.0,>=2.1
|
|
20
|
-
Requires-Dist: munch
|
|
21
|
-
Requires-Dist: pyyaml<7.0,>=6.0
|
|
17
|
+
Requires-Dist: requests<3.0.0,>2.32.0
|
|
18
|
+
Requires-Dist: colorama<0.5.0,>=0.4.6
|
|
19
|
+
Requires-Dist: python-statemachine<3.0.0,>=2.1.0
|
|
20
|
+
Requires-Dist: munch<3.0.0,>=2.5.0
|
|
21
|
+
Requires-Dist: pyyaml<7.0.0,>=6.0.0
|
|
22
22
|
Requires-Dist: SQLAlchemy[asyncio]<3.0.0,>=2.0.25
|
|
23
|
-
Requires-Dist: pydantic<3.0,>=2.
|
|
24
|
-
Requires-Dist: cryptography<45.0,>=
|
|
25
|
-
Requires-Dist: pymongo
|
|
26
|
-
Requires-Dist: redis
|
|
27
|
-
Requires-Dist: aiomysql
|
|
23
|
+
Requires-Dist: pydantic<3.0.0,>=2.7.0
|
|
24
|
+
Requires-Dist: cryptography<45.0.0,>=43.0.1
|
|
25
|
+
Requires-Dist: pymongo<5.0.0,>=4.12.0
|
|
26
|
+
Requires-Dist: redis<7.0.0,>=6.2.0
|
|
27
|
+
Requires-Dist: aiomysql<0.3.0,>=0.2.0
|
|
28
28
|
Dynamic: author
|
|
29
29
|
Dynamic: author-email
|
|
30
30
|
Dynamic: classifier
|