forked from kate/uniborg
fix links
This commit is contained in:
parent
7041489498
commit
c43114264f
10
README.md
10
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:
|
Simply clone the repository and run the main file:
|
||||||
```sh
|
```sh
|
||||||
git clone https://github.com/uniborg/uniborg.git
|
git clone https://github.com/udf/uniborg.git
|
||||||
cd uniborg
|
cd uniborg
|
||||||
python stdborg.py
|
python stdborg.py
|
||||||
```
|
```
|
||||||
|
@ -16,11 +16,11 @@ python stdborg.py
|
||||||
## design
|
## design
|
||||||
|
|
||||||
The modular design of the project enhances your Telegram experience
|
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.
|
which you can enable or disable on demand.
|
||||||
|
|
||||||
Each plugin gets the `borg`, `logger` and `storage` magical
|
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
|
to ease their use. Thus creating a plugin as easy as adding
|
||||||
a new file under the plugin directory to do the job:
|
a new file under the plugin directory to do the job:
|
||||||
|
|
||||||
|
@ -36,12 +36,12 @@ async def handler(event):
|
||||||
## internals
|
## internals
|
||||||
|
|
||||||
The core features offered by the custom `TelegramClient` live under the
|
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.
|
directory, with some utilities, enhancements and the core plugin.
|
||||||
|
|
||||||
## learning
|
## learning
|
||||||
|
|
||||||
Check out the already-mentioned
|
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
|
directory to learn how to write your own, and consider reading
|
||||||
[Telethon's documentation](http://telethon.readthedocs.io/).
|
[Telethon's documentation](http://telethon.readthedocs.io/).
|
||||||
|
|
Loading…
Reference in New Issue