You are viewing a single comment's thread from:

RE: Python STEEM 0.4.0 - Massive changes to greatly simplify onboarding - Merged Steemtools

in #steem8 years ago

Always great to see the work you are doing for the platform!

I JUST got a Raspberry Pi 3 Monday, and installed Piston on it. I wrote a few test programs to interact with steem; very cool and fun!

So do I need to do
pip3 install --upgrade steem
or not? I'm not sure! :-)

Sort:  

If all works fine, you don't need to. It's just a bit nicer.
You will also see a new release of piston quite soon.

Once you updated piston, you will probably see a couple warning messages. That is because most of piston's "library"-sh functions have been moved to python-steem. You can upgrade you code afterwards by simply replacing

from piston.XXXXX import YYYYYY

to

from steem.XXXXXX import YYYYY