Skip to main content

Python client for Interacting with Independent Reserve API - The Bitcoin and Digital Currency Market

Project description

pyindependentreserve

Python3 client for Interacting with Independent Reserve API - The Bitcoin and Digital Currency Market

Install

$ pip install pyindependentreserve

Usage REST API

$ python
>>> import independentreserve as ir
>>> connection = ir.PublicMethods()
>>> connection.get_valid_limit_order_types()
[u'LimitBid', u'LimitOffer'] 

>>> api = PrivateMethods("your_api_key", "your_api_secret")
>>> api.get_open_orders()
{'TotalItems': ... etc

Usage Websocket

pyindependentreserve uses python3 asyncio module to implement a producer consumer pattern to consume messages from the websocket.

Official websocket documentation can be found here

from asyncio.queues import Queue
import websockets
import asyncio
import sys

from independentreserve import wss_subscribe


async def consumer(queue: asyncio.Queue):
    while True:
        item = await queue.get()
        if item is None:
            break
        print("consuming item: {}".format(item))


if __name__ == "__main__":
    try:
        loop = asyncio.get_event_loop()
        queue = asyncio.Queue(1000)
        producer_coroutine = wss_subscribe(queue=queue, channel_name=["ticker-xbt-aud"])
        consumer_coroutine = consumer(queue=queue)
        loop.run_until_complete(asyncio.gather(producer_coroutine, consumer_coroutine))
        loop.close()
    except Exception as error:
        print(error)
        sys.exit(1)

Support

If you like this project and would want to support it please consider taking a look at the issues section at:

Github Issues

or consider donating to

Bitcoin: 1B2kZETHm9tjhPKtCCEo6eWhwT5TfXWE6u Etherium: 0x00912fdef62ab7d9c1cbee712a58105eb1dbd42f BitCash: 1B2kZETHm9tjhPKtCCEo6eWhwT5TfXWE6u

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

pyindependentreserve-0.4.0.tar.gz (11.6 kB view details)

Uploaded Source

Built Distribution

pyindependentreserve-0.4.0-py3-none-any.whl (12.7 kB view details)

Uploaded Python 3

File details

Details for the file pyindependentreserve-0.4.0.tar.gz.

File metadata

  • Download URL: pyindependentreserve-0.4.0.tar.gz
  • Upload date:
  • Size: 11.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for pyindependentreserve-0.4.0.tar.gz
Algorithm Hash digest
SHA256 4d48fa51a4bfd1d095632540fa9cb57af67142e3691a0bcfdd1d3535a85c1076
MD5 8c525f8fa3c8cccc77a2a17f82f34974
BLAKE2b-256 7446a172783248a44e15f99a0134708179d14bbbd39f2cf4f3749b953e51ed22

See more details on using hashes here.

File details

Details for the file pyindependentreserve-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pyindependentreserve-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5f99c511249a57e6ec5c53ea8fe704b486f35ddcabf53fd83cf576e4c447ebc5
MD5 7b1c8cc2841baa82404d1631bbf38406
BLAKE2b-256 86e846f6217131f13f0c9de3a74a9a9fc757881ce317c996226ce0eba074263e

See more details on using hashes here.

Supported by

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