Mobius Python API Client
Project description
The Mobius Python Client provides simple access to the Mobius API for applications written on Python
Installation
Install the package with pip:
$ pip install pymobius
Usage
For importing library use:
from pymobius import Mobius
The library need to be configured with your API secret key which you can create in Mobius DApp Store
mobius = Mobius(api_key='your_api_key')
Examples
data = mobius.app_store.balance(app_uid='f9e5e943', email='mail@example.com')
if data['num_credits'] > 0:
mobius.app_store.use(app_uid='f9e5e943', email='mail@example.com', num_credits=1)
Methods
mobius.app_store.balance(app_uid, email)
Get balance of credits for email.
mobius.app_store.use(app_uid, email, num_credits)
Use numCredits from user with email.
mobius.tokens.register(token_type, name, symbol, address)
Register a token.
mobius.tokens.balance(token_uid, address)
Query the number of tokens specified by the token.
mobius.tokens.create_address(token_uid, managed)
Create an address for the token.
mobius.tokens.register_address(token_uid, address)
Register an address for the token.
mobius.tokens.transfer_managed(token_address_uid, address_to, num_tokens)
Transfer tokens from a Mobius managed address to a specified address.
mobius.tokens.transfer_info(token_address_transfer_uid)
Get the status and transaction hash of a Mobius managed token transfer.
More information
See the REST API docs
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pymobius-1.0.1.tar.gz
.
File metadata
- Download URL: pymobius-1.0.1.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 285a52ebd12acec7670ef57c4327e148cbbcbb61a0451be3a255f7964fb5dd17 |
|
MD5 | 2981c4e8e8b416755d9f4254a9c5152f |
|
BLAKE2b-256 | c5c24623d05157d2c1e97788b88db4630dd80f674b6c87709bbfbb5920144070 |