cardo-python-utils 0.4.2__tar.gz → 0.4.3__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.
Files changed (25) hide show
  1. {cardo_python_utils-0.4.2/cardo_python_utils.egg-info → cardo_python_utils-0.4.3}/PKG-INFO +1 -1
  2. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3/cardo_python_utils.egg-info}/PKG-INFO +1 -1
  3. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/esma_choices.py +21 -0
  4. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/setup.cfg +1 -1
  5. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/LICENSE +0 -0
  6. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/MANIFEST.in +0 -0
  7. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/README.rst +0 -0
  8. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/cardo_python_utils.egg-info/SOURCES.txt +0 -0
  9. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/cardo_python_utils.egg-info/dependency_links.txt +0 -0
  10. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/cardo_python_utils.egg-info/requires.txt +0 -0
  11. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/cardo_python_utils.egg-info/top_level.txt +0 -0
  12. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/__init__.py +0 -0
  13. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/choices.py +0 -0
  14. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/data_structures.py +0 -0
  15. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/db.py +0 -0
  16. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/django_utils.py +0 -0
  17. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/exceptions.py +0 -0
  18. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/imports.py +0 -0
  19. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/math.py +0 -0
  20. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/pandas_utils.py +0 -0
  21. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/rest.py +0 -0
  22. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/text.py +0 -0
  23. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/time.py +0 -0
  24. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/types_hinting.py +0 -0
  25. {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cardo-python-utils
3
- Version: 0.4.2
3
+ Version: 0.4.3
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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cardo-python-utils
3
- Version: 0.4.2
3
+ Version: 0.4.3
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
@@ -42,6 +42,9 @@ class FinancialCreditAssetFinancingPurposeChoices(ChoiceEnum):
42
42
  OTHV = 16, "Other Vehicle"
43
43
  EQUP = 17, "Equipment"
44
44
  PROP = 18, "Property"
45
+ PURC = 20, "Purchase"
46
+ RFTM = 21, "Rate/Term Refinance"
47
+ COUT = 22, "Cash-Out Refinance"
45
48
  OTHR = 100, "Other"
46
49
 
47
50
 
@@ -60,6 +63,9 @@ class InterestRateTypeChoices(ChoiceEnum):
60
63
  MODE = 12, "Modular"
61
64
  OTHR = 13, "Other"
62
65
  FXRT = 14, "Fixed Rate"
66
+ VARI = 15, "Variable (ARM)"
67
+ HYBR = 16, "Hybrid ARM (Fixed-to-Variable)"
68
+ STEP = 17, "Step Rate"
63
69
 
64
70
 
65
71
  class SeniorityChoices(ChoiceEnum):
@@ -86,7 +92,13 @@ class EmploymentStatusChoices(ChoiceEnum):
86
92
  STNT = 6, "Student"
87
93
  PNNR = 7, "Pensioner"
88
94
  NOEM = 8, "No Employment, Obligor is Legal Entity"
95
+ RETI = 9, "Retired"
89
96
  OTHR = 10, "Other"
97
+ UNUM = 11, "Unemployed"
98
+ PATE = 12, "Part-Time Employed"
99
+ CNTR = 13, "Contract / Freelance"
100
+ BOWN = 14, "Business Owner"
101
+ SEAS = 15, "Seasonally Employed"
90
102
 
91
103
 
92
104
  class PrimaryIncomeTypeChoices(ChoiceEnum):
@@ -100,6 +112,15 @@ class PrimaryIncomeTypeChoices(ChoiceEnum):
100
112
  DSPL = 8, "Disposable Income"
101
113
  CORP = 9, "Borrower is legal entity"
102
114
  OTHR = 10, "Other"
115
+ SALR = 11, "Salary"
116
+ SEMP = 12, "Self-Employment Income"
117
+ BUSI = 13, "Business Income"
118
+ RENT = 14, "Rental Income"
119
+ INVT = 15, "Investment Income"
120
+ CNTR = 16, "1099 / Contract Income"
121
+ PENS = 17, "Pension / Retirement"
122
+ SOCS = 18, "Social Security / Disability"
123
+ ROYA = 19, "Royalties"
103
124
 
104
125
 
105
126
  class PrimaryIncomeVerificationChoices(ChoiceEnum):
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = cardo-python-utils
3
- version = 0.4.2
3
+ version = 0.4.3
4
4
  description = Python library enhanced with a wide range of functions for different scenarios.
5
5
  long_description = file: README.rst
6
6
  url = https://github.com/CardoAI/cardo-python-utils