Skip to content

Instantly share code, notes, and snippets.

View buddhhu's full-sized avatar
💭
😪

Amitkumar Sharma buddhhu

💭
😪
View GitHub Profile
@buddhhu
buddhhu / update.py
Created August 14, 2023 07:49
Version updater for Plugin Manager API used in Ultroid
# Ultroid - UserBot
# Copyright (C) 2021-2023 TeamUltroid
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
# PLease read the GNU Affero General Public License in <https://www.github.com/TeamUltroid/Ultroid/blob/main/LICENSE/>.
# import os
# os.system("python3 -m pip install requests bs4 lxml")
import requests
from bs4 import BeautifulSoup
@buddhhu
buddhhu / session-generator.py
Created October 1, 2022 14:02
Telegram string session generator using Telethon module.
# Copyright © Amit Sharma < https://github.com/buddhhu >
try:
import telethon
except ModuleNotFoundError:
print("Telethon not found. Installing...")
import os
os.system("python3 -m pip install -q telethon")
from telethon import TelegramClient