2018-07-01 14:14:02 +00:00
|
|
|
# uniborg
|
|
|
|
|
|
|
|
Pluggable [``asyncio``](https://docs.python.org/3/library/asyncio.html)
|
|
|
|
[Telegram](https://telegram.org) userbot based on
|
|
|
|
[Telethon](https://github.com/LonamiWebs/Telethon).
|
|
|
|
|
|
|
|
## installing
|
|
|
|
|
|
|
|
Simply clone the repository and run the main file:
|
|
|
|
```sh
|
2018-11-09 19:08:59 +00:00
|
|
|
git clone https://github.com/udf/uniborg.git
|
2018-07-01 14:14:02 +00:00
|
|
|
cd uniborg
|
|
|
|
python stdborg.py
|
|
|
|
```
|
|
|
|
|
|
|
|
## design
|
|
|
|
|
|
|
|
The modular design of the project enhances your Telegram experience
|
2018-11-09 19:08:59 +00:00
|
|
|
through [plugins](https://github.com/udf/uniborg/tree/master/stdplugins)
|
2018-07-01 14:14:02 +00:00
|
|
|
which you can enable or disable on demand.
|
|
|
|
|
|
|
|
Each plugin gets the `borg`, `logger` and `storage` magical
|
2018-11-09 19:08:59 +00:00
|
|
|
[variables](https://github.com/udf/uniborg/blob/4805f2f6de7d734c341bb978318f44323ad525f1/uniborg/uniborg.py#L66-L68)
|
2018-07-01 14:14:02 +00:00
|
|
|
to ease their use. Thus creating a plugin as easy as adding
|
|
|
|
a new file under the plugin directory to do the job:
|
|
|
|
|
|
|
|
```python
|
|
|
|
# stdplugins/myplugin.py
|
|
|
|
from telethon import events
|
|
|
|
|
|
|
|
@borg.on(events.NewMessage(pattern='hi'))
|
|
|
|
async def handler(event):
|
|
|
|
await event.reply('hey')
|
|
|
|
```
|
|
|
|
|
|
|
|
## internals
|
|
|
|
|
|
|
|
The core features offered by the custom `TelegramClient` live under the
|
2018-11-09 19:08:59 +00:00
|
|
|
[`uniborg/`](https://github.com/udf/uniborg/tree/master/uniborg)
|
2018-07-01 14:43:54 +00:00
|
|
|
directory, with some utilities, enhancements and the core plugin.
|
2018-07-01 14:14:02 +00:00
|
|
|
|
|
|
|
## learning
|
|
|
|
|
|
|
|
Check out the already-mentioned
|
2018-11-09 19:08:59 +00:00
|
|
|
[plugins](https://github.com/udf/uniborg/tree/master/stdplugins)
|
2018-07-01 14:14:02 +00:00
|
|
|
directory to learn how to write your own, and consider reading
|
|
|
|
[Telethon's documentation](http://telethon.readthedocs.io/).
|