root/dev/: dmcb-1.2.0 metadata and description

Simple index

Core of Darsman Academy

author Ellnamin
author_email ellnamin.business@gmail.com
requires_dist
  • grpcio==1.62.1
  • grpcio-tools==1.62.1
  • protobuf==4.25.3
  • setuptools==69.1.1
  • annotated-types==0.6.0
  • pydantic==2.7.0
  • pydantic-core==2.18.1

Because this project isn't in the mirror_whitelist, no releases from root/pypi are included.

File Tox results History
dmcb-1.2.0-py3-none-any.whl
Size
6 KB
Type
Python Wheel
Python
3
  • Uploaded to root/dev by root 2024-09-11 17:09:31
dmcb-1.2.0.tar.gz
Size
6 KB
Type
Source
  • Uploaded to root/dev by root 2024-09-11 17:09:31
# 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",
extras="some extras",
)
)
print(start_response)

```


Render warnings:
<string>:13: (WARNING/2) Inline literal start-string without end-string.