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
{{ message }}
This repository was archived by the owner on May 4, 2021. It is now read-only.
tutum.user = myuser(my tutum user name)
tutum.apikey = mykey(my api key from tutum)
actions = tutum.Action.list()
print actions;
if i run this file using python test-tutum.py it shows me eorrs:
File "/home/developer/.local/lib/python2.7/site-packages/tutum/init.py", line 7, in
install_aliases()
File "/home/developer/.local/lib/python2.7/site-packages/future/standard_library/init.py", line 483, in install_aliases
import test
File "/home/developer/Desktop/python/tutum/test.py", line 24, in
actions = tutum.Action.list()
AttributeError: 'module' object has no attribute 'Action'
Hi There,
I have installed python-tutum.
I have written a file test-tutum.py:
import tutum
tutum.user = myuser(my tutum user name)
tutum.apikey = mykey(my api key from tutum)
actions = tutum.Action.list()
print actions;
if i run this file using python test-tutum.py it shows me eorrs:
File "/home/developer/.local/lib/python2.7/site-packages/tutum/init.py", line 7, in
install_aliases()
File "/home/developer/.local/lib/python2.7/site-packages/future/standard_library/init.py", line 483, in install_aliases
import test
File "/home/developer/Desktop/python/tutum/test.py", line 24, in
actions = tutum.Action.list()
AttributeError: 'module' object has no attribute 'Action'
Could you please help me out.
Thanks in advance!