Metadata-Version: 2.1
Name: null_bot_api
Version: 1.0.0
Summary: Null Bot API wrapper
Home-page: https://github.com/lordralinc/null_bot_api
Author: lordralinc
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# NULL BOT API wrapper



![PyPI](https://img.shields.io/pypi/v/null-bot-api)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/null-bot-api)
![GitHub](https://img.shields.io/github/license/lordralinc/null_bot_api)

## Установка 
```shell
pip install -U https://github.com/lordralinc/null_bot_api/archive/master.zip
```

или 

```shell
pip install null_bot_api
```

## Использование

```python
from null_bot_api import NullBotApi

api = NullBotApi()

stickers = api.users.get_stickers()

custom = api.make_request(
    "section.method", 
    data=dict(param1="foo", param2="bar"), 
    dataclass=dict
)
```

```python
# Асинхронное использование
from null_bot_api import NullBotApi

api = NullBotApi()

stickers = await api.users.get_stickers_async()

custom = api.make_request_async(
    "section.method", 
    data=dict(param1="foo", param2="bar"), 
    dataclass=dict
)
```

## Методы
Методы предоставлены на [странице](https://vk.com/@null_bot-api).
Все методы следует преводить в snake_case.

