cardo-python-utils 0.3.0__tar.gz → 0.3.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.
- {cardo-python-utils-0.3.0/cardo_python_utils.egg-info → cardo_python_utils-0.3.2}/PKG-INFO +12 -2
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2/cardo_python_utils.egg-info}/PKG-INFO +12 -2
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/esma_choices.py +1 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/setup.cfg +1 -1
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/LICENSE +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/MANIFEST.in +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/README.rst +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/cardo_python_utils.egg-info/SOURCES.txt +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/cardo_python_utils.egg-info/dependency_links.txt +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/cardo_python_utils.egg-info/requires.txt +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/cardo_python_utils.egg-info/top_level.txt +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/__init__.py +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/choices.py +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/data_structures.py +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/db.py +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/django_utils.py +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/exceptions.py +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/imports.py +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/math.py +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/pandas_utils.py +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/rest.py +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/text.py +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/time.py +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/python_utils/types_hinting.py +0 -0
- {cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cardo-python-utils
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Python library enhanced with a wide range of functions for different scenarios.
|
|
5
5
|
Home-page: https://github.com/CardoAI/cardo-python-utils
|
|
6
6
|
Author: Kristi Kotini
|
|
@@ -20,11 +20,21 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
20
20
|
Classifier: Topic :: Internet :: WWW/HTTP
|
|
21
21
|
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
22
22
|
Requires-Python: >=3.8
|
|
23
|
+
License-File: LICENSE
|
|
23
24
|
Provides-Extra: pandas
|
|
25
|
+
Requires-Dist: pandas>=1.4.0; extra == "pandas"
|
|
24
26
|
Provides-Extra: django
|
|
27
|
+
Requires-Dist: Django; extra == "django"
|
|
28
|
+
Requires-Dist: django-model-utils==4.2.0; extra == "django"
|
|
25
29
|
Provides-Extra: rest
|
|
30
|
+
Requires-Dist: djangorestframework; extra == "rest"
|
|
31
|
+
Requires-Dist: requests; extra == "rest"
|
|
26
32
|
Provides-Extra: all
|
|
27
|
-
|
|
33
|
+
Requires-Dist: Django; extra == "all"
|
|
34
|
+
Requires-Dist: pandas>=1.4.0; extra == "all"
|
|
35
|
+
Requires-Dist: django-model-utils>=4.2.0; extra == "all"
|
|
36
|
+
Requires-Dist: djangorestframework; extra == "all"
|
|
37
|
+
Requires-Dist: requests; extra == "all"
|
|
28
38
|
|
|
29
39
|
============================
|
|
30
40
|
CardoAI Python Helper Module
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cardo-python-utils
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Python library enhanced with a wide range of functions for different scenarios.
|
|
5
5
|
Home-page: https://github.com/CardoAI/cardo-python-utils
|
|
6
6
|
Author: Kristi Kotini
|
|
@@ -20,11 +20,21 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
20
20
|
Classifier: Topic :: Internet :: WWW/HTTP
|
|
21
21
|
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
22
22
|
Requires-Python: >=3.8
|
|
23
|
+
License-File: LICENSE
|
|
23
24
|
Provides-Extra: pandas
|
|
25
|
+
Requires-Dist: pandas>=1.4.0; extra == "pandas"
|
|
24
26
|
Provides-Extra: django
|
|
27
|
+
Requires-Dist: Django; extra == "django"
|
|
28
|
+
Requires-Dist: django-model-utils==4.2.0; extra == "django"
|
|
25
29
|
Provides-Extra: rest
|
|
30
|
+
Requires-Dist: djangorestframework; extra == "rest"
|
|
31
|
+
Requires-Dist: requests; extra == "rest"
|
|
26
32
|
Provides-Extra: all
|
|
27
|
-
|
|
33
|
+
Requires-Dist: Django; extra == "all"
|
|
34
|
+
Requires-Dist: pandas>=1.4.0; extra == "all"
|
|
35
|
+
Requires-Dist: django-model-utils>=4.2.0; extra == "all"
|
|
36
|
+
Requires-Dist: djangorestframework; extra == "all"
|
|
37
|
+
Requires-Dist: requests; extra == "all"
|
|
28
38
|
|
|
29
39
|
============================
|
|
30
40
|
CardoAI Python Helper Module
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/cardo_python_utils.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/cardo_python_utils.egg-info/requires.txt
RENAMED
|
File without changes
|
{cardo-python-utils-0.3.0 → cardo_python_utils-0.3.2}/cardo_python_utils.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|