-
Notifications
You must be signed in to change notification settings - Fork 683
New issue
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
Yahoo returning: pandas_datareader._utils.RemoteDataError: Unable to read URL: #170
Comments
I tried in two different networks still getting the same error, so it's no a network block |
It works fine on my side. Feel free to reopen if you still facing this issue. |
startDate = datetime.datetime(2016, 8, 15)
endDate = datetime.datetime(2016, 8, 17)
tt = web.DataReader("SHA:600936", 'google', startDate, endDate)
not working for me |
Hello, Please use 3 backquotes for code in GitHub https://help.github.com/articles/creating-and-highlighting-code-blocks/ Kind regards |
Looks like another user has encountered this error: http://stackoverflow.com/questions/42333827/error-scraping-data-from-yahoo-finance |
It started working again! I did not have to do anything about it. Thank you! |
NO. it happens again. Both yahoo and google is NOT working now. |
Hey everyone, So I was looking into this, and came up with the hackiest solution ever. BRK-B and BF-B were listed on wikipedia as BRK.B and BF.B, respectively. A lot of people were scraping the ticker list directly from Wikipedia, so I edited the names to line up with Yahoo and everything is working for me now! |
Still not working. The issue happens occasionally. |
did anyone get any solution? I've created a script to download historical data for a bunch of stocks. RemoteDataError: Unable to read URL: https://query1.finance.yahoo.com/v7/finance/download/BAC?period1=1427826600&period2=1522693800&interval=1d&crumb=b2hWv%5Cu002F6x.l2&events=history agreed to @arkilis |
Facing this problem in 2021 july Now |
how long does it usually take to get back to working again? |
can't believe it worked ever? |
The following version should still work Edit: forgot to change something in the first version. This one works for me at least
|
its still down :( |
How much time does it take still down!!!!!!!!!!!!! |
Still down right?? |
Yes, Still Down |
seems like the wait is forever |
mine is still down!! |
I download the dataset from yahoo finance as a workaround if this helps anyone here |
wow! the code AndrianAru posted worked! |
Does anyone know how to write AndrianAru's code to CSV? Thank you! I tried this, but it didn't work... sp500[["Adj Close"]].to_csv (r'C:\Users\j\export_dataframe.csv') |
|
Thank you AndrianAru & gho21. It worked! |
Anybody able to get todays data(7/2/2021) using yf?? |
kindly please let me know if anyone able to extract todays data from yf ?? |
As AndrianAru & gho21 pointed out before, you can try using this. In my case everything worked fine with this codeline:
|
Pulling data for baba getting this error from yesterday. Can anyone help me? |
Try the AndrianAru solution (the problem is the date format): import yfinance as yf yf.pdr_override() start_date = '01-01-2010' start = datetime.strptime(start_date, '%d-%m-%Y') |
TKS a lot. it can work. |
Had exact same issue as above and this seems to work! Right now, at least |
I am getting the same error. Is this service down now? |
Code by AndrianAru is working fine. Try with that one! |
hope AndrianAru's code dosent stop working too |
Code by AndrianAru did not work for me - Below code did thoug: import yfinance as yf import pandas as pd data = yf.download("Ticker_Symbol", period ="1d") |
@ithotline try the code below, because without the "tail" its returning two lines, I test it in google colab and works fine data = yf.download("AAPL", period ="1d").tail(1) |
Please read the stack trace... Our engineers are working quickly to resolve the issue. |
yfinance is not working for me. Is it working for anyone?? |
Yes, it is working for me
…On Fri, 9 Jul 2021, 10:39 pm abdulvaseem123, ***@***.***> wrote:
yfinance is not working for me. Is it working for anyone??
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#170 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AUXF22KOHWDJ4VEHYBROU7DTW4ULRANCNFSM4B2XVQSA>
.
|
Yfinance not working for me too |
U talking about yfinance or yahoo finance ? |
It was working until today, but it doesn't work now. Is it the same for you? |
bad news, as same as me, what's going on? |
raise JSONDecodeError("Expecting value", s, err.value) from None |
same issue as rizkiyansyah |
solved by pip install yfinance --upgrade |
yes, it can work. TKS a lot |
I have tried all suggestions, still down on my side :( Pls Help |
What version are you using? Run
|
Send your code here I'll try to help |
Pandas_datareader don't work anymore. ... That's done fam |
0.10.0 was released yesterday with support for Yahoo fixed. |
Thanks, that seems to have fixed the problem :D appreciate the help |
I always use the call to the service like this:
Today I'm getting:
Is yahoo off?
from google finance it comes ok.
Thanks
The text was updated successfully, but these errors were encountered: