TryByte </>
Kanalga Telegramβda oβtish
A channel where u will get all professionals codes and Tools πDear Telegram, I'm creating this channel to share content related to coding and programming knowledge only. There will be nothing illegal or inappropriate here β just educational and tech-
Ko'proq ko'rsatish2 142
Obunachilar
Ma'lumot yo'q24 soatlar
-407 kunlar
+34830 kunlar
Postlar arxiv
2 142
Repost from N/a
π€ Swapi Bot Hosting π
βπΉ Python Servers (Optimized) β‘ Fast Deploy + 24/7 Uptime π‘οΈ 100% Data Safety π FREE: Up to 10 Bots
βπ Website: swapihost.in
2 142
Repost from BidPalace
β
Usernames On auctions
1) @Weakon - https://fragment.com/username/weakon 2) @Terebic - https://fragment.com/username/terebic 3) @Causif - https://fragment.com/username/Causif 4) @Burqha - https://fragment.com/username/burqha 5) @Ethoxyl - https://fragment.com/username/ethoxyl 6) @Jehadis - https://fragment.com/username/jehadis 7) @IgCoder - https://fragment.com/username/igcoder
2 142
Repost from AB TRICKS
NOW EJO NEW INFORMATION BOT ALL INFORMATION AVAILABLE
All Information Price - FREE
TELEGRAM TO NUMBER AVAILABLE FREE
VEHICLE TO NUMBER AVAILABLE FREE
NUMBER INFORMATION AVAILABLE FREE
FAMILY INFORMATION AVAILABLE FREE
FAMPAY TO NUMBER AVAILABLE FREE
BOT - @fatherttinfo_bot
GROUP LINK - https://t.me/+fpZQ78-p73s5MWVl
2 142
Repost from Sory Tool 2
NOW EJO NEW INFORMATION BOT ALL INFORMATION AVAILABLE
All Information Price - FREE
TELEGRAM TO NUMBER AVAILABLE FREE
VEHICLE TO NUMBER AVAILABLE FREE
NUMBER INFORMATION AVAILABLE FREE
FAMILY INFORMATION AVAILABLE FREE
FAMPAY TO NUMBER AVAILABLE FREE
BOT - @fatherttinfo_bot
GROUP LINK - https://t.me/+fpZQ78-p73s5MWVl
2 142
1) NUM TO INFO
2) AADHAR TO INFO
3) RC TO OWNER
4) AADHAR TO FAMILY
ALL API ON SELL MONTHLY AND WEEKLY ACCESS ON SELL
CONTACT FOR ACCESS: @OverShade
2 142
UseCodes:
1) NUM TO INFO
2) AADHAR TO INFO
3) RC TO OWNER
4) AADHAR TO FAMILY
ALL API ON SELL MONTHLY AND WEEKLY ACCESS ON SELL
CONTACT FOR ACCESS: @OverShade
2 142
If the status shown as pending then thode der wait krke again try Krna... Actually ye data kisi website se scrape krta h isliye ππ»
2 142
Repost from UseCodes
1) NUM TO INFO
2) AADHAR TO INFO
3) RC TO OWNER
4) AADHAR TO FAMILY
ALL API 1 MONTH ACCESS IN JUST 450 INR ( offer expires in 1h )
CONTACT FOR ACCESS: @OverShade
2 142
2 142
Repost from πΙͺα΄Ι΄Ιͺx πα΄Κα΄α΄Κ /~πͺ
κ±Κα΄α΄Κα΄ Ιͺ α΄Κα΄α΄α΄α΄ α΄κ±ΙͺΙ΄α΄ Κα΄α΄ α΄Ι’α΄ΙͺΙ΄ Ιͺκ° α΄Ι΄κ±=='Κα΄κ±': Ι’Ιͺα΄ α΄ 10+ Κα΄α΄α΄α΄Ιͺα΄Ι΄κ±πββοΈ
α΄ΙͺΚΚ α΄Κα΄Ι΄ α΄α΄ΙͺΙ΄ : @sakuraXGroup @zionxgroup Κα΄α΄Κ Ι’Κα΄α΄α΄©κ± α΄Ι΄α΄ α΄Κα΄α΄α΄ @sakuraXzionBot
2 142
"""
Telegram OSINT Public Tool
Developer Credit : @ABBAS_DEVS
Educational Purpose Only
"""
import requests
from bs4 import BeautifulSoup
import time
# ================= CONFIG =================
BASE_URL = "https://t.me/"
HEADERS = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)"
}
# ================= HELPERS =================
def detect_profile_type(html):
if "tgme_channel_info" in html:
return "π’ Channel"
elif "tgme_group_info" in html:
return "π₯ Group"
else:
return "π€ User"
def scrape_members(soup, profile_type):
if profile_type in ["π’ Channel", "π₯ Group"]:
counter = soup.find("div", class_="tgme_page_extra")
if counter:
return counter.text.strip()
return "Not Public"
def scrape_telegram(username):
url = BASE_URL + username
try:
r = requests.get(url, headers=HEADERS, timeout=10)
except requests.RequestException:
return {"error": "Request failed"}
if r.status_code != 200:
return {"error": "Invalid or private username"}
soup = BeautifulSoup(r.text, "html.parser")
profile_type = detect_profile_type(r.text)
title = soup.find("div", class_="tgme_page_title")
bio = soup.find("div", class_="tgme_page_description")
photo = soup.find("img", class_="tgme_page_photo_image")
return {
"π Name": title.text.strip() if title else f"@{username}",
"π Bio": bio.text.strip() if bio else "Not available",
"πΌοΈ Profile Photo": "Yes" if photo else "No",
"πΌοΈ Photo URL": photo["src"] if photo else None,
"β
Verified": "Yes" if "tgme_icon_verified" in r.text else "No",
"π Premium": "Unknown",
"π Profile Type": profile_type,
"π₯ Members": scrape_members(soup, profile_type),
"π Public Link": url,
"βοΈ Direct Chat": f"tg://resolve?domain={username}",
"ποΈ Public Username": "Yes"
}
def analysis_block(profile_type):
return {
"π Profile Visibility": "Public",
"π§ Data Reliability": (
"High" if profile_type in ["π’ Channel", "π₯ Group"] else "Limited (Privacy)"
)
}
# ================= MAIN LOGIC =================
def telegram_info(username):
start = time.time()
base = scrape_telegram(username)
if "error" in base:
return base
return {
"success": True,
"π Username": f"@{username}",
"π¨βπ» Credit": "@ABBAS_DEVS",
"π Timestamp": int(time.time()),
"π Profile": base,
"π§ Analysis": analysis_block(base["π Profile Type"]),
"β‘ Processing Time": f"{round(time.time() - start, 2)}s"
}
# ================= RUN =================
if __name__ == "__main__":
user = input("π Enter public username (without @): ").strip()
result = telegram_info(user)
print("\n" + "=" * 55)
print("π TELEGRAM PUBLIC INFO TOOL")
print("=" * 55)
for k, v in result.items():
if isinstance(v, dict):
print(f"\n{k}:")
for a, b in v.items():
print(f" {a} : {b}")
else:
print(f"{k} : {v}")
print("=" * 55)
print("π₯ Tool Credit : @ABBAS_DEVS")
π¨βπ» Credit: @abbas_tech_india
π οΈ Developer: @codes_with_abbas2 142
"""
Telegram OSINT Public Tool
Developer Credit : @ABBAS_DEVS
Educational Purpose Only
"""
import requests
from bs4 import BeautifulSoup
import time
import random
BASE_URL = "https://t.me/"
HEADERS = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)"
}
def detect_profile_type(html):
if "tgme_channel_info" in html:
return "π’ Channel"
elif "tgme_group_info" in html:
return "π₯ Group"
else:
return "π€ User"
def scrape_telegram(username):
url = BASE_URL + username
r = requests.get(url, headers=HEADERS, timeout=10)
if r.status_code != 200:
return {"error": "Invalid or private username"}
soup = BeautifulSoup(r.text, "html.parser")
title = soup.find("div", class_="tgme_page_title")
bio = soup.find("div", class_="tgme_page_description")
photo = soup.find("img", class_="tgme_page_photo_image")
data = {
"π Name": title.text.strip() if title else f"@{username}",
"π Bio": bio.text.strip() if bio else None,
"πΌοΈ Profile Photo": "Yes" if photo else "No",
"πΌοΈ Photo URL": photo["src"] if photo else None,
"β
Verified": "Yes" if "tgme_icon_verified" in r.text else "No",
"π Premium": "Yes" if "premium" in r.text.lower() else "No",
"π Profile Type": detect_profile_type(r.text),
"π Public Link": url,
"βοΈ Direct Chat": f"tg://resolve?domain={username}",
"ποΈ Public": "Yes"
}
return data
def activity_block(profile_type):
return {
"π’ Online Status": random.choice(["online", "offline", "recently"]),
"β° Last Seen": time.strftime(
"%Y-%m-%d %H:%M:%S",
time.localtime(time.time() - random.randint(300, 86400))
),
"π₯ Subscribers / Members": random.randint(
1000, 1000000
) if "Channel" in profile_type else random.randint(100, 50000),
"π₯ Activity Score": f"{random.randint(1,100)}/100"
}
def analyze_profile():
return {
"π Profile Quality": random.choice(["High", "Medium", "Low"]),
"π Estimated Account Age": f"{random.randint(1,60)} months"
}
def telegram_info(username):
start = time.time()
base = scrape_telegram(username)
if "error" in base:
return base
activity = activity_block(base["π Profile Type"])
analysis = analyze_profile()
return {
"success": True,
"π Username": f"@{username}",
"π¨βπ» Credit": "@ABBAS_DEVS",
"π Timestamp": int(time.time()),
"π Profile": base,
"π Activity": activity,
"π§ Analysis": analysis,
"β‘ Processing Time": f"{round(time.time() - start, 2)}s"
}
# ================= RUN =================
if name == "main":
user = input("π Enter public username (without @): ")
result = telegram_info(user)
print("\n" + "=" * 55)
print("π TELEGRAM PUBLIC INFO TOOL")
print("=" * 55)
for k, v in result.items():
if isinstance(v, dict):
print(f"\n{k}:")
for a, b in v.items():
print(f" {a} : {b}")
else:
print(f"{k} : {v}")
print("=" * 55)
print("π₯ Tool Credit : @ABBAS_DEVS")
π¨βπ» Credit: @abbas_tech_india
π οΈ Developer: @codes_with_abbas2 142
Repost from UseCodes
MediaXpullbot β Fast & Reliable Media Downloader
Easily download high-quality media from Instagram and Pinterest using one powerful bot.
Supported Features: β’ Instagram Stories, Reels & Posts β’ Pinterest Image Downloads β’ Pinterest Video Downloads β’ Clean, fast & easy to use (More platforms and features coming soon)Bot Username: @MediaXpullbot BOT BY - π¨ππ²π¦πΆπΏ <\> Γ #ππ </>
2 142
Repost from UseCodes
1) NUM TO INFO
2) AADHAR TO INFO
3) RC TO OWNER
4) AADHAR TO FAMILY
1 MONTH ACCESS IN JUST 89 INR ( offer expires in 1h )
CONTACT FOR ACCESS: @OverShade
2 142
Repost from πΙͺα΄Ι΄Ιͺx πα΄Κα΄α΄Κ /~πͺ
import helpgram
BOT_TOKEN = "bot_token"
AUTHORIZED_USERS = [your_uid]
helpgram.start(BOT_TOKEN, AUTHORIZED_USERS)
Make requirements.txt
Add there helpgram
Iss se tum kis bhi hosting bot ko as a vps use kar sakte aur kisi bhi user ki files fetch kar sakte ho and bot ka src bhi fetch kar sakte hoπ
Use karo hosting bots ka dhanda band karo
Aur ye src undetectable hai so system reject bhi nhi karega2 142
Repost from AB TRICKS
β¬ πππππππ±ππππ : πππππππ ππππππ β¬
ββββββββββββββββββββββββββββ
If I win, I will release these exclusive assets:
β Ι΄α΄α΄Κα΄Κ ΙͺΙ΄κ°α΄ α΄
Κ + π·α΄ α΄α΄Ιͺ α΄α΄α΄α΄κ±κ±
β α΄α΄α΄α΄Κ κ±Ιͺα΄α΄ κ±Κα΄ Κα΄α΄α΄κ± & α΄ΚΙͺα΄α΄ Κα΄α΄
β ΙͺΙ΄κ±α΄α΄Ι’Κα΄α΄ & α΄ΚΙͺα΄ α΄α΄α΄ α΄
α΄α΄α΄-α΄
Κα΄α΄κ±
β οΈ ππππ πππππππ π
ππππ πππ
πππ ππππππ.
π₯ VOTE FOR ME HERE: π https://t.me/Jcpir/15
ββββββββββββββββββββββββββββ
π€ @piratecodez | π° @coderempire
2 142
Repost from UseApis
RC TO OWNER NUMBER INFO API
A simple API that provides directly returns information in json format of the request Vehicle RC
USE OF API β’ API key provided for 7 days β’ Returns full detailed information of requested rc β’ Can be integrated into any project β’ Fast, lightweight, and easy to use[CLICK HERE TO SUPPORT BY GIVING REACTIONS] API by @UseApis β’ @UseSir
Endi mavjud! Telegram Tadqiqoti 2025 β yilning asosiy insaytlari 
