mcdallas / wallstreet

Real time stock and option data.
MIT License
1.33k stars 201 forks source link

ModuleNotFound error with options test file #13

Closed isaranjha closed 4 years ago

isaranjha commented 6 years ago

I've installed wallstreet per the instructions with pip and everything seemed to go fine with no errors, but when I run the test files I get:

from wallstreet import wallstreet, blackandscholes ModuleNotFoundError: No module named 'wallstreet'

Ideas?

deragon commented 6 years ago

I guess you must install the modules on your system first by running the provided setup.py script. As a workaround, I ran:

export PYTHONPATH="<wallstreet downloaded path>:${PYTHONPATH}"
python3 test_option.py

However, running this, the following error occurs. It seams that a file is missing from the repository:

ImportError: No module named 'wallstreet.constants'; 'wallstreet' is not a package

BTW, I am not a developer of this module, but a simple user as you. I just wanted to try it, to see if it is still relevant (because APIs on the web change so often these days) and I did not get it working. I am looking elsewhere now. It is version 0.2 and not yet ready for out of the box usage I guess.