This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rhettinger
Recipients marikasakowa, paul.moore, rhettinger, serhiy.storchaka, steve.dower, tim.golden, zach.ware
Date 2021-04-08.19:58:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1617911923.21.0.878149456232.issue43775@roundup.psfhosted.org>
In-reply-to
Content
> Two days ago everything worked completely fine, 
> and now this disaster happens.

It's unlikely that Python itself changed over those two days. It's more likely that the data source has changed.

Try this in your notebook:

    import requests
    r = requests.get('https://api.github.com/users/gvanrossum')
    print(r.status_code)
    print(r.headers['Content-Type'])
    print(r.json())

If that works, try it with your url.  If the content-type is not 'application/json; charset=utf-8', then you've identified a problem with the data source rather than with the tooling.
History
Date User Action Args
2021-04-08 19:58:43rhettingersetrecipients: + rhettinger, paul.moore, tim.golden, zach.ware, serhiy.storchaka, steve.dower, marikasakowa
2021-04-08 19:58:43rhettingersetmessageid: <1617911923.21.0.878149456232.issue43775@roundup.psfhosted.org>
2021-04-08 19:58:43rhettingerlinkissue43775 messages
2021-04-08 19:58:43rhettingercreate