quandl

Could not find a version that satisfies the requirement numpy == 1.9.3

泪湿孤枕 提交于 2019-12-07 07:58:56
问题 Trying to install quandl and need pandas, so I try pip install pandas and get: Could not find a version that satisfies the requirement numpy==1.9.3 (from versions: 1.10.4, 1.11.0, 1.11.1rc1, 1.11.1, 1.11.2rc1, 1.11.2, 1.11.3, 1.12.0b1, 1.12.0rc1, 1.12.0rc2, 1.12.0, 1.12.1rc1, 1.12.1, 1.13.0rc1, 1.13.0rc2, 1.13.0, 1.13.1, 1.13.3, 1.14.0rc1, 1.14.0, 1.14.1, 1.14.2) No matching distribution found for numpy==1.9.3. I'm using python 3.4, win32 I am very new to this, thanks for helping 回答1: The

Could not find a version that satisfies the requirement numpy == 1.9.3

我怕爱的太早我们不能终老 提交于 2019-12-05 13:22:20
Trying to install quandl and need pandas, so I try pip install pandas and get: Could not find a version that satisfies the requirement numpy==1.9.3 (from versions: 1.10.4, 1.11.0, 1.11.1rc1, 1.11.1, 1.11.2rc1, 1.11.2, 1.11.3, 1.12.0b1, 1.12.0rc1, 1.12.0rc2, 1.12.0, 1.12.1rc1, 1.12.1, 1.13.0rc1, 1.13.0rc2, 1.13.0, 1.13.1, 1.13.3, 1.14.0rc1, 1.14.0, 1.14.1, 1.14.2) No matching distribution found for numpy==1.9.3. I'm using python 3.4, win32 I am very new to this, thanks for helping The current quandl is more generous in its requirements: https://pypi.python.org/pypi/Quandl Requires Distributions

import error; no module named Quandl

佐手、 提交于 2019-12-05 12:35:33
问题 I am am trying to run the Quandl module on a virtualenv which I have uninstalled packages only pandas and then Quandl, I am running Python 2.7.10 - I have uninstalled all other python versions, but its still giving me the issue of 'ImportError: No module named Quandl'. Do you know what might be wrong? Thanks 回答1: Try with lower case, import is case sensitive and it's as below: import quandl Did you install with pip? If so ensure quandl is among the listed installed modules with pip list

import error; no module named Quandl

限于喜欢 提交于 2019-12-03 23:57:38
I am am trying to run the Quandl module on a virtualenv which I have uninstalled packages only pandas and then Quandl, I am running Python 2.7.10 - I have uninstalled all other python versions, but its still giving me the issue of 'ImportError: No module named Quandl'. Do you know what might be wrong? Thanks Try with lower case, import is case sensitive and it's as below: import quandl Did you install with pip? If so ensure quandl is among the listed installed modules with pip list Otherwise try help('modules') To make sure it was installed properly. If you don't see quandl listed , try to

Web scraping of key stats in Yahoo! Finance with R

自作多情 提交于 2019-11-30 07:52:26
问题 Is anyone experienced in scraping data from the Yahoo! Finance key statistics page with R? I am familiar scraping data directly from html using read_html , html_nodes() , and html_text() from rvest package. However, this web page MSFT key stats is a bit complicated, I am not sure if all the stats are kept in XHR, JS, or Doc. I am guessing the data is stored in JSON. If anyone knows a good way to extract and parse data for this web page with R, kindly answer my question, great thanks in

Web scraping of key stats in Yahoo! Finance with R

孤街浪徒 提交于 2019-11-29 05:22:07
Is anyone experienced in scraping data from the Yahoo! Finance key statistics page with R? I am familiar scraping data directly from html using read_html , html_nodes() , and html_text() from rvest package. However, this web page MSFT key stats is a bit complicated, I am not sure if all the stats are kept in XHR, JS, or Doc. I am guessing the data is stored in JSON. If anyone knows a good way to extract and parse data for this web page with R, kindly answer my question, great thanks in advance! Or if there is a more convenient way to extract these metrics via quantmod or Quandl , kindly let me

Alternatives to the Yahoo Finance API? [closed]

拟墨画扇 提交于 2019-11-28 03:49:51
Yahoo finance recently discontinued their API. I have been looking for alternatives. The ones I've found so far are Google Finance and Quandl. Google Finance was deprecated in 2011 but still appears to work somewhat. However, there is little to no documentation, and I need to pull dividend data which I was unable to find. Quandl appears to work well but the data is spread across multiple databases which makes getting appropriate access timely and costly. Does anyone know of any other viable alternatives? Alpha Vantage have real-time intraday as well as historical daily time series in JSON

python module not found error

被刻印的时光 ゝ 提交于 2019-11-27 08:39:12
问题 This question has been asked a few times, but the remedy appears to complicated enough that I'm still searching for a user specific solution. I recently installed Quandl module using pip command. Even after successful installation my python idle is still showing Traceback (most recent call last): File "F:\Python36\Machine Learning\01.py", line 3, in <module> import Quandl ModuleNotFoundError: No module named 'Quandl' I have used import command in my code. I am using python 3.6.1 version. I am

Alternatives to the Yahoo Finance API? [closed]

谁说胖子不能爱 提交于 2019-11-27 00:11:35
问题 Yahoo finance recently discontinued their API. I have been looking for alternatives. The ones I've found so far are Google Finance and Quandl. Google Finance was deprecated in 2011 but still appears to work somewhat. However, there is little to no documentation, and I need to pull dividend data which I was unable to find. Quandl appears to work well but the data is spread across multiple databases which makes getting appropriate access timely and costly. Does anyone know of any other viable

Alternative to google finance api [closed]

梦想与她 提交于 2019-11-26 02:21:59
I wanted to use Google Finance API to get stock data about the company but this API is deprecated since 2011/26/05. What do you use as free API to get stock data in real time? Updating answer a bit 1. Try Alpha Vantage API For beginners you can try to get a JSON output from query such as https://www.alphavantage.co/query?function=TIME_SERIES_DAILY&symbol=MSFT&apikey=demo DONT Try Yahoo Finance API (it is DEPRICATED or UNAVAILABLE NOW). Here is a link to previous Yahoo Finance API discussion on StackOverflow . Here's an alternate link to Yahoo Finance API posted on Google Code. For beginners,