cardo-python-utils 0.3.6__tar.gz → 0.3.9__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.6/cardo_python_utils.egg-info → cardo_python_utils-0.3.9}/PKG-INFO +3 -2
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9/cardo_python_utils.egg-info}/PKG-INFO +3 -2
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/python_utils/esma_choices.py +5 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/setup.cfg +1 -1
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/LICENSE +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/MANIFEST.in +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/README.rst +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/cardo_python_utils.egg-info/SOURCES.txt +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/cardo_python_utils.egg-info/dependency_links.txt +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/cardo_python_utils.egg-info/requires.txt +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/cardo_python_utils.egg-info/top_level.txt +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/python_utils/__init__.py +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/python_utils/choices.py +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/python_utils/data_structures.py +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/python_utils/db.py +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/python_utils/django_utils.py +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/python_utils/exceptions.py +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/python_utils/imports.py +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/python_utils/math.py +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/python_utils/pandas_utils.py +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/python_utils/rest.py +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/python_utils/text.py +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/python_utils/time.py +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/python_utils/types_hinting.py +0 -0
- {cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: cardo-python-utils
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.9
|
|
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
|
|
@@ -35,6 +35,7 @@ Requires-Dist: pandas>=1.4.0; extra == "all"
|
|
|
35
35
|
Requires-Dist: django-model-utils>=4.2.0; extra == "all"
|
|
36
36
|
Requires-Dist: djangorestframework; extra == "all"
|
|
37
37
|
Requires-Dist: requests; extra == "all"
|
|
38
|
+
Dynamic: license-file
|
|
38
39
|
|
|
39
40
|
============================
|
|
40
41
|
CardoAI Python Helper Module
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: cardo-python-utils
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.9
|
|
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
|
|
@@ -35,6 +35,7 @@ Requires-Dist: pandas>=1.4.0; extra == "all"
|
|
|
35
35
|
Requires-Dist: django-model-utils>=4.2.0; extra == "all"
|
|
36
36
|
Requires-Dist: djangorestframework; extra == "all"
|
|
37
37
|
Requires-Dist: requests; extra == "all"
|
|
38
|
+
Dynamic: license-file
|
|
38
39
|
|
|
39
40
|
============================
|
|
40
41
|
CardoAI Python Helper Module
|
|
@@ -308,6 +308,7 @@ class SPVAssetClassChoices(ChoiceEnum):
|
|
|
308
308
|
CDO = 20, "CDO"
|
|
309
309
|
RECREATIONAL_VEHICLE = 21, "Recreational Vehicle"
|
|
310
310
|
CORPORATE_LOAN = 22, "Corporate Loan"
|
|
311
|
+
BNPL = 23, "BNPL"
|
|
311
312
|
|
|
312
313
|
|
|
313
314
|
class SPVWaterfallTypeChoices(ChoiceEnum):
|
|
@@ -426,6 +427,10 @@ class SPVCounterpartyTypeChoices(ChoiceEnum):
|
|
|
426
427
|
CLOM = 53, "Collateralised Loan Obligation Manager"
|
|
427
428
|
PRTA = 54, "Portfolio Advisor"
|
|
428
429
|
SUBA = 55, "Substitution Agent"
|
|
430
|
+
BORR = 56, "Borrower"
|
|
431
|
+
UNDT = 57, "Underlying Trust"
|
|
432
|
+
DPST = 58, "Depositor"
|
|
433
|
+
AGNT = 59, "Agent"
|
|
429
434
|
OTHR = 100, "Other"
|
|
430
435
|
|
|
431
436
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/cardo_python_utils.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/cardo_python_utils.egg-info/requires.txt
RENAMED
|
File without changes
|
{cardo_python_utils-0.3.6 → cardo_python_utils-0.3.9}/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
|