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.
- {cardo_python_utils-0.4.2/cardo_python_utils.egg-info → cardo_python_utils-0.4.3}/PKG-INFO +1 -1
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3/cardo_python_utils.egg-info}/PKG-INFO +1 -1
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/esma_choices.py +21 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/setup.cfg +1 -1
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/LICENSE +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/MANIFEST.in +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/README.rst +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/cardo_python_utils.egg-info/SOURCES.txt +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/cardo_python_utils.egg-info/dependency_links.txt +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/cardo_python_utils.egg-info/requires.txt +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/cardo_python_utils.egg-info/top_level.txt +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/__init__.py +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/choices.py +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/data_structures.py +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/db.py +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/django_utils.py +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/exceptions.py +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/imports.py +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/math.py +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/pandas_utils.py +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/rest.py +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/text.py +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/time.py +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/python_utils/types_hinting.py +0 -0
- {cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/setup.py +0 -0
|
@@ -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):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/cardo_python_utils.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/cardo_python_utils.egg-info/requires.txt
RENAMED
|
File without changes
|
{cardo_python_utils-0.4.2 → cardo_python_utils-0.4.3}/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
|