root/dev/: dmcb-1.10.2 metadata and description
Core of Darsman Academy
author | Ellnamin |
author_email | ellnamin.business@gmail.com |
requires_dist |
|
Because this project isn't in the mirror_whitelist
,
no releases from root/pypi are included.
File | Tox results | History |
---|---|---|
dmcb-1.10.2-py3-none-any.whl
|
|
|
dmcb-1.10.2.tar.gz
|
|
# Darsman Core
## Requirements
- Python (== 3.10)
- grpcio-tools (>=1.62.1)
- pydantic (>=2.7.0)
## Installation
Run the following command using pip:
```bash
pip install dmcb
```
## Sample code
```python
import asyncio
from dmcb import Basket, Trade
basket = Basket()
create_response = asyncio.run(basket.create("owner identifier"))
print(create_response)
# --------------------------------
trade = Trade()
start_response = asyncio.run(
trade.start(
basket_identifier="basket identifier",
runner="some runner",
extra_data={},
)
)
print(start_response)
```
Render warnings:
<string>:13: (WARNING/2) Inline literal start-string without end-string.
## Requirements
- Python (== 3.10)
- grpcio-tools (>=1.62.1)
- pydantic (>=2.7.0)
## Installation
Run the following command using pip:
```bash
pip install dmcb
```
## Sample code
```python
import asyncio
from dmcb import Basket, Trade
basket = Basket()
create_response = asyncio.run(basket.create("owner identifier"))
print(create_response)
# --------------------------------
trade = Trade()
start_response = asyncio.run(
trade.start(
basket_identifier="basket identifier",
runner="some runner",
extra_data={},
)
)
print(start_response)
```
Render warnings:
<string>:13: (WARNING/2) Inline literal start-string without end-string.