Metadata-Version: 2.1
Name: pywa_async
Version: 0.0.1
Summary: Please install `pywa` instead. It already includes the async version.
Author-email: David Lev <david@davidlev.dev>
License: MIT
Project-URL: Documentation, https://pywa.readthedocs.io/
Project-URL: Issue Tracker, https://github.com/david-lev/pywa/issues
Project-URL: Source Code, https://github.com/david-lev/pywa
Project-URL: Funding, https://github.com/sponsors/david-lev
Project-URL: Changelog, https://github.com/david-lev/pywa/blob/master/CHANGELOG.md
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: pywa

# pywa_async

Installing this package will only install the latest version of pywa, which already includes the async support. This package is just a placeholder to prevent takeovers of the name.
Avoid using this package because if pywa gets updated, you will not get the latest version.

## Installation

```sh
pip3 install pywa # not pywa_async!
```

```python

from pywa_async import WhatsApp, types, filters

wa = WhatsApp(...)

async def main():
    await wa.send_message(...)

@wa.on_message(filters.text)
async def hello(_: WhatsApp, msg: types.Message):
    await msg.react("👋")
    await msg.reply(...)
```

