-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
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
base 64 deprecation #12
Comments
This has been fixed in feedparser : kurtmckee/feedparser#206 |
Indeed, but my pygooglenews forces me to use the old version of feedparser, it won't start with the new one and the old one gives me the depreciated issue. Looking for a fix
|
You need to update pip install -U --no-deps "feedparser>=6.0.8" Side note: pip install -U --no-deps "dateparser>=1.0.0" |
Using this technique allowed me to install the latest feedparser indeed, but my enviroment dosn't seem to reconise it as I get the following error. I am unsure as to why this is happening as it shows up correctl in 'pip list' |
Can you post the full error traceback and the output of: $ which pip
$ pip show feedparser |
Notice that the first issue means that 'which' is not reconised as a command. |
Are you using PyCharm, VS Code, or Sublime Text, etc.? If you are, then find out how to set your Anaconda Python installation as your interpreter (or "build" if you use sublime text). |
Feedparsr is correctly installed (due to the pip show command) but when importing gets me the error |
Found a temporary fix: |
Try this, it just worked for me now: !pip install "setuptools<58" |
This package depends on
feedparser
, which has an error in this section offeedparser.py
(line 91):This has been deprecated since Python 3.1, but it was completely removed in Python 3.9. This makes it unable to import.
The text was updated successfully, but these errors were encountered: