Skip to content

Instantly share code, notes, and snippets.

View wiz64's full-sized avatar
✈️
flying high, probably to heaven

Travis Flores wiz64

✈️
flying high, probably to heaven
View GitHub Profile
@wiz64
wiz64 / autobingrandomsearch.py
Created December 8, 2022 16:40
autobingrandomsearch.py
# 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
@wiz64
wiz64 / leave-all-telegram.py
Last active June 28, 2025 13:24
Telegram Leave All groups and Channels Python Script
# 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: