mirror of
https://github.com/avitoras/telegram-tui.git
synced 2025-07-27 11:20:31 +00:00
Сделал мультиязычные ридмики
This commit is contained in:
parent
2a18f625c0
commit
262fdcba59
@ -2,6 +2,8 @@
|
||||
|
||||
Тальк — клиент Telegram с текстовым пользовательским интерфейсом, написанный на Python, Telethon и Textual.
|
||||
|
||||
Будьте добры, по-русски | [In English, please](readme/README-en.md)
|
||||
|
||||
## Требования
|
||||
|
||||
- Python 3.12
|
||||
|
44
readme/README-en.md
Normal file
44
readme/README-en.md
Normal file
@ -0,0 +1,44 @@
|
||||
# Talc
|
||||
|
||||
Talc is a Telegram client with TUI, written in Python, Telethon and Textual.
|
||||
|
||||
[Будьте добры, по-русски](../README.md) | In English, please
|
||||
|
||||
## Requirements
|
||||
|
||||
- Python 3.12
|
||||
- pyenv (recommended for managing Python versions)
|
||||
|
||||
## Установка
|
||||
|
||||
1. Install Python 3.12 via pyenv:
|
||||
```bash
|
||||
pyenv install 3.12
|
||||
pyenv local 3.12
|
||||
```
|
||||
|
||||
2. Create and activate virtual enviroment:
|
||||
```bash
|
||||
python -m venv .venv
|
||||
source .venv/bin/activate # for Linux/macOS
|
||||
# or
|
||||
.venv\Scripts\activate # for Windows
|
||||
```
|
||||
|
||||
3. Install dependencies:
|
||||
```bash
|
||||
pip install -r requirements.txt
|
||||
```
|
||||
|
||||
4. Configure enviroment variables:
|
||||
```bash
|
||||
cp .env.example .env
|
||||
# Configure .env file and add your API-keys
|
||||
# Get keys on https://my.telegram.org/apps
|
||||
```
|
||||
|
||||
## Run
|
||||
|
||||
```bash
|
||||
./main.py
|
||||
```
|
Loading…
x
Reference in New Issue
Block a user