diff --git a/README.md b/README.md index 1fe8f7d..258d734 100644 --- a/README.md +++ b/README.md @@ -1,22 +1,24 @@ # xi-iot-python-sdk To setup the python sdk for python 3, run following command: - -./setup.sh -3 - -OR +``` +$ ./setup.sh -3 +``` +**OR** To setup the python sdk for python 2, run following command: - -./setup.sh -2 - +``` +$ ./setup.sh -2 +``` To run sample API test app for python3, run following command: +``` +$ python3 ./blog.py +``` -python3 ./blog.py - -OR +**OR** To run sample API test app for python, run following command: - -python ./blog.py +``` +$ python ./blog.py +``