:ballot_box_with_check: Added `webhooks` and `handlers`. More docs: [here](https://glqiwiapi.readthedocs.io/en/latest/examples/qiwi/qiwi_webhook.html).
python
from glQiwiApi import QiwiWrapper, types
wallet = QiwiWrapper(
api_access_token='TOKEN',
secret_p2p='SECRET_P2P'
)
wallet.bill_handler()
async def handle_event(event: types.Notification):
print(event)
wallet.start_webhook(port=80)
:ballot_box_with_check: Added QIWI API methods to register, delete and configure webhook: `bind_webhook`, `get_webhook_secret_key`, `get_current_webhook`, `change_webhook_secret` and other.
:ballot_box_with_check: Deleted unnecessar dependency `aiosocks`
0.2.14stable
:ballot_box_with_check: Some bug fixes, connected to wrong work `QiwiMaps` and `sync` adapter. Now it's working stable.
:ballot_box_with_check: Some changes with cache, rename from `SimpleCache` to `Storage`. Change methods.
:ballot_box_with_check: Add stub file `basics.pyi` for `sync` adapter and other utility functions.