This commit is contained in:
Chris Berkhout 2021-06-04 21:57:40 +02:00
parent 2f3578c989
commit 7dee55fa17
3 changed files with 4 additions and 3 deletions

View file

@ -1,5 +1,5 @@
import logging
from datetime import datetime, date, timedelta
from datetime import date, datetime, timedelta
def fetch(series, source, output, invert: bool, quantize: int, fmt) -> str:

View file

@ -1,4 +1,5 @@
""" ISO 4217 Currency data
"""
ISO 4217 Currency data
Provides `ISO 4217 <https://www.iso.org/iso-4217-currency-codes.html>`_
currency data in a ready-to-use format, indexed by currency code. Historical

View file

@ -1,9 +1,9 @@
import csv
import dataclasses
from datetime import datetime, timedelta
import json
import logging
import os
from datetime import datetime, timedelta
from decimal import Decimal
import requests