Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jdan735/aiovk_new
A simple async library for vk with pydantic & httpx
https://github.com/jdan735/aiovk_new
python-asyncio vk vk-api
Last synced: about 1 month ago
JSON representation
A simple async library for vk with pydantic & httpx
- Host: GitHub
- URL: https://github.com/jdan735/aiovk_new
- Owner: jDan735
- License: mit
- Created: 2021-12-13T20:42:08.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-21T10:52:23.000Z (almost 3 years ago)
- Last Synced: 2023-03-05T16:43:27.504Z (over 1 year ago)
- Topics: python-asyncio, vk, vk-api
- Language: Python
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
:dog: aiovk_new
A simple async library for vk with pydantic & httpx
## 🛠Usage
```python
from aiovk_new import AioVKvk_api = AioVK(access_token=...)
post, *_ = await vk_api.wall.get("vk")
print(post.text)
```## 🎉 Features
- Full async
- Uses [httpx](https://github.com/encode/httpx)
- Uses models by [pydantic](https://github.com/samuelcolvin/pydantic)## 🚀 Install
To install, run this code:
```
pip install aiovk_new
```