Skip to content
Snippets Groups Projects
Commit 76fad95e authored by Caner Candan's avatar Caner Candan
Browse files

* README

parent 7433db52
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,6 @@ A python implementation of [uCoin](https://github.com/c-geek/ucoin) API ...@@ -6,7 +6,6 @@ A python implementation of [uCoin](https://github.com/c-geek/ucoin) API
In order to use the API, you have to first install the required dependencies given below thanks to pip3: In order to use the API, you have to first install the required dependencies given below thanks to pip3:
* requests * requests
* python-gnupg
##Installation ##Installation
...@@ -15,33 +14,38 @@ Here is a fast installation procedure (a bit dirty) we suggest to quickly use th ...@@ -15,33 +14,38 @@ Here is a fast installation procedure (a bit dirty) we suggest to quickly use th
```bash ```bash
$ mkdir $HOME/ucoin $ mkdir $HOME/ucoin
$ cd $HOME/ucoin $ cd $HOME/ucoin
$ git clone git@github.com:canercandan/ucoin-python-api.git ucoinpy $ git clone git@github.com:ucoin-io/ucoin-python-api.git ucoinpy
$ export PYTHONPATH="$HOME/ucoin:$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: 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 ```python
In [1]: import ucoinpy In [1]: import ucoinpy as upy
In [2]: ch = upy.ConnectionHandler('ucoin.twiced.fr', 9101)
In [2]: ucoinpy.ucg.Peering(server='mycurrency.candan.fr').get() In [3]: upy.blockchain.Block(ch, 3).get()
Out[2]: Out[3]:
{'contract': {'currentNumber': '5', {'membersChanges': [],
'hash': 'FB710AE30F843BF505ABF9DE8CF404B7F35D238A'}, 'number': 3,
'currency': 'mycurrency', 'nonce': 1,
'key': '6282C3F765E560992113137AD149AFF1B07FF751', 'hash': '09813779721C1C6246DC54D2923B1AEEEDD792EF',
'merkles': {'hdc/amendments/current/votes': {'depth': 1, 'previousHash': '09B4C743268C36C59FEA30D3E8D81A4440A80981',
'leavesCount': 2, 'certifications': ['HnFcSms8jzwngtVomTTnzudZx7SHUQY8sVE1y8yBmULk:C4LcanvvGPwuJZofxRun6maux2qBLh2MTyq7rHnm24hD:1411716383:SajvOOKQ4DGG5IJKq3VK/BUxfVP4mRtcuYFx2Q2a2GPXbTrXAuWExiMlnctCO4zx8wgqWIyiS7X6CHkFEooeCA==',
'nodesCount': 1, 'C4LcanvvGPwuJZofxRun6maux2qBLh2MTyq7rHnm24hD:HnFcSms8jzwngtVomTTnzudZx7SHUQY8sVE1y8yBmULk:1411688856:kHYXaHZgYIdtDWpticJ+7wHI12onU74PgzeDSzpz1WDu1Xu+Oj5EexwxbO+bhWuiUqUJ4OjfMm6mHD+AWPUhBg=='],
'root': '2CEC90DEBBB89C10B6AB5EAEF17FF1D0BA8B4346'}, 'signature': 'H+ZR3b+Y39b/gq59rjedQV89x991+B46C76CfG6STEdjADRU/BKgZ+UFEW04oblzbxmAYNvBXZw5vLoJYnzeAA==',
'pks/all': {'depth': 2, 'previousIssuer': 'HnFcSms8jzwngtVomTTnzudZx7SHUQY8sVE1y8yBmULk',
'leavesCount': 4, 'timestamp': 1411709213,
'nodesCount': 3, 'fees': None,
'root': '944D0A3A0593C4B627BA41F0454BB4A705918CE9'}}, 'currency': 'beta_brousouf',
'remote': {'host': 'mycurrency.candan.fr', 'joiners': ['C4LcanvvGPwuJZofxRun6maux2qBLh2MTyq7rHnm24hD:CU8WNYGhOArn7aBCTvFb/rW9O+BpRSZcAfyVvynp+cWy5pFY1Ds7TtR/+fnwN35ub3garv1q6bKBsWt2yWegBA==:1411681631'],
'ipv4': '62.210.131.202', 'excluded': [],
'ipv6': '', 'version': 1,
'port': 8081}} 'transactions': [],
'identities': ['C4LcanvvGPwuJZofxRun6maux2qBLh2MTyq7rHnm24hD:CfC4O5IfW/01TZD3zxTzZfDllPZrpV44iFq/1T6D1mcUJfK7IDildLkqkI6W6/Hu/b5gU9QcJdnDFZh6WlmSDQ==:1411681459:moshe'],
'leavers': [],
'dividend': None,
'issuer': 'HnFcSms8jzwngtVomTTnzudZx7SHUQY8sVE1y8yBmULk',
'membersCount': 4}
``` ```
Please take a look at the document [HTTP API](https://github.com/c-geek/ucoin/blob/master/doc/HTTP_API.md) to learn about the API. Please take a look at the document [HTTP API](https://github.com/c-geek/ucoin/blob/master/doc/HTTP_API.md) to learn about the API.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment