Client library for the Architect trading platform.
Project description
architect_py
Example usage
import asyncio
from architect_py.client import Client
async def main():
c = Client(
host="<your installation domain>",
api_key="<api key>",
api_secret="<api secret>"
)
print(await c.execute("query { me { userId email } }"))
s = c.subscribe_trades("BTC Crypto/USD*COINBASE/DIRECT")
async for trade in s:
print(trade)
asyncio.run(main())
Running additional examples from this package
Clone this repository to run examples in the examples
directory. This package
uses poetry for dependency management. To enter a poetry virtual environment, make
sure you have poetry installed and run the
following from the repository root.
poetry shell
poetry install --sync
export ARCHITECT_HOST="<your installation domain>"
export ARCHITECT_API_KEY="<api key>"
export ARCHITECT_API_SECRET="<api secret>"
python -m examples.trades
You can exit the poetry shell by running exit
. Environment variables set
within the shell are not persisted.
Maintainers
poetry run ariadne-codegen
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
architect_py-0.2.2.tar.gz
(18.1 kB
view details)
Built Distribution
File details
Details for the file architect_py-0.2.2.tar.gz
.
File metadata
- Download URL: architect_py-0.2.2.tar.gz
- Upload date:
- Size: 18.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.3 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3473ae0abd3685838e18d9e2fa397af8982f36f0333cbc9ab364750c7d63e712 |
|
MD5 | 436a1b3be7042b83f0f95e50490cc5e6 |
|
BLAKE2b-256 | 660dcdb7a8a28fca770c8880451bceec673c7b2a5ce193acdb7b488db2b81d92 |
File details
Details for the file architect_py-0.2.2-py3-none-any.whl
.
File metadata
- Download URL: architect_py-0.2.2-py3-none-any.whl
- Upload date:
- Size: 26.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.3 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 143de5a5b772f2ab3e5d97fd0754999bcc13c586a5b4365d1ec545cc104b6b67 |
|
MD5 | c21c6f8afceeb5915fd2d899c78a6329 |
|
BLAKE2b-256 | df7d6b09b3d13417dfceafb8aabe96d9de4225151a5f7a42ef4b184ff6988973 |