Metadata-Version: 2.1
Name: asyncur
Version: 0.2.0
Summary: Async functions to compare with anyio and asyncio, and toolkit to read/write excel with async/await.
Author: Waket Zheng
Author-email: waketzheng@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: anyio (>=3.7.1)
Requires-Dist: openpyxl (>=3.1.2,<4.0.0)
Requires-Dist: pandas (>=2.1.0,<3.0.0)
Description-Content-Type: text/markdown

# asyncur
[![LatestVersionInPypi](https://img.shields.io/pypi/v/asyncur.svg?style=flat)](https://pypi.python.org/pypi/asyncur)
[![GithubActionResult](https://github.com/waketzheng/asyncur/workflows/ci/badge.svg)](https://github.com/waketzheng/asyncur/actions?query=workflow:ci)
[![Coverage Status](https://coveralls.io/repos/github/waketzheng/asyncur/badge.svg?branch=main)](https://coveralls.io/github/waketzheng/asyncur?branch=main)

Some async functions that using anyio

## Requirements

Python 3.11+

## Installation

<div class="termy">

```console
$ pip install "asyncur"
---> 100%
Successfully installed asyncur
```

## Usage

- Read Excel File
```py
>>> from asycur.xls import load_xls
>>> await load_xls('tests/demo.xlsx')
[{'Column1': 'row1-\\t%c', 'Column2\nMultiLines': 0, 'Column 3': 1, 4: ''}, {'Column1': 'r2c1\n00', 'Column2\nMultiLines': 'r2 c2', 'Column 3': 2, 4: ''}]
```

