This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Automatic Random bing search script : @wiz64 | |
# Use Keypress simulations to perform automated bing searches | |
# modify sleep time as per you needs and internet speed | |
# goto bing, do a search, count the number of time you pressed "tab" button and then run | |
# `python autobingrandomsearch.py <number_of_searches_to_make> <tab_btn_count>` | |
# in case any error,or not working as expected, to stop, goto shell/cmd window ASAP and bash ctrl + c | |
import argparse | |
from time import sleep | |
import string | |
import random |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Python script that leave all groups and channel on your account | |
# useful to clean up crowded telegram accounts with hundreds of groups joined | |
# Developer : wiz64 | |
# https://gist.github.com/wiz64/eccab4158037238dc77b03d8c01cbf83 | |
from telethon.sync import TelegramClient | |
from telethon.tl.functions.messages import GetDialogsRequest | |
from telethon.tl.types import InputPeerEmpty | |
import telethon | |
# Go to https://my.telegram.org/apps, sign in, go to API development tools, create an app, copy and paste below: |