Skip to content

Latest commit

 

History

History
81 lines (67 loc) · 3.17 KB

README.md

File metadata and controls

81 lines (67 loc) · 3.17 KB

telegram_warrior

"Telegram Warrior" is a dynamic project designed to efficiently manage Telegram webhooks using the flask framework. By seamlessly integrating flask with Telegram's webhook capabilities, this project enables real-time notifications and messaging to Telegram groups. With a streamlined interface, users can effortlessly set up and manage webhooks while harnessing the power of flask asynchronous capabilities for optimal performance.

Prerequisites

Project Folder Structure

Here we consider the telegram_warrior = app

.
├── app
│   ├── __init__.py
│   ├── main.py
│   ├── dependencies.py
│   └── routers
│   │   ├── __init__.py
│   │   ├── items.py
│   │   └── users.py
│   └── internal
│       ├── __init__.py
│       └── admin.py

or

Structure

your_project
├── __init__.py
├── main.py
├── core
│   ├── models
│   │   ├── database.py
│   │   └── __init__.py
│   ├── schemas
│   │   ├── __init__.py
│   │   └── schema.py
│   └── settings.py
├── tests
│   ├── __init__.py
│   └── v1
│       ├── __init__.py
│       └── test_v1.py
└── v1
    ├── api.py
    ├── endpoints
    │   ├── endpoint.py
    │   └── __init__.py
    └── __init__.py 

Telegram Documentation

Send Message in Channel

YouTube

Project Setup

Package List