You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is something inncorrect with the importing of modules,
python3.2
from oauth_hook import OAuthHook
leads to
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/site-packages/requests_oauth-0.4.1-py3.2.egg/oauth_hook/__init__.py", line 1, in <module>
from hook import OAuthHook
ImportError: No module named hook
I tried moving the hook code to the init.py but then the same error comes up with auth.py and just creates more issues.
Also note: I tried it in python3.3 and same issue
from oauth_hook import OAuthHook
File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/site-packages/oauth_hook/__init__.py", line 1, in <module>
from hook import OAuthHook
ImportError: No module named 'hook'
The text was updated successfully, but these errors were encountered:
There is something inncorrect with the importing of modules,
leads to
I tried moving the hook code to the init.py but then the same error comes up with auth.py and just creates more issues.
Also note: I tried it in python3.3 and same issue
The text was updated successfully, but these errors were encountered: