pydeflate 2.0.1__tar.gz → 2.0.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.
- {pydeflate-2.0.1 → pydeflate-2.0.2}/PKG-INFO +1 -1
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/__init__.py +1 -1
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/core/exchange.py +0 -2
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pyproject.toml +1 -1
- {pydeflate-2.0.1 → pydeflate-2.0.2}/LICENSE +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/README.md +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/.pydeflate_data/README.md +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/core/__init__.py +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/core/api.py +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/core/deflator.py +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/core/source.py +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/deflate/__init__.py +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/deflate/deflators.py +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/deflate/legacy_deflate.py +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/exchange/__init__.py +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/exchange/exchangers.py +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/pydeflate_config.py +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/settings/emu.json +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/settings/oecd_codes.json +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/sources/__init__.py +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/sources/common.py +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/sources/dac.py +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/sources/imf.py +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/sources/world_bank.py +0 -0
- {pydeflate-2.0.1 → pydeflate-2.0.2}/pydeflate/utils.py +0 -0
|
@@ -37,8 +37,6 @@ class Exchange:
|
|
|
37
37
|
self.exchange_data = self.exchange_rate(
|
|
38
38
|
self.source_currency, self.target_currency
|
|
39
39
|
)
|
|
40
|
-
if self.source_currency == "USA":
|
|
41
|
-
self.exchange_data["pydeflate_EXCHANGE_D"] = 1
|
|
42
40
|
|
|
43
41
|
def _get_exchange_rate(self, currency):
|
|
44
42
|
"""Helper function to fetch exchange rates for a given currency."""
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|