quandl / quandl-python

MIT License
1.38k stars 338 forks source link

Fix setup.py (pip can't install dependencies if __init__.py imports them) #33

Closed hobson closed 9 years ago

hobson commented 9 years ago

Deleted all init.py imports. I'm sure this breaks code that does from Quandl import * but that shouldn't be done. Not from Quandl import push, ... still works My code works (which imports Quandl through ConcurrentPandas) And my code can now deploy to heroku through codeship (both of which install dependencies using setup.py and pip)

hobson commented 9 years ago

This is intended to Fix Issue #32 Not sure how to assign an issue to a PR on github.

hhsieh commented 8 years ago

Hi I have a similar issue. I have an app that uses Quandl. Before I followed the steps on deploying on Heroku, everything worked fine. I had a nice stock query system allowing users to select stock ticker and visuazling a graph of stock price. However, after I followed the steps about app deployment, Quandl broke, and it seems it broke entirely -- now I cannot run it at all and the terminal appears "ImportError: no module named Quandl". Even though that I reinstalled it, it still doesn't work. I am not sure how to fix this. Could someone help me? Thank you very much!!!