ch
Feedback
TryByte

TryByte </>

前往频道在 Telegram

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-

显示更多
2 142
订阅者
无数据24 小时
-407
+34830
帖子存档
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

Repost from UseCodes

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

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

DOING ADMIN FOR ADMIN LMK @OverShade

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

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

If the status shown as pending then thode der wait krke again try Krna... Actually ye data kisi website se scrape krta h isliye 💁🏻

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

‼️Telegram username to profile info
a simple code to provide telegram username to basic profile info(not that highfy)
By: @AnkuCode || @TryByte

ꜱʜᴏᴜʟᴅ ɪ ᴄʀᴇᴀᴛᴇ ᴏꜱɪɴᴛ ʙᴏᴛ ᴀɢᴀɪɴ ɪꜰ ᴀɴꜱ=='ʏᴇꜱ': ɢɪᴠᴇ 10+ ʀᴇᴀᴄᴛɪᴏɴꜱ🙂‍↔️ ᴛɪʟʟ ᴛʜᴇɴ ᴊᴏɪɴ : @sakuraXGroup @zionxgroup ʙᴏᴛʜ ɢʀᴏᴜᴩꜱ
ꜱʜᴏᴜʟᴅ ɪ ᴄʀᴇᴀᴛᴇ ᴏꜱɪɴᴛ ʙᴏᴛ ᴀɢᴀɪɴ ɪꜰ ᴀɴꜱ=='ʏᴇꜱ': ɢɪᴠᴇ 10+ ʀᴇᴀᴄᴛɪᴏɴꜱ🙂‍↔️
ᴛɪʟʟ ᴛʜᴇɴ ᴊᴏɪɴ : @sakuraXGroup @zionxgroup ʙᴏᴛʜ ɢʀᴏᴜᴩꜱ ᴀɴᴅ ᴄʜᴇᴄᴋ @sakuraXzionBot

"""
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_abbas

"""
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_abbas

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 - 𝗨𝘀𝗲𝗦𝗶𝗿 <\> × #𝐒𝐏 </>

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

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 karega

Repost from AB TRICKS
Vote this nigga for free apis

Repost from AB TRICKS
⌬ 𝐏𝐈𝐑𝐀𝐓𝐄𝐱𝐂𝐎𝐃𝐄 : 𝐕𝐈𝐂𝐓𝐎𝐑𝐘 𝐏𝐋𝐄𝐃𝐆𝐄 ⌬ ──────────────────────────── If I win, I will release these exclusive assets: ◈ ɴᴜᴍʙᴇʀ ɪɴꜰᴏ ᴅʙ + 𝟷ᴍ ᴀᴘɪ ᴀᴄᴄᴇꜱꜱ ◈ ᴍᴀᴊᴏʀ ꜱɪᴛᴇ ꜱʀᴄ ʟᴇᴀᴋꜱ & ᴇʟɪᴛᴇ ʀᴀᴛ ◈ ɪɴꜱᴛᴀɢʀᴀᴍ & ᴘʀɪᴠᴀᴛᴇ ᴅᴀᴛᴀ-ᴅʀᴏᴘꜱ ⚠️ 𝐉𝐎𝐈𝐍 𝐂𝐇𝐀𝐍𝐍𝐄𝐋 𝐅𝐈𝐑𝐒𝐓 𝐁𝐄𝐅𝐎𝐑𝐄 𝐕𝐎𝐓𝐈𝐍𝐆. 🔥 VOTE FOR ME HERE: 👉 https://t.me/Jcpir/15 ──────────────────────────── 👤 @piratecodez | 🏰 @coderempire

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 projectFast, lightweight, and easy to use
[CLICK HERE TO SUPPORT BY GIVING REACTIONS] API by @UseApis@UseSir