Metadata-Version: 2.1
Name: LayerAkiraSDK
Version: 1.0.0a2
Summary: library for interaction with LayerAkira exchange
Home-page: https://github.com/LayerAkira/python_akira
Author: Garrancha
License: MIT
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: websockets
Requires-Dist: toml
Requires-Dist: starknet-py>=0.22.0
Requires-Dist: requests
Requires-Dist: aioconsole>=0.7.0

# LayerAkira SDK
Simple SDK of utilities and clients to interact  with LayerAkira exchange


To interact with exchange user can use following clients:

1) `AsyncApiHttpClient` -- to interact with http endpoints of exchange
2) `AkiraExchangeClient` -- to interact with layer akira smart-contract
3) `WsClient` -- to subscribe for various websocket streams of layer akira
4) `CLIClient` -- to interact with exchange in CLI-like fashion 
5) `ERC20Client` -- to interact with erc20 contracts

Executables folder contains runners for interaction with exchange:

*) `executables/run_cli_client.py` using CLIClient to interact with exchange in CLI like fashion.  Through such interaction one can learn how to interact with exchange to build more sophisticated connectors for trading

To install through pip (https://packaging.python.org/en/latest/guides/using-testpypi/) use the following command:

<code> python3 -m pip install --index-url https://test.pypi.org/project LayerAkira </code>
