Add README.md

This commit is contained in:
Dawid Rejowski 2022-09-11 22:38:20 +02:00
parent 5a763b4a84
commit 33efe80c21
3 changed files with 42 additions and 15 deletions

31
README.md Normal file
View file

@ -0,0 +1,31 @@
# Telegram -> Matrix stickerpack importer
This bot allows for simple and quick copying Telegram stickers into Matrix rooms.
Stickers can be used in clients that implemented them natively by Matrix
([msc2545](https://github.com/matrix-org/matrix-spec-proposals/pull/2545))
like [FluffyChat](https://fluffychat.im/), [Nheko](https://nheko-reborn.github.io/) and [Cinny](https://cinny.in/).
Element currently **does not** support native stickers (can only display them when send by others).
## Requirements
- Python 3.9+ and pip
- Matrix account dedicated for the bot
- Telegram API keys and bot token (**Please don't share it with anyone**)
## Instalation
- Create **new** Matrix account dedicated for the bot
- Get Telegram API key and API hash from https://my.telegram.org/apps
- Create new Telegram bot and get bot token by talking to https://t.me/botfather
- Clone this repository and install dependencies
```
git clone https://codeberg.org/ghostermonster/stickerbridge
cd stickerbridge
pip install -r requirements.txt
```
- Copy example config file ```cp config.yaml.example config.yaml```
- Fill the config file with creditials for Matrix account and Telegram bot you created
- Run the bot ```python main.py```
## Usage
Invite the bot in a room (currently does not support encrypted rooms), type ```!sb help``` to list available commands.
Type ```import <stickerpack name>``` to import stickerpack to the room, ex. ```import bestblobcats```.
After importing is completed, you will see stickerpack in the menu.

View file

@ -1,13 +1,16 @@
command_prefix: "!sb" # api_id and api_hash can be obtained from https://my.telegram.org/apps
# bot token can be obtained by talking to https://t.me/botfather
matrix_homeserver: "https://matrix.org"
matrix_username: "@username:example.com"
matrix_password: "password"
matrix_bot_name: "Telegram stickers bot"
telegram_api_id: 1234567 telegram_api_id: 1234567
telegram_api_hash: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" telegram_api_hash: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
telegram_bot_token: "1234567890:aaaaaaaaaaaaaaaaaaaaaa--aaaaaaaaaaa" telegram_bot_token: "1234567890:aaaaaaaaaaaaaaaaaaaaaa--aaaaaaaaaaa"
# Creditials for the Matrix account to being used by the bot
# Please use dedicated, freshly created one
matrix_homeserver: "https://matrix.org"
matrix_username: "@username:matrix.org"
matrix_password: "password"
command_prefix: "!sb"
matrix_bot_name: "Telegram stickers bot"
log_level: INFO log_level: INFO

View file

@ -49,13 +49,6 @@ def _convert_animation(data: bytes, width=256, height=0):
class TelegramExporter: class TelegramExporter:
def __init__(self, api_id: int, api_hash: str, bot_token: str, secrets_filename: str): def __init__(self, api_id: int, api_hash: str, bot_token: str, secrets_filename: str):
"""Exports Telegram stickers as images.
:param api_id: Can be obtained at https://my.telegram.org/apps
:param api_hash: Can be obtained at https://my.telegram.org/apps
:param bot_token: Required to get stickers, can be obtained by talking to https://t.me/botfather
:param secrets_filename: Session name, it would be filename of stored creditials
"""
self.api_id = api_id self.api_id = api_id
self.api_hash = api_hash self.api_hash = api_hash
self.bot_token = bot_token self.bot_token = bot_token