From c43114264f808cddda0cfd74527e7bf06aaf4b33 Mon Sep 17 00:00:00 2001 From: udf Date: Fri, 9 Nov 2018 21:08:59 +0200 Subject: [PATCH] fix links --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a50a48b..56dfcea 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Pluggable [``asyncio``](https://docs.python.org/3/library/asyncio.html) Simply clone the repository and run the main file: ```sh -git clone https://github.com/uniborg/uniborg.git +git clone https://github.com/udf/uniborg.git cd uniborg python stdborg.py ``` @@ -16,11 +16,11 @@ python stdborg.py ## design The modular design of the project enhances your Telegram experience -through [plugins](https://github.com/uniborg/uniborg/tree/master/stdplugins) +through [plugins](https://github.com/udf/uniborg/tree/master/stdplugins) which you can enable or disable on demand. Each plugin gets the `borg`, `logger` and `storage` magical -[variables](https://github.com/uniborg/uniborg/blob/4805f2f6de7d734c341bb978318f44323ad525f1/uniborg/uniborg.py#L66-L68) +[variables](https://github.com/udf/uniborg/blob/4805f2f6de7d734c341bb978318f44323ad525f1/uniborg/uniborg.py#L66-L68) to ease their use. Thus creating a plugin as easy as adding a new file under the plugin directory to do the job: @@ -36,12 +36,12 @@ async def handler(event): ## internals The core features offered by the custom `TelegramClient` live under the -[`uniborg/`](https://github.com/uniborg/uniborg/tree/master/uniborg) +[`uniborg/`](https://github.com/udf/uniborg/tree/master/uniborg) directory, with some utilities, enhancements and the core plugin. ## learning Check out the already-mentioned -[plugins](https://github.com/uniborg/uniborg/tree/master/stdplugins) +[plugins](https://github.com/udf/uniborg/tree/master/stdplugins) directory to learn how to write your own, and consider reading [Telethon's documentation](http://telethon.readthedocs.io/).