dogecoin-python is a fork of bitcoin-python : https://github.com/laanwj/bitcoin-python
It is a set of Python libraries that allows easy access to the dogecoin peer-to-peer cryptocurrency client API.
The documentation for bitcoin-python can be found here (or built from sources) :
http://jcsaaddupuy.github.io/dogecoin-python/doc/index.html
dogecoin-python uses setuptools for the install script. There are no dependencies apart from Python itself.
$ python setup.py build $ python setup.py install
It is possible to install the package through Pypi (cheeseshop), see http://pypi.python.org/pypi?:action=display&name=dogecoin-python
$ pip install dogecoin-python # if not working, try $ pip install --pre dogecoin-python
If you want to connect to dogecoin-qt, add server=1 in your dogecoin.conf
rpcuser=dogecoinrpc rpcpassword=A RANDOM GENERATED PASSWORD server=1
These things still have to be added:
- SSL support (including certificate verification) for managing remote dogecoin daemons.