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
case 1: raised ERROR if call chikkarpy.dictionarylib
chikkarpy.dictionarylib
$ pip install chikkarpy $ python >>> import chikkarpy >>> chikkarpy.dictionarylib Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: module 'chikkarpy' has no attribute 'dictionarylib'
case 2: pass if use from chikkarpy import dictionarylib
from chikkarpy import dictionarylib
$ pip install chikkarpy $ python >>> from chikkarpy import dictionarylib >>> dictionarylib <module 'chikkarpy.dictionarylib' from '/usr/local/lib/python3.7/dist-packages/chikkarpy/dictionarylib/__init__.py'>
case 3: pass if call chikkarpy.dictionarylib AFTER from chikkarpy import dictionarylib
$ pip install chikkarpy $ python >>> import chikkarpy >>> from chikkarpy import dictionarylib >>> chikkarpy.dictionarylib <module 'chikkarpy.dictionarylib' from '/usr/local/lib/python3.7/dist-packages/chikkarpy/dictionarylib/__init__.py'>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
case 1: raised ERROR if call
chikkarpy.dictionarylib
case 2: pass if use
from chikkarpy import dictionarylib
case 3: pass if call
chikkarpy.dictionarylib
AFTERfrom chikkarpy import dictionarylib
The text was updated successfully, but these errors were encountered: