diff --git a/README.rst b/README.rst index c6ee30a..ed6e6a1 100644 --- a/README.rst +++ b/README.rst @@ -62,15 +62,22 @@ Example Usage print client.sell('DOGE', 0.3, 0.00024) - # Donate a craptonne of Dogecoins to the author of this library! Much Appreciate!!! - print client.send('DOGE', 'DJrHRxurwQoBUe7r9RsMkMrTxj92wXd5gs', 10000) Send Dogecoins of appreciation ============================== -If you like this software, you can always sling me some Doges to: +If you like this software, you can always send cold hard cryptocoin my way + +Dogecoin: DJrHRxurwQoBUe7r9RsMkMrTxj92wXd5gs + +Bitcoin: 1LybpYphZJqSAxjNFqjfYHB8pWxKcBmFkf + +You can do this using the library like this: -DJrHRxurwQoBUe7r9RsMkMrTxj92wXd5gs +:: + + # Donate a craptonne of Dogecoins to the author of this library! Much Appreciate!!! + print client.send('DOGE', 'DJrHRxurwQoBUe7r9RsMkMrTxj92wXd5gs', 10000) License diff --git a/bin/example.py b/bin/example.py index f5214ca..d9c8bc5 100644 --- a/bin/example.py +++ b/bin/example.py @@ -33,4 +33,4 @@ #print client.quotebuy('DOGE', 1000000000) # Donate a craptonne of Dogecoins to the author of this library! Much Appreciate!!! -#print client.send('DOGE', 'DJrHRxurwQoBUe7r9RsMkMrTxj92wXd5gs', 10000) \ No newline at end of file +print client.send('DOGE', 'DJrHRxurwQoBUe7r9RsMkMrTxj92wXd5gs', 1000) \ No newline at end of file diff --git a/coinspot/__init__.py b/coinspot/__init__.py index 50b87b0..82b77b0 100644 --- a/coinspot/__init__.py +++ b/coinspot/__init__.py @@ -1,6 +1,6 @@ #!/usr/bin/python __author__ = 'Peter Dyson ' -__version__ = '0.1.0' +__version__ = '0.1.1' __license__ = 'GPLv3' __source__ = 'http://github.com/geekpete/py-coinspot-api/coinspot.py' diff --git a/setup.py b/setup.py index 049c18f..b142f90 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # http://packaging.python.org/en/latest/tutorial.html#version - version='0.1.0', + version='0.1.1', description='A python library for the Coinspot API', long_description='py-coinspot-api is a library to interface with the Coinspot cryptocurrency trading API.',