root/dev/: dmse-1.0.2 metadata and description

Simple index

Search Service for 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
dmse-1.0.2-py3-none-any.whl
Size
5 KB
Type
Python Wheel
Python
3
  • Uploaded to root/dev by root 2024-09-06 13:13:30
dmse-1.0.2.tar.gz
Size
5 KB
Type
Source
  • Uploaded to root/dev by root 2024-09-06 13:13:31
# Darsman Search Library

## Requirements

- Python (== 3.10)
- grpcio-tools (>=1.62.1)

## Installation

Run the following command using pip:

```bash
pip install dmse(test)
```

## Sample code

```python
import asyncio
from dmse import Keyword


keyword = Keyword()

create_response = asyncio.run(
keyword.create(
"rust", "rust is a programming lang", "in rust we trust", "http://rust.org"
)
)
print(create_response)

search_response = asyncio.run(keyword.search(keyword="rust"))
print(search_response)

```


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