Really nice work! The CSV files are great!
I had a few problems when installing the script (got it to run after fixing them):
-
Matplotlib threw "ModuleNotFoundError: No module named 'matplotlib.finance'". According to their docs it has been moved to its own library called "mpl_finance". Here I had to clone https://github.com/matplotlib/mpl_finance and manually run python setup.py install. Then change the import from matplotlib.finance to from mpl_finance.
-
The import from kraken_data import Kraken threw an error. Copying the file test_kraken_data.py into the data/ directory fixed the issue.
-
The matplotlib lib threw an error with RuntimeError: Python is not installed as a framework .... The fix is to create a configfile with the backend set (https://stackoverflow.com/questions/21784641/installation-issue-with-matplotlib-python)
Really nice work! The CSV files are great!
I had a few problems when installing the script (got it to run after fixing them):
Matplotlib threw
"ModuleNotFoundError: No module named 'matplotlib.finance'". According to their docs it has been moved to its own library called "mpl_finance". Here I had to clone https://github.com/matplotlib/mpl_finance and manually runpython setup.py install. Then change the importfrom matplotlib.financetofrom mpl_finance.The import
from kraken_data import Krakenthrew an error. Copying the filetest_kraken_data.pyinto thedata/directory fixed the issue.The matplotlib lib threw an error with
RuntimeError: Python is not installed as a framework .... The fix is to create a configfile with the backend set (https://stackoverflow.com/questions/21784641/installation-issue-with-matplotlib-python)