Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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)

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 lib

It also includes the following paycoin-specific details:

- sends Basic HTTP authentication headers
- parses all JSON numbers that look like floats as Decimal

Installation:

- change the first line of setup.py to point to the directory of your installation of python 2.*
- run setup.py

Note: 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.