Hi guys!!....
So, this is the first tutorial in which we are going to install the steem-py in our system.
Install 'Git' and get access from command prompt (cmd). Download from here.
Go to the required drive/directory, where steem-python is to be installed using command prompt (cmd).
## For windows, suppose go to E:\ drive (cmd is not case-sensitive)
$ E:
$ git clone https://github.com/steemit/steem-python
$ cd steem-python
$ python setup.py install
Hence, The tool is installed successfully!!...
Now, let's check if it is working.
For this, we follow some basic examples from here
# first, we initialize Steem class
from steem import Steem
s = Steem()
# check @ned's balance
>>> s.get_account('ned')['sbd_balance']
'980.211 SBD'
That's all.