We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm running some python 3 code in a juypter notebook and I tried to to do
from cryptocompy import coin, top top.get_top_coins("USD", 10)
However I'm getting this error.
ModuleNotFoundError Traceback (most recent call last) <ipython-input-30-d1a747a58826> in <module>() 1 import pandas ----> 2 from cryptocompy import coin, top 3 4 top.get_top_coins("USD", 10) ~\Anaconda3\lib\site-packages\cryptocompy\top.py in <module>() 1 # top.py 2 ----> 3 from helper_functions import build_url, load_data 4 5 def get_top_exchanges_by_volume(fsym, tsym, limit=5): ModuleNotFoundError: No module named 'helper_functions'
The text was updated successfully, but these errors were encountered:
Same problem for me, too!
Sorry, something went wrong.
Looking at this, it's an import problem.
In mining.py and top.py (both of which throw the ModuleNotFoundError: No module named 'helper_functions' error, we have:
from helper_functions import build_url, load_data, ...
whereas the others use:
from .helper_functions import build_url, load_data, ...
Editing the import statements to relative imports fixes this for me.
Could the python package be updated with this change?
No branches or pull requests
I'm running some python 3 code in a juypter notebook and I tried to to do
However I'm getting this error.
The text was updated successfully, but these errors were encountered: