You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 12, 2023. It is now read-only.
parser.add_argument('url', type=str, help='The source URL to be added.')
parser.add_argument('-d', '--date', type=str, default=__last_date__, help='The date to which this source URL should be added. Defaults to the latest day in the dataset.')
args = parser.parse_args()
url = args.url
date = args.date
month = date[:7]
data = utilities.data.data_for_month(month)
day_data = [d for d in data if d["date"] == date][0]