Skip to main content

An unofficial python library for communication with the Atomars and Alterdice exchanges API

Project description

Python3.6

This is an unofficial python API for Atomars and Alterdice exchanges.

Install

Install using pip

$ pip install atom-alter-api

Usage

Note: Many of the functions in the API are async. So you have to use await or ensure_future etc… To use the API in another python program, first import asyncio and the API, then login using your username and password, then call whatever function you would like. Because the API is asyncio, we will need to do this within a class so that we can “await” for functions to complete. Here is a simple example to get the balances:

import asyncio
from atom_alter_API.api import AtomarsAlterdiceAPI

class TestClass():

    def __init__(self):
        self.api = AtomarsAlterdiceAPI(API_login_username, API_login_password)

    async def run(self):
        await self.api.login()
        balances = await self.api.get_balances()
        print(balances)

if __name__ == "__main__":

    testClass = TestClass()
    asyncio.ensure_future(testClass.run())

    loop = asyncio.get_event_loop()
    loop.run_forever()
    loop.close()

See the docs folder for more info. Also see tests for some more code examples.

Install for development

  1. Clone this repo

    $ cd ~/
    $ git clone https://github.com/hyperevo/Atomars-alterdice-API
  2. Install using pip

    $ cd Atomars-alterdice-API
    $ pip3 install -e .

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

atom_alter_api-0.1.4.tar.gz (7.9 kB view hashes)

Uploaded Source

Built Distribution

atom_alter_api-0.1.4-py3-none-any.whl (10.4 kB view hashes)

Uploaded Python 3

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