Metadata-Version: 2.1
Name: amy
Version: 2.2.3
Summary: A module to write amy plugins
Home-page: https://gitlab.com/amy-assistant/plugins/python
Author: Liam Perlaki
Author-email: lperlaki@icloud.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: pika

# AMY Plugin

[Amy Assistant](http://amy-assistant.at)

Just import amy to write your plugin.

```py
from amy import Plugin

class Telegram(TelethonClient, Plugin):
    def __init__(username, *args, **kwargs):
        self.username = username
        super().__init(*args, **kwargs)

Telegram._Plugin__connect()

client = Telegram('<number>')

```


