Skip to main content

pyDuinoCoin is a simple python integration for the DuinoCoin REST API, that allows developers to communicate with DuinoCoin Master Server.

Project description

PyDuinoCoin

Build Status

PyDuinoCoin is a simple python integration for the DuinoCoin REST API, that allows developers to communicate with DuinoCoin Main Server.

Install

PyDuinoCoin is available on the Python Package Index (PyPI): https://pypi.python.org/pypi/pyduinocoin

You can install PyDuinoCoin using pip.

$ pip install pyduinocoin

Making queries

You can use the DuinoClient object instance to perform queries.

Most methods of the DuinoClient class have the same name as the REST API endpoints.

Check out the REST API Documentation: https://github.com/revoxhere/duco-rest-api

All responses will return a DictObj object or a list object. All dict objects in the response will be transformed into DictObj. You can access to the data of a DictObj object as you would with a dict object, or do it through the attributes. An example to illustrate this:

client = DuinoClient()
response = client.user('example')

# It is the same::
for response['balance']['username']
for response.balance['username']
for response['balance'].username
for response.balance.username # I love this one

# DictObj is iterable:
for key, value in response.items():
    print(key)
    print(value)

Examples

Usage examples can be found in the /examples folder of the project

Tests

You can run the tests via the command line.

Place your terminal at the root of the project and run the following command.

$ python -m unittest discover tests "*_test.py"

Greetings

@revoxhere by duco-rest-api for the REST API documented. @dansinclair25 by duco-rest-api for the original REST API.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyduinocoin-1.0.4.tar.gz (4.3 kB view details)

Uploaded Source

File details

Details for the file pyduinocoin-1.0.4.tar.gz.

File metadata

  • Download URL: pyduinocoin-1.0.4.tar.gz
  • Upload date:
  • Size: 4.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.9.0

File hashes

Hashes for pyduinocoin-1.0.4.tar.gz
Algorithm Hash digest
SHA256 b837c2099769520ef0db534b4e65ec476c3abdf20ce7d2815bdfa837c89faf30
MD5 7a58205be480dfcfe879563905668a39
BLAKE2b-256 e8070aac479489f9fdc19d7cc8ea39b4d327bab98a17fc0f78be7987a6545f06

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page