We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
site = "https://finance.yahoo.com/quote/" + ticker + "?p=" + ticker
tables = pd.read_html(requests.get(site, headers=headers).text) data = tables[0].append(tables[1]) data.columns = ["attribute" , "value"]
May I ask why an error was reported? Is it a Pandas version issue
The text was updated successfully, but these errors were encountered:
same here :/ as a workaround I downgrade pandas version: pip install --force-reinstall -v "pandas==1.5.3
pip install --force-reinstall -v "pandas==1.5.3
Sorry, something went wrong.
I believe pandas as deprecated DataFrame.append and Series.append and recommend pandas.concat instead.
Successfully merging a pull request may close this issue.
site = "https://finance.yahoo.com/quote/" + ticker + "?p=" + ticker
May I ask why an error was reported? Is it a Pandas version issue
The text was updated successfully, but these errors were encountered: