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
PyCharm can add missing imported package to setup.py or requirements.txt file automaticly .
setup.py
requirements.txt
If package name is dohq-confluence in pypi, but from confluence import Confuence, PyCharm can't do it.
dohq-confluence
from confluence import Confuence
Name confluence also used in other confluence-python package:
confluence
So, we need rename package to dohq_confluence
DoD: User can from dohq_confluence import Confuence
from dohq_confluence import Confuence
The text was updated successfully, but these errors were encountered:
vasokot
No branches or pull requests
PyCharm can add missing imported package to
setup.py
orrequirements.txt
file automaticly .If package name is
dohq-confluence
in pypi, butfrom confluence import Confuence
, PyCharm can't do it.Name
confluence
also used in other confluence-python package:So, we need rename package to dohq_confluence
DoD:
User can
from dohq_confluence import Confuence
The text was updated successfully, but these errors were encountered: