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
I've been using this code with no issues until recently. When I run the ChartData function I get the error below:
`import pandas as pd import numpy as np import billboard import time import datetime
today = datetime.datetime.now()
artists = [] songs = [] dates = [] positions = [] chart = billboard.ChartData('billboard-200') KeyError: 'data-previous-chart-date'`
Even when I include a date, the same error occurs:
>>> chart = billboard.ChartData('billboard-200','2019-01-07') KeyError: 'data-previous-chart-date'
`
The text was updated successfully, but these errors were encountered:
The code is working for me... What version of the billboard module you are using?
Sorry, something went wrong.
No branches or pull requests
I've been using this code with no issues until recently. When I run the ChartData function I get the error below:
`import pandas as pd
import numpy as np
import billboard
import time
import datetime
today = datetime.datetime.now()
artists = []
songs = []
dates = []
positions = []
chart = billboard.ChartData('billboard-200')
KeyError: 'data-previous-chart-date'`
Even when I include a date, the same error occurs:
>>> chart = billboard.ChartData('billboard-200','2019-01-07') KeyError: 'data-previous-chart-date'
`
The text was updated successfully, but these errors were encountered: