Using Google Finance Package in Python -


i new python. have installed google finance python package via pip.

but try run

import googlefinance 

i error message :-

no module named googlefinance

.

can please me? not sure what's going wrong

works fine me:

richy@cisco → pip install googlefinance collecting googlefinance downloading googlefinance-0.7.tar.gz installing collected packages: googlefinance running setup.py install googlefinance installed googlefinance-0.7  richy@cisco → python python 2.7.9 (default, jan  7 2015, 11:49:12) [gcc 4.2.1 compatible apple llvm 6.0 (clang-600.0.56)] on darwin type "help", "copyright", "credits" or "license" more information. >>> import googlefinance >>> 

could issue related mixing python2 , python3? if want use module (assuming supported) in python3 have use pip3 install it.

richy@cisco → python3 python 3.4.3 (default, feb 25 2015, 21:28:45) [gcc 4.2.1 compatible apple llvm 6.0 (clang-600.0.56)] on darwin type "help", "copyright", "credits" or "license" more information. >>> import googlefinance traceback (most recent call last):   file "<stdin>", line 1, in <module> importerror: no module named 'googlefinance' 

Comments

Popular posts from this blog

python - TypeError: start must be a integer -

c# - DevExpress RepositoryItemComboBox BackColor property ignored -

django - Creating multiple model instances in DRF3 -