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.3.0.tar.gz
(53.6 kB
view details)
Built Distribution
File details
Details for the file architect_py-1.3.0.tar.gz
.
File metadata
- Download URL: architect_py-1.3.0.tar.gz
- Upload date:
- Size: 53.6 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 | a98dbc45aa12ad5fdd6d2a14029edfc9d963562ef4ba21c98dbe2b6cdf6c4030 |
|
MD5 | f24403699254910d04d48145e7508697 |
|
BLAKE2b-256 | e0c4f699d0b74ad127d839cc9a8991374d83b827268551631d52db395a786d6d |
File details
Details for the file architect_py-1.3.0-py3-none-any.whl
.
File metadata
- Download URL: architect_py-1.3.0-py3-none-any.whl
- Upload date:
- Size: 93.4 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 | 55cde172fada6d8b93471607a3e91f1064ab1cd373ebf54f6076610b183ddcf5 |
|
MD5 | f79e7558bf22ed5cab646ea7116271cb |
|
BLAKE2b-256 | 2bad7d98c17a05c21eee1d540ff6ae33e705f3ead3d6b586797353b2a42b39f6 |