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 am getting this error when I try this :
~\home> pypubmed ImportError: cannot import name 'ImpactFactor' from 'impact_factor' (E:\Python\Lib\site-packages\impact_factor_init_.py)
python version 3.11.2
Finally I found the problem.
open pypubmed\core\eutils.py and line 16 changes to:
from impact_factor.core import Factor
line 39 changes to:
IF = ImpactFactor()
then everything works well.
The text was updated successfully, but these errors were encountered:
Thank you for your answer. But a little question is that the line 39 supposed to chenge to: IF = Factor() Then everything be ok.
Sorry, something went wrong.
No branches or pull requests
I am getting this error when I try this :
python version 3.11.2
Finally I found the problem.
open pypubmed\core\eutils.py and line 16 changes to:
from impact_factor.core import Factor
line 39 changes to:
IF = ImpactFactor()
then everything works well.
The text was updated successfully, but these errors were encountered: