Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mitchellcash/python-paycoinrpc
Python interface to paycoin's JSON-RPC API (forked from python-bitcoinrpc)
https://github.com/mitchellcash/python-paycoinrpc
Last synced: 4 days ago
JSON representation
Python interface to paycoin's JSON-RPC API (forked from python-bitcoinrpc)
- Host: GitHub
- URL: https://github.com/mitchellcash/python-paycoinrpc
- Owner: MitchellCash
- Created: 2015-12-27T10:38:19.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-28T00:28:50.000Z (almost 9 years ago)
- Last Synced: 2024-10-31T02:48:01.112Z (16 days ago)
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
AuthServiceProxy is an improved version of python-jsonrpc.
It includes the following generic improvements:
- HTTP connections persist for the life of the AuthServiceProxy object
- sends protocol 'version', per JSON-RPC 1.1
- sends proper, incrementing 'id'
- uses standard Python json libIt also includes the following paycoin-specific details:
- sends Basic HTTP authentication headers
- parses all JSON numbers that look like floats as DecimalInstallation:
- change the first line of setup.py to point to the directory of your installation of python 2.*
- run setup.pyNote: This will only install paycoinrpc. If you also want to install jsonrpc to preserve
backwards compatibility, you have to replace 'paycoinrpc' with 'jsonrpc' in setup.py and run it again.