kotartemiy / pygooglenews

If Google News had a Python library
https://newscatcherapi.com
MIT License
1.26k stars 134 forks source link

Bumped Up Feed Parser Depreciation For Higher Python Versions #38

Open adgsenpai opened 1 year ago

adgsenpai commented 1 year ago

From the docs for Python 3.8, base64.decodestring() is described as a:

Deprecated alias of `decodebytes()`

It looks like the base64.decodestring() function has been deprecated since Python 3.1, and removed in Python 3.9. You will want to use the base64.decodebytes() function instead.

So bumping up Feed Parser fixes this error!