uz
Feedback
TryByte

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'rsatish
2 142
Obunachilar
Ma'lumot yo'q24 soatlar
-407 kunlar
+34830 kunlar
Postlar arxiv
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 project β€’ Fast, lightweight, and easy to use
[CLICK HERE TO SUPPORT BY GIVING REACTIONS] API by @UseApis β€’ @UseSir