Skip to main content

aori.io python sdk

Project description

Aori Python SDK

The Aori Python SDK provides a convenient interface for interacting with the Aori API, allowing developers to easily integrate Aori's functionalities into their Python applications.

Features

  • Authentication with API keys
  • Operations for orders: create, take, cancel
  • Viewing and subscribing to orderbook updates
  • Requesting quotes for potential orders

Installation

To install the Aori Python SDK, run the following command:

pip install your_package_name

Replace your_package_name with the actual name of your package.

Configuration

Before using the SDK, you need to configure it with your Aori API key and private key. There are two ways to do this:

Using Environment Variables

  1. Create a .env file in your project root.
  2. Add your Aori API key and private key to the .env file as shown in the .env.example file:
AORI_API_KEY=your_aori_api_key_here
PRIVATE_KEY=your_private_key_here
  1. Load the environment variables in your application:
from dotenv import load_dotenv
load_dotenv()
  1. Initialize the SDK:
from aori_sdk import AoriSDK

sdk = AoriSDK()

Passing Directly

Alternatively, you can pass your API key and private key directly when creating an instance of the SDK:

from aori_sdk import AoriSDK

sdk = AoriSDK(api_key='your_aori_api_key_here', private_key='your_private_key_here')

Usage

Here are some examples of how to use the Aori Python SDK:

Test Connectivity

connectivity_response = sdk.test_connectivity()
print(connectivity_response)

Create a New Order

from aori_sdk import AoriOrder

new_order = AoriOrder(
    offerer="0x...",
    inputToken="0x...",
    inputAmount="1000000000000000000",  # 1 Token in Wei
    inputChainId=1,
    inputZone="0x...",
    outputToken="0x...",
    outputAmount="500000000000000000",  # 0.5 Token in Wei
    outputChainId=1,
    outputZone="0x...",
    startTime="1622548800",
    endTime="1625130800",
    salt="123456789",
    counter=0,
    toWithdraw=False,
    signature="0x...",
    isPublic=True
)

order_response = sdk.make_order(new_order)
print(order_response)

Subscribe to Orderbook Updates

sdk.subscribe_orderbook()

Contributing

Contributions are welcome! Please feel free to submit a pull request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

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

aori-sdk-py-0.2.tar.gz (3.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aori_sdk_py-0.2-py3-none-any.whl (3.0 kB view details)

Uploaded Python 3

File details

Details for the file aori-sdk-py-0.2.tar.gz.

File metadata

  • Download URL: aori-sdk-py-0.2.tar.gz
  • Upload date:
  • Size: 3.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for aori-sdk-py-0.2.tar.gz
Algorithm Hash digest
SHA256 855c9224ffe6632d078b9723cfb0fa014271bd508b77e6db3f965631b7b3f318
MD5 ebeefc80f0de7ec7a1bd118e9a3d15b6
BLAKE2b-256 cbd2fe54e4f799fcbb24ebd6729f1204d27edb6b2a5540a2f6a6a12e431f9e22

See more details on using hashes here.

File details

Details for the file aori_sdk_py-0.2-py3-none-any.whl.

File metadata

  • Download URL: aori_sdk_py-0.2-py3-none-any.whl
  • Upload date:
  • Size: 3.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for aori_sdk_py-0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 cb77b15fc6bca14814253ab95117a24d5f24c5235a5b525681c1d1581c1e6a2d
MD5 76498c4aa37db0866d00a791a047a3fb
BLAKE2b-256 46ee2d363dce4179fab7b9a9ba70813623720ee8991f017b147343bbbf3a1d4d

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