diff --git a/README.md b/README.md index bc7645edaedbb45dd675a162404bd93cacca0440..882a5fc59208e1da7137813a7280861b6802ff9c 100644 --- a/README.md +++ b/README.md @@ -13,15 +13,16 @@ In order to use the API, you have to first install the required dependencies giv Here is a fast installation procedure (a bit dirty) we suggest to quickly use this API. ```bash -$ cd $HOME +$ mkdir $HOME/ucoin +$ cd $HOME/ucoin $ git clone git@github.com:canercandan/ucoin-python-api.git -$ export PYTHONPATH="$HOME/ucoin-python-api:$PYTHONPATH" +$ export PYTHONPATH="$HOME/ucoin:$PYTHONPATH" ``` Thus you are ready to use it with your own python program. Here is an example illustrating how to use it thanks to the python shell: ```python -In [1]: import ucoin +In [1]: import ucoin-python-api as ucoin In [2]: ucoin.settings['server'] = 'mycurrency.candan.fr'