Metadata-Version: 2.1
Name: aio-cosmos
Version: 0.1.0
Summary: Ayncio Client for Azure Cosmos DB
Home-page: https://github.com/calmseas/aio-cosmos
License: MIT
Keywords: azure,cosmos,ayncio,aio,nosql
Author: Grant McDonald
Author-email: calmseasdev@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: aiohttp (>=3.8.0,<4.0.0)
Project-URL: Repository, https://github.com/calmseas/aio-cosmos
Description-Content-Type: text/markdown

# aio-cosmos
Asyncio SDK for Azure Cosmos DB. This library is intended to be a very thin asyncio wrapper around the [Azure Comsos DB Rest API][1]. 
It is not intended to have feature parity with the Microsoft Azure SDKs but to provide async versions of the most commonly used interfaces.

[1]: (https://docs.microsoft.com/en-us/rest/api/cosmos-db/)

## Feature Support
### Databases
✅ List\
✅ Create\
✅ Delete

### Containers
✅ Create\
✅ Delete

### Documents
✅ Create Single\
✅ Create Concurrent Multiple\
✅ Delete\
✅ Get\
✅ Query

## Installation

```shell
pip install aio-cosmos
```


