fin-infra 0.1.57__py3-none-any.whl → 0.1.58__py3-none-any.whl
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.
- fin_infra/credit/experian/auth.py +9 -6
- fin_infra/credit/experian/provider.py +132 -14
- fin_infra/investments/ease.py +2 -2
- fin_infra/investments/providers/base.py +2 -1
- fin_infra/net_worth/calculator.py +32 -6
- fin_infra/providers/banking/plaid_client.py +10 -2
- fin_infra/providers/base.py +23 -3
- fin_infra/settings.py +1 -1
- {fin_infra-0.1.57.dist-info → fin_infra-0.1.58.dist-info}/METADATA +1 -1
- {fin_infra-0.1.57.dist-info → fin_infra-0.1.58.dist-info}/RECORD +13 -13
- {fin_infra-0.1.57.dist-info → fin_infra-0.1.58.dist-info}/LICENSE +0 -0
- {fin_infra-0.1.57.dist-info → fin_infra-0.1.58.dist-info}/WHEEL +0 -0
- {fin_infra-0.1.57.dist-info → fin_infra-0.1.58.dist-info}/entry_points.txt +0 -0
|
@@ -27,7 +27,6 @@ import base64
|
|
|
27
27
|
|
|
28
28
|
import httpx
|
|
29
29
|
from svc_infra.cache import cache_read
|
|
30
|
-
from svc_infra.cache.tags import invalidate_tags
|
|
31
30
|
|
|
32
31
|
# Cache key for OAuth tokens: "oauth_token:experian:{base_url_hash}"
|
|
33
32
|
# TTL: 3600 seconds (1 hour) - matches typical OAuth token expiry
|
|
@@ -91,7 +90,7 @@ class ExperianAuthManager:
|
|
|
91
90
|
@cache_read(
|
|
92
91
|
key="oauth_token:experian:{client_id}", # Use client_id for uniqueness
|
|
93
92
|
ttl=3600, # 1 hour - matches OAuth token expiry
|
|
94
|
-
tags=lambda **kw: ["oauth:experian"],
|
|
93
|
+
tags=lambda **kw: [f"oauth:experian:{kw['client_id']}"], # Client-specific tag
|
|
95
94
|
)
|
|
96
95
|
async def _get_token_cached(self, *, client_id: str) -> str:
|
|
97
96
|
"""Cached token getter (internal method).
|
|
@@ -144,10 +143,10 @@ class ExperianAuthManager:
|
|
|
144
143
|
return data["access_token"]
|
|
145
144
|
|
|
146
145
|
async def invalidate(self) -> None:
|
|
147
|
-
"""Invalidate cached token (force refresh on next get_token call).
|
|
146
|
+
"""Invalidate cached token for THIS client (force refresh on next get_token call).
|
|
148
147
|
|
|
149
|
-
|
|
150
|
-
|
|
148
|
+
Invalidates only the token for this specific client_id, not all Experian tokens.
|
|
149
|
+
Useful when token is rejected by API.
|
|
151
150
|
|
|
152
151
|
Example:
|
|
153
152
|
>>> try:
|
|
@@ -157,4 +156,8 @@ class ExperianAuthManager:
|
|
|
157
156
|
... await auth.invalidate()
|
|
158
157
|
... # Next get_token() will fetch new token
|
|
159
158
|
"""
|
|
160
|
-
|
|
159
|
+
# Import here to avoid circular import
|
|
160
|
+
from svc_infra.cache.tags import invalidate_tags
|
|
161
|
+
|
|
162
|
+
# Invalidate using client-specific tag, not all Experian tokens
|
|
163
|
+
await invalidate_tags(f"oauth:experian:{self.client_id}")
|
|
@@ -7,6 +7,7 @@ Features:
|
|
|
7
7
|
- HTTP client with retry logic
|
|
8
8
|
- Response parsing to Pydantic models
|
|
9
9
|
- FCRA compliance headers
|
|
10
|
+
- FCRA audit logging (required for regulatory compliance)
|
|
10
11
|
- Error handling
|
|
11
12
|
|
|
12
13
|
Example:
|
|
@@ -28,6 +29,8 @@ Example:
|
|
|
28
29
|
>>> print(len(report.accounts)) # Real credit accounts
|
|
29
30
|
"""
|
|
30
31
|
|
|
32
|
+
import logging
|
|
33
|
+
from datetime import datetime, timezone
|
|
31
34
|
from typing import Literal
|
|
32
35
|
|
|
33
36
|
from fin_infra.credit.experian.auth import ExperianAuthManager
|
|
@@ -37,6 +40,10 @@ from fin_infra.models.credit import CreditReport, CreditScore
|
|
|
37
40
|
from fin_infra.providers.base import CreditProvider
|
|
38
41
|
from fin_infra.settings import Settings
|
|
39
42
|
|
|
43
|
+
# FCRA audit logger - use dedicated logger for compliance auditing
|
|
44
|
+
# This should be configured to write to a tamper-evident, append-only log
|
|
45
|
+
fcra_audit_logger = logging.getLogger("fin_infra.fcra_audit")
|
|
46
|
+
|
|
40
47
|
|
|
41
48
|
class ExperianProvider(CreditProvider):
|
|
42
49
|
"""Experian credit bureau provider with real API integration.
|
|
@@ -143,11 +150,14 @@ class ExperianProvider(CreditProvider):
|
|
|
143
150
|
"""Retrieve current credit score for a user from Experian API.
|
|
144
151
|
|
|
145
152
|
Makes real API call to Experian. Uses FCRA-compliant permissible purpose.
|
|
153
|
+
All credit pulls are logged for FCRA compliance (15 USC § 1681b).
|
|
146
154
|
|
|
147
155
|
Args:
|
|
148
156
|
user_id: User identifier (SSN hash or internal ID)
|
|
149
157
|
**kwargs: Additional parameters
|
|
150
158
|
- permissible_purpose: FCRA purpose (default: "account_review")
|
|
159
|
+
- requester_ip: IP address of requester (for audit log)
|
|
160
|
+
- requester_user_id: ID of user/service making the request
|
|
151
161
|
|
|
152
162
|
Returns:
|
|
153
163
|
CreditScore with real FICO score from Experian
|
|
@@ -162,25 +172,79 @@ class ExperianProvider(CreditProvider):
|
|
|
162
172
|
>>> print(score.score) # Real FICO score (300-850)
|
|
163
173
|
"""
|
|
164
174
|
permissible_purpose = kwargs.get("permissible_purpose", "account_review")
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
175
|
+
requester_ip = kwargs.get("requester_ip", "unknown")
|
|
176
|
+
requester_user_id = kwargs.get("requester_user_id", "unknown")
|
|
177
|
+
|
|
178
|
+
# FCRA Audit Log - REQUIRED for regulatory compliance (15 USC § 1681b)
|
|
179
|
+
# This log must be retained for at least 2 years per FCRA requirements
|
|
180
|
+
timestamp = datetime.now(timezone.utc).isoformat()
|
|
181
|
+
fcra_audit_logger.info(
|
|
182
|
+
"FCRA_CREDIT_PULL",
|
|
183
|
+
extra={
|
|
184
|
+
"action": "credit_score_pull",
|
|
185
|
+
"subject_user_id": user_id,
|
|
186
|
+
"requester_user_id": requester_user_id,
|
|
187
|
+
"requester_ip": requester_ip,
|
|
188
|
+
"permissible_purpose": permissible_purpose,
|
|
189
|
+
"provider": "experian",
|
|
190
|
+
"environment": self.environment,
|
|
191
|
+
"timestamp": timestamp,
|
|
192
|
+
"result": "pending",
|
|
193
|
+
}
|
|
170
194
|
)
|
|
171
195
|
|
|
172
|
-
|
|
173
|
-
|
|
196
|
+
try:
|
|
197
|
+
# Fetch from Experian API
|
|
198
|
+
data = await self._client.get_credit_score(
|
|
199
|
+
user_id,
|
|
200
|
+
permissible_purpose=permissible_purpose,
|
|
201
|
+
)
|
|
202
|
+
|
|
203
|
+
# Parse response to CreditScore model
|
|
204
|
+
result = parse_credit_score(data, user_id=user_id)
|
|
205
|
+
|
|
206
|
+
# Log successful pull
|
|
207
|
+
fcra_audit_logger.info(
|
|
208
|
+
"FCRA_CREDIT_PULL_SUCCESS",
|
|
209
|
+
extra={
|
|
210
|
+
"action": "credit_score_pull",
|
|
211
|
+
"subject_user_id": user_id,
|
|
212
|
+
"requester_user_id": requester_user_id,
|
|
213
|
+
"timestamp": timestamp,
|
|
214
|
+
"result": "success",
|
|
215
|
+
"score_returned": result.score is not None,
|
|
216
|
+
}
|
|
217
|
+
)
|
|
218
|
+
|
|
219
|
+
return result
|
|
220
|
+
|
|
221
|
+
except Exception as e:
|
|
222
|
+
# Log failed pull - still required for FCRA audit trail
|
|
223
|
+
fcra_audit_logger.warning(
|
|
224
|
+
"FCRA_CREDIT_PULL_FAILED",
|
|
225
|
+
extra={
|
|
226
|
+
"action": "credit_score_pull",
|
|
227
|
+
"subject_user_id": user_id,
|
|
228
|
+
"requester_user_id": requester_user_id,
|
|
229
|
+
"timestamp": timestamp,
|
|
230
|
+
"result": "error",
|
|
231
|
+
"error_type": type(e).__name__,
|
|
232
|
+
}
|
|
233
|
+
)
|
|
234
|
+
raise
|
|
174
235
|
|
|
175
236
|
async def get_credit_report(self, user_id: str, **kwargs) -> CreditReport:
|
|
176
237
|
"""Retrieve full credit report for a user from Experian API.
|
|
177
238
|
|
|
178
239
|
Makes real API call to Experian. Includes FCRA-required permissible purpose header.
|
|
240
|
+
All credit pulls are logged for FCRA compliance (15 USC § 1681b).
|
|
179
241
|
|
|
180
242
|
Args:
|
|
181
243
|
user_id: User identifier (SSN hash or internal ID)
|
|
182
244
|
**kwargs: Additional parameters
|
|
183
245
|
- permissible_purpose: FCRA purpose (default: "account_review")
|
|
246
|
+
- requester_ip: IP address of requester (for audit log)
|
|
247
|
+
- requester_user_id: ID of user/service making the request
|
|
184
248
|
|
|
185
249
|
Returns:
|
|
186
250
|
CreditReport with real credit data from Experian
|
|
@@ -196,15 +260,69 @@ class ExperianProvider(CreditProvider):
|
|
|
196
260
|
>>> print(report.score.score) # Real FICO score
|
|
197
261
|
"""
|
|
198
262
|
permissible_purpose = kwargs.get("permissible_purpose", "account_review")
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
263
|
+
requester_ip = kwargs.get("requester_ip", "unknown")
|
|
264
|
+
requester_user_id = kwargs.get("requester_user_id", "unknown")
|
|
265
|
+
|
|
266
|
+
# FCRA Audit Log - REQUIRED for regulatory compliance (15 USC § 1681b)
|
|
267
|
+
# Full credit report pulls have stricter requirements than score-only pulls
|
|
268
|
+
# This log must be retained for at least 2 years per FCRA requirements
|
|
269
|
+
timestamp = datetime.now(timezone.utc).isoformat()
|
|
270
|
+
fcra_audit_logger.info(
|
|
271
|
+
"FCRA_CREDIT_PULL",
|
|
272
|
+
extra={
|
|
273
|
+
"action": "credit_report_pull",
|
|
274
|
+
"subject_user_id": user_id,
|
|
275
|
+
"requester_user_id": requester_user_id,
|
|
276
|
+
"requester_ip": requester_ip,
|
|
277
|
+
"permissible_purpose": permissible_purpose,
|
|
278
|
+
"provider": "experian",
|
|
279
|
+
"environment": self.environment,
|
|
280
|
+
"timestamp": timestamp,
|
|
281
|
+
"result": "pending",
|
|
282
|
+
"report_type": "full",
|
|
283
|
+
}
|
|
204
284
|
)
|
|
205
285
|
|
|
206
|
-
|
|
207
|
-
|
|
286
|
+
try:
|
|
287
|
+
# Fetch from Experian API
|
|
288
|
+
data = await self._client.get_credit_report(
|
|
289
|
+
user_id,
|
|
290
|
+
permissible_purpose=permissible_purpose,
|
|
291
|
+
)
|
|
292
|
+
|
|
293
|
+
# Parse response to CreditReport model
|
|
294
|
+
result = parse_credit_report(data, user_id=user_id)
|
|
295
|
+
|
|
296
|
+
# Log successful pull
|
|
297
|
+
fcra_audit_logger.info(
|
|
298
|
+
"FCRA_CREDIT_PULL_SUCCESS",
|
|
299
|
+
extra={
|
|
300
|
+
"action": "credit_report_pull",
|
|
301
|
+
"subject_user_id": user_id,
|
|
302
|
+
"requester_user_id": requester_user_id,
|
|
303
|
+
"timestamp": timestamp,
|
|
304
|
+
"result": "success",
|
|
305
|
+
"accounts_returned": len(result.accounts) if result.accounts else 0,
|
|
306
|
+
"inquiries_returned": len(result.inquiries) if result.inquiries else 0,
|
|
307
|
+
}
|
|
308
|
+
)
|
|
309
|
+
|
|
310
|
+
return result
|
|
311
|
+
|
|
312
|
+
except Exception as e:
|
|
313
|
+
# Log failed pull - still required for FCRA audit trail
|
|
314
|
+
fcra_audit_logger.warning(
|
|
315
|
+
"FCRA_CREDIT_PULL_FAILED",
|
|
316
|
+
extra={
|
|
317
|
+
"action": "credit_report_pull",
|
|
318
|
+
"subject_user_id": user_id,
|
|
319
|
+
"requester_user_id": requester_user_id,
|
|
320
|
+
"timestamp": timestamp,
|
|
321
|
+
"result": "error",
|
|
322
|
+
"error_type": type(e).__name__,
|
|
323
|
+
}
|
|
324
|
+
)
|
|
325
|
+
raise
|
|
208
326
|
|
|
209
327
|
async def subscribe_to_changes(self, user_id: str, webhook_url: str, **kwargs) -> str:
|
|
210
328
|
"""Subscribe to credit score change notifications from Experian.
|
fin_infra/investments/ease.py
CHANGED
|
@@ -46,7 +46,7 @@ def easy_investments(
|
|
|
46
46
|
Plaid:
|
|
47
47
|
- PLAID_CLIENT_ID: Plaid client ID
|
|
48
48
|
- PLAID_SECRET: Plaid secret key
|
|
49
|
-
-
|
|
49
|
+
- PLAID_ENVIRONMENT: Environment (sandbox/development/production), default: sandbox
|
|
50
50
|
|
|
51
51
|
SnapTrade:
|
|
52
52
|
- SNAPTRADE_CLIENT_ID: SnapTrade client ID
|
|
@@ -177,7 +177,7 @@ def _create_plaid_provider(**config: Any) -> InvestmentProvider:
|
|
|
177
177
|
# Get credentials from config or environment
|
|
178
178
|
client_id = config.get("client_id") or os.getenv("PLAID_CLIENT_ID")
|
|
179
179
|
secret = config.get("secret") or os.getenv("PLAID_SECRET")
|
|
180
|
-
environment = config.get("environment") or os.getenv("
|
|
180
|
+
environment = config.get("environment") or os.getenv("PLAID_ENVIRONMENT", "sandbox")
|
|
181
181
|
|
|
182
182
|
# Validate required credentials
|
|
183
183
|
if not client_id or not secret:
|
|
@@ -217,8 +217,9 @@ class InvestmentProvider(ABC):
|
|
|
217
217
|
)
|
|
218
218
|
|
|
219
219
|
total_gain_loss = total_value - total_cost_basis
|
|
220
|
+
# Use != 0 to handle short sales (negative cost basis)
|
|
220
221
|
total_gain_loss_percent = (
|
|
221
|
-
(total_gain_loss / total_cost_basis * 100) if total_cost_basis
|
|
222
|
+
(total_gain_loss / total_cost_basis * 100) if total_cost_basis != 0 else 0.0
|
|
222
223
|
)
|
|
223
224
|
|
|
224
225
|
return {
|
|
@@ -100,18 +100,27 @@ def calculate_net_worth(
|
|
|
100
100
|
|
|
101
101
|
Returns:
|
|
102
102
|
Net worth in base currency
|
|
103
|
+
|
|
104
|
+
Raises:
|
|
105
|
+
ValueError: If assets or liabilities contain non-base currencies and no
|
|
106
|
+
exchange rate conversion is available. This prevents silent data loss.
|
|
103
107
|
"""
|
|
108
|
+
import logging
|
|
109
|
+
logger = logging.getLogger(__name__)
|
|
110
|
+
|
|
111
|
+
# Collect any non-base currency items for error reporting
|
|
112
|
+
non_base_assets: list[tuple[str, str, float]] = []
|
|
113
|
+
non_base_liabilities: list[tuple[str, str, float]] = []
|
|
114
|
+
|
|
104
115
|
# Sum all assets (use market_value if available, otherwise balance)
|
|
105
116
|
total_assets = 0.0
|
|
106
117
|
for asset in assets:
|
|
107
118
|
# Use market value for investments/crypto (includes unrealized gains)
|
|
108
119
|
amount = asset.market_value if asset.market_value is not None else asset.balance
|
|
109
120
|
|
|
110
|
-
#
|
|
111
|
-
# For now, assume all are in USD
|
|
121
|
+
# Check for non-base currency
|
|
112
122
|
if asset.currency != base_currency:
|
|
113
|
-
|
|
114
|
-
# For V1, we'll require all accounts in USD or skip non-USD
|
|
123
|
+
non_base_assets.append((asset.name or asset.account_id, asset.currency, amount))
|
|
115
124
|
continue
|
|
116
125
|
|
|
117
126
|
total_assets += amount
|
|
@@ -119,13 +128,30 @@ def calculate_net_worth(
|
|
|
119
128
|
# Sum all liabilities
|
|
120
129
|
total_liabilities = 0.0
|
|
121
130
|
for liability in liabilities:
|
|
122
|
-
#
|
|
131
|
+
# Check for non-base currency
|
|
123
132
|
if liability.currency != base_currency:
|
|
124
|
-
|
|
133
|
+
non_base_liabilities.append((liability.name or liability.account_id, liability.currency, liability.balance))
|
|
125
134
|
continue
|
|
126
135
|
|
|
127
136
|
total_liabilities += liability.balance
|
|
128
137
|
|
|
138
|
+
# If any non-base currency items were found, log warning and raise error
|
|
139
|
+
# This prevents silent data loss where user's net worth is wrong
|
|
140
|
+
if non_base_assets or non_base_liabilities:
|
|
141
|
+
items_msg = []
|
|
142
|
+
if non_base_assets:
|
|
143
|
+
items_msg.append(f"Assets: {non_base_assets}")
|
|
144
|
+
if non_base_liabilities:
|
|
145
|
+
items_msg.append(f"Liabilities: {non_base_liabilities}")
|
|
146
|
+
|
|
147
|
+
error_msg = (
|
|
148
|
+
f"Cannot calculate net worth: found accounts in non-{base_currency} currencies. "
|
|
149
|
+
f"Currency conversion not yet implemented. {'; '.join(items_msg)}. "
|
|
150
|
+
f"Either convert all accounts to {base_currency} or wait for currency conversion feature."
|
|
151
|
+
)
|
|
152
|
+
logger.warning(error_msg)
|
|
153
|
+
raise ValueError(error_msg)
|
|
154
|
+
|
|
129
155
|
return total_assets - total_liabilities
|
|
130
156
|
|
|
131
157
|
|
|
@@ -54,12 +54,20 @@ class PlaidClient(BankingProvider):
|
|
|
54
54
|
|
|
55
55
|
# Map environment string to Plaid Environment enum
|
|
56
56
|
# Note: Plaid only has Sandbox and Production (no Development in SDK)
|
|
57
|
+
env_str = environment or "sandbox"
|
|
57
58
|
env_map = {
|
|
58
59
|
"sandbox": plaid.Environment.Sandbox,
|
|
59
|
-
"development": plaid.Environment.Sandbox, # Map development to sandbox
|
|
60
|
+
"development": plaid.Environment.Sandbox, # Map development to sandbox (Plaid SDK limitation)
|
|
60
61
|
"production": plaid.Environment.Production,
|
|
61
62
|
}
|
|
62
|
-
|
|
63
|
+
|
|
64
|
+
if env_str not in env_map:
|
|
65
|
+
raise ValueError(
|
|
66
|
+
f"Invalid Plaid environment: '{env_str}'. "
|
|
67
|
+
f"Must be one of: sandbox, development, production"
|
|
68
|
+
)
|
|
69
|
+
|
|
70
|
+
host = env_map[env_str]
|
|
63
71
|
|
|
64
72
|
# Configure Plaid client (v8.0.0+ API)
|
|
65
73
|
configuration = plaid.Configuration(
|
fin_infra/providers/base.py
CHANGED
|
@@ -114,7 +114,27 @@ class TaxProvider(ABC):
|
|
|
114
114
|
class InvestmentProvider(ABC):
|
|
115
115
|
"""Provider for investment holdings and portfolio data (Plaid, SnapTrade).
|
|
116
116
|
|
|
117
|
-
|
|
118
|
-
|
|
117
|
+
This is a minimal ABC for type checking. The full implementation with
|
|
118
|
+
all abstract methods is in fin_infra.investments.providers.base.InvestmentProvider.
|
|
119
|
+
|
|
120
|
+
Abstract Methods (defined in full implementation):
|
|
121
|
+
- get_holdings(access_token, account_ids) -> List[Holding]
|
|
122
|
+
- get_transactions(access_token, start_date, end_date, account_ids) -> List[InvestmentTransaction]
|
|
123
|
+
- get_securities(access_token, security_ids) -> List[Security]
|
|
124
|
+
- get_investment_accounts(access_token) -> List[InvestmentAccount]
|
|
125
|
+
|
|
126
|
+
Example:
|
|
127
|
+
>>> from fin_infra.investments import easy_investments
|
|
128
|
+
>>> provider = easy_investments(provider="plaid")
|
|
129
|
+
>>> holdings = await provider.get_holdings(access_token)
|
|
119
130
|
"""
|
|
120
|
-
|
|
131
|
+
|
|
132
|
+
@abstractmethod
|
|
133
|
+
async def get_holdings(self, access_token: str, account_ids: list[str] | None = None) -> list:
|
|
134
|
+
"""Fetch holdings for investment accounts."""
|
|
135
|
+
pass
|
|
136
|
+
|
|
137
|
+
@abstractmethod
|
|
138
|
+
async def get_investment_accounts(self, access_token: str) -> list:
|
|
139
|
+
"""Fetch investment accounts with aggregated holdings."""
|
|
140
|
+
pass
|
fin_infra/settings.py
CHANGED
|
@@ -12,7 +12,7 @@ class Settings(BaseSettings):
|
|
|
12
12
|
# Plaid
|
|
13
13
|
plaid_client_id: str | None = Field(default=None, alias="PLAID_CLIENT_ID")
|
|
14
14
|
plaid_secret: str | None = Field(default=None, alias="PLAID_SECRET")
|
|
15
|
-
plaid_env: str = Field(default="sandbox", alias="
|
|
15
|
+
plaid_env: str = Field(default="sandbox", alias="PLAID_ENVIRONMENT")
|
|
16
16
|
|
|
17
17
|
# Alpaca
|
|
18
18
|
alpaca_api_key: str | None = Field(default=None, alias="ALPACA_API_KEY")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: fin-infra
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.58
|
|
4
4
|
Summary: Financial infrastructure toolkit: banking connections, market data, credit, cashflows, and brokerage integrations
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: finance,banking,plaid,brokerage,markets,credit,tax,cashflow,fintech,infra
|
|
@@ -50,10 +50,10 @@ fin_infra/compliance/__init__.py,sha256=03eXxRDFeQnEaz_W8MVYYDv_ni7Urue2StLf02jH
|
|
|
50
50
|
fin_infra/credit/__init__.py,sha256=cwCP_WlrG-0yb_L4zYsuzEsSalcfiCY9ItqXfD7Jx9E,6719
|
|
51
51
|
fin_infra/credit/add.py,sha256=etRbqw15vzUQfvnMTmznZlLiKy2GVEe8ok08Ea3pjdE,8490
|
|
52
52
|
fin_infra/credit/experian/__init__.py,sha256=g3IJGvDOMsnB0er0Uwdvl6hGKKTOazqJxSDnB2oIBm0,761
|
|
53
|
-
fin_infra/credit/experian/auth.py,sha256=
|
|
53
|
+
fin_infra/credit/experian/auth.py,sha256=SHi3YNPFwEAS_SraAiAK7V-DEokgaq-7-eqkkBrcgMo,5562
|
|
54
54
|
fin_infra/credit/experian/client.py,sha256=sxdoB9pyIntyZ9MKDN-x8tUuyllZSOq7KzOrHjeYs8s,8918
|
|
55
55
|
fin_infra/credit/experian/parser.py,sha256=7ptdLyTWWqHWqCo1CXn6L7XaIn9ZRRuOaATbFmMZZ64,7489
|
|
56
|
-
fin_infra/credit/experian/provider.py,sha256=
|
|
56
|
+
fin_infra/credit/experian/provider.py,sha256=iG2cyftdc7c2pvKWVfeNd3vF_ylNayyhgyUG7Jnl1VI,13766
|
|
57
57
|
fin_infra/credit/mock.py,sha256=xKWZk3fhuIYRfiZkNc9fbHUNViNKjmOLSj0MTI1f4ik,5356
|
|
58
58
|
fin_infra/crypto/__init__.py,sha256=HpplYEY8GiBz55ehYRDQxs8SWJIW1smBs9eFOKt_nzI,8318
|
|
59
59
|
fin_infra/crypto/insights.py,sha256=fuGFKkOkZoYKit29_kbH1T2XWvbMKVmhFUd57E2XOmQ,11695
|
|
@@ -80,10 +80,10 @@ fin_infra/insights/aggregator.py,sha256=XG32mN5w5Nc4AZllmfl1esL4q44mFAf0Fvj9mWev
|
|
|
80
80
|
fin_infra/insights/models.py,sha256=xov_YV8oBLJt3YdyVjbryRfcXqmGeGiPvZsZHSbvtl8,3202
|
|
81
81
|
fin_infra/investments/__init__.py,sha256=UiWvTdKH7V9aaqZLunPT1_QGfXBAZbPk_w4QmeLWLqo,6324
|
|
82
82
|
fin_infra/investments/add.py,sha256=XjIuXnGY1-tJWeDqsgTpbP2-ruh-Ulbu0IsSlyKRsqw,16416
|
|
83
|
-
fin_infra/investments/ease.py,sha256=
|
|
83
|
+
fin_infra/investments/ease.py,sha256=ocs7xvnZ1u8riFjH9KHi1yFEUF0lfuEcd-QMpsuiOu8,9229
|
|
84
84
|
fin_infra/investments/models.py,sha256=NHnkvtMa1QYp_TpuuqT4u3cWEJi3OhW-1e-orMuR47o,16107
|
|
85
85
|
fin_infra/investments/providers/__init__.py,sha256=V1eIzz6EnGJ-pq-9L3S2-evmcExF-YdZfd5P6JMyDtc,383
|
|
86
|
-
fin_infra/investments/providers/base.py,sha256=
|
|
86
|
+
fin_infra/investments/providers/base.py,sha256=KaJdIdeWi2WaWAogcFZw7jcqQ_IzMZw6misBNk-n6bE,9890
|
|
87
87
|
fin_infra/investments/providers/plaid.py,sha256=OKzLNPAcBiZlqBRCOeaBogB5fvHdvlRpPuGHKvRGS2E,18069
|
|
88
88
|
fin_infra/investments/providers/snaptrade.py,sha256=IUgXoI7UCBXOAxn2J62cOiQSW02sujqEk47nb638264,23508
|
|
89
89
|
fin_infra/investments/scaffold_templates/README.md,sha256=PhgxfMLrro2Jz83b7XEnBi7lexiWKqlMrd2UU2Rbs8A,12149
|
|
@@ -104,7 +104,7 @@ fin_infra/models/transactions.py,sha256=zlu7Ath91ZmqQWKn8Bd_iV_XreWTDXFWJyfTTZ3J
|
|
|
104
104
|
fin_infra/net_worth/__init__.py,sha256=EjEuHNg8gEfFwbfko1-o5j-gSUZ2FcO9h7l05C-zAJM,3101
|
|
105
105
|
fin_infra/net_worth/add.py,sha256=5xYy2L5hEEPiQNF79i-ArWVztLXk2XM97DoZYNWGAz8,23100
|
|
106
106
|
fin_infra/net_worth/aggregator.py,sha256=grif-N8qk77L_JQ4IlcOJaKKP1qpxel0lIV_ll3HgjI,12646
|
|
107
|
-
fin_infra/net_worth/calculator.py,sha256=
|
|
107
|
+
fin_infra/net_worth/calculator.py,sha256=JERDtZyFurw5x2NYqfHvJzv6qigamI3AFfR-wesTj_E,13133
|
|
108
108
|
fin_infra/net_worth/ease.py,sha256=wrQ5zI2nVsbSCVFQXBSEt0DMI6xK-jv5m0AyZkyuOx8,15106
|
|
109
109
|
fin_infra/net_worth/goals.py,sha256=BJGxdsMjvgQDELFEJo-ai3DvsAzUNXvzMXkwovHr8yQ,1238
|
|
110
110
|
fin_infra/net_worth/insights.py,sha256=4GUyV-YEXgBs0ZuBx1OnSV0B2N-e0jvKoIgQ2yB7M7g,25250
|
|
@@ -125,9 +125,9 @@ fin_infra/obs/__init__.py,sha256=kMMVl0fdwtJtZeKiusTuw0iO61Jo9-HNXsLmn3ffLRE,631
|
|
|
125
125
|
fin_infra/obs/classifier.py,sha256=6R2q-w71tk7WfXF5MBPqawxogcj6tILKZPlkpRZNDfg,5083
|
|
126
126
|
fin_infra/providers/__init__.py,sha256=jxhQm79T6DVXf7Wpy7luL-p50cE_IMUbjt4o3apzJQU,768
|
|
127
127
|
fin_infra/providers/banking/base.py,sha256=KeNU4ur3zLKHVsBF1LQifcs2AKX06IEE-Rx_SetFeAs,102
|
|
128
|
-
fin_infra/providers/banking/plaid_client.py,sha256=
|
|
128
|
+
fin_infra/providers/banking/plaid_client.py,sha256=t4pW6vkecx1AgkKDXUSiileAxA6pu6dA4L6c8zSff0k,6545
|
|
129
129
|
fin_infra/providers/banking/teller_client.py,sha256=r4apwTNt8FJ2Rn2bC97orzaVYFkE0yMXXl--H5rtph0,9800
|
|
130
|
-
fin_infra/providers/base.py,sha256=
|
|
130
|
+
fin_infra/providers/base.py,sha256=oLzdExPGE7yg-URtin3vGTQ8hEzG7UnTmDGDWJB5oL0,4273
|
|
131
131
|
fin_infra/providers/brokerage/alpaca.py,sha256=eOzdRp45_VeD1r_2k0IudxFn0IRhGogn-htF5IJVKnk,9862
|
|
132
132
|
fin_infra/providers/brokerage/base.py,sha256=JJFH0Cqca4Rg4rmxfiwcQt-peRoBf4JpG3g6jx8DVks,106
|
|
133
133
|
fin_infra/providers/credit/experian.py,sha256=hNEVqmCaPT72NHV3Nw3sKOYPX0kIsl819ucqUc-7z2k,341
|
|
@@ -164,7 +164,7 @@ fin_infra/security/models.py,sha256=riQO-083p5rDMRrFxRnc2PTkxkAf-HsSpGvrnzboCNE,
|
|
|
164
164
|
fin_infra/security/pii_filter.py,sha256=lfARBmPRekkyXKJV0tWI_0KVaDsdV61VH-8RHxvbqUs,8307
|
|
165
165
|
fin_infra/security/pii_patterns.py,sha256=hsW-2RwA8XW3wprsvzkqcWK9uX_HrdLH53g7OUKiwvM,3046
|
|
166
166
|
fin_infra/security/token_store.py,sha256=lNnGUlQCJImc-OAcHbHij8xYHkV3jb6MgBpwEra-T_M,5862
|
|
167
|
-
fin_infra/settings.py,sha256=
|
|
167
|
+
fin_infra/settings.py,sha256=xitpBQJmuvSy9prQhvXOW1scbwB1KAyGD8XqYgU_hQU,1388
|
|
168
168
|
fin_infra/tax/__init__.py,sha256=NXUjV-k-rw4774pookY3UOwEXYRQauJze6Yift5RjW0,6107
|
|
169
169
|
fin_infra/tax/add.py,sha256=xmy0hXsWzEj5p-_9A5hkljFjF_FpnbCQQZ5e8FPChBI,14568
|
|
170
170
|
fin_infra/tax/tlh.py,sha256=QFnepLuJW8L71SccRTE54eN5ILyDGs1XNG5p-aVM_b8,21543
|
|
@@ -173,8 +173,8 @@ fin_infra/utils/http.py,sha256=wgXo5amXyzAX49v_lRUvp4Xxq8nodX32CMJyWl6u89I,568
|
|
|
173
173
|
fin_infra/utils/retry.py,sha256=VxT4ssP4r8Krl3KThvI-opPMhGCpZUCH4rUyit1LEUk,967
|
|
174
174
|
fin_infra/utils.py,sha256=VxT4ssP4r8Krl3KThvI-opPMhGCpZUCH4rUyit1LEUk,967
|
|
175
175
|
fin_infra/version.py,sha256=4t_crzhrLum--oyowUMxtjBTzUtWp7oRTF22ewEvJG4,49
|
|
176
|
-
fin_infra-0.1.
|
|
177
|
-
fin_infra-0.1.
|
|
178
|
-
fin_infra-0.1.
|
|
179
|
-
fin_infra-0.1.
|
|
180
|
-
fin_infra-0.1.
|
|
176
|
+
fin_infra-0.1.58.dist-info/LICENSE,sha256=wK-Ya7Ylxa38dSIZRhvNj1ZVLIrHC-BAI8v38PNADiA,1061
|
|
177
|
+
fin_infra-0.1.58.dist-info/METADATA,sha256=YnC_rmHC_X1zvZu2BKMVDXDKABUbI5GeODWLWnLXSqQ,10182
|
|
178
|
+
fin_infra-0.1.58.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
|
179
|
+
fin_infra-0.1.58.dist-info/entry_points.txt,sha256=Sr1uikvALZMeKm-DIkeKG4L9c4SNqysXGO_IRF8_9eU,53
|
|
180
|
+
fin_infra-0.1.58.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|