Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gurland/telegram-delete-all-messages
Delete all your messages in groups / supergroups using this python script
https://github.com/gurland/telegram-delete-all-messages
cli privacy python-script telegram
Last synced: 4 days ago
JSON representation
Delete all your messages in groups / supergroups using this python script
- Host: GitHub
- URL: https://github.com/gurland/telegram-delete-all-messages
- Owner: gurland
- License: gpl-3.0
- Created: 2019-05-20T13:29:44.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-07-23T19:14:04.000Z (4 months ago)
- Last Synced: 2024-08-01T20:49:45.697Z (3 months ago)
- Topics: cli, privacy, python-script, telegram
- Language: Python
- Homepage:
- Size: 41 KB
- Stars: 355
- Watchers: 9
- Forks: 83
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - gurland/telegram-delete-all-messages - Delete all your messages in groups / supergroups using this python script (Python)
README
# telegram-delete-all-messages
Delete all your messages in supergroups with python script.## Installation
To install this script you have to download project and install requirements:### Linux
```
git clone https://github.com/gurland/telegram-delete-all-messages
cd telegram-delete-all-messages
pip install -r requirements.txt
python cleaner.py
```### Windows
- Download zip file from this repo and unpack it
- Install latest [CPython 3](https://www.python.org) version
- Run install.bat
- Run start.bat## Obtain standalone telegram app API credentials
- Login to https://my.telegram.org/
- Select `API development tools` link
- Create standalone application
- Copy app_id and app_hash## Usage
> You need both App api_id and App api_hash to use script.#### Environment variables
You could set API_ID and API_HASH environment variables to prevent entering API credentials manually.#### Start
After starting script you will be prompted:
- To enter your Telegram APP credentials (if no environment variables found)
- Your account phone and then code sent to you by Telegram
```
$ python cleaner.pyEnter your Telegram API id: 123456
Enter your Telegram API hash: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Pyrogram v0.14.1, Copyright (C) 2017-2019 Dan
Licensed under the terms of the GNU Lesser General Public License v3 or later (LGPLv3+)Enter phone number: +123456789012
Is "+123456789012" correct? (y/n): y
Enter phone code: 88988
Logged in successfully as Stanislav
```#### Choosing supergroup
- After providing needed information you will get your supergroup dialogs
- Enter number found near desired supergroup title
```
1. Python community
2. Rust Beginners
3. IDE & EditorsInsert group number:
```#### Message removal process
- After choosing supergroup you would get informed about messages removal process
```
Insert group number: 2
Selected Rust BeginnersSearching messages. OFFSET: 0
Found 4 your messages in selected supergroup
Deleting 4 messages with next message IDs:
[23807, 23799, 23757, 23756]
```## Contribution
To make any changes in our codebase, please do the following:
1. Create or find an Issue describing what needs to be done.
2. Discuss all changes needed.
3. Fork repository, clone it, create branch with briefly descriptive name of feature/bufix you are adding, e.g. `git checkout -b fix-sleep-treshold`.
4. Create Pull Request. Please, test all changes before creating PR and explicitly declare whether testing was succesful or not.
5. Wait untill available contributors review changes.
6. If everything is OK your contribution gets approved.Note: it's very important to keep PRs brief and clear. Resolve single issue by a single PR.