Client library for the Architect trading platform.
Project description
architect_py
Example usage
import asyncio
from architect_py.async_client import AsyncClient
async def main():
c = AsyncClient(
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 --config ariadne-codegen.toml
poetry run ariadne-codegen --config ariadne-codegen.async.toml
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-1.2.0.tar.gz
(52.9 kB
view details)
Built Distribution
File details
Details for the file architect_py-1.2.0.tar.gz
.
File metadata
- Download URL: architect_py-1.2.0.tar.gz
- Upload date:
- Size: 52.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.6 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 76a0c2d35bc5bacdb111ba63dbad4cc5011e5027fff5378ebdc65de51093bfdd |
|
MD5 | 91520d8a13680604278e162c2e1b47f1 |
|
BLAKE2b-256 | a8b1571fc6a3adb547165dc5624c18ce3bd04d20f81ea373d921da6d9298d432 |
File details
Details for the file architect_py-1.2.0-py3-none-any.whl
.
File metadata
- Download URL: architect_py-1.2.0-py3-none-any.whl
- Upload date:
- Size: 92.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.6 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89003595b8189e894260492e8c0f80359d41b2ebafdb7aaafe49259885f0edc0 |
|
MD5 | 6381eff4dbe83188acf7f350922fea45 |
|
BLAKE2b-256 | b89db3775030c56f8b7631c40519f48a60dbf3d9f33d4c9880b58ec182d729cc |