not working .. have install xero's steem lib....
Traceback (most recent call last):
File "./post_test.py", line 2, in
from steemapi.steemnoderpc import SteemNodeRPC
ImportError: No module named steemapi.steemnoderpc
ubuntu@ubuntu:~/steem/extract$
You need to use "python3".
Have you installed the library for pip3?
Try
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I'm using Windows and had the same problem. For some reason PYTHONPATH didn't have the default directory for all my python packages listed.
At the top of your "post_test.py" file put:
import sys
print(sys.path)
That will tell you what PYTHONPATH is searching through for imports. Use ."append" to add the location of your steemapi folder. For me that was:
import sys
sys.path.append("C:\Python34\Lib\site-packages")
print(sys.path)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit