๐ ๐ฑ๐ค ๐ธ๐ฎ๐ด ๐ข๐ฎ๐ญ๐ญ๐ค๐ข๐ณ๐ค๐ฃ ๐ฝ๐
FฬทRฬทEฬทEฬท IฬทNฬทTฬทEฬทRฬทNฬทEฬทTฬทใ๏ธโป
โ Unmute channel
https://t.me/UNLIMITEDNETWORK9
Are you looking for a one-stop destination for all your tech needs? Look no further than the Telegram channel '๐
เผบ๐๐๐๐๐๐ ๐๐๐๐เผป๐
' with the username '@blackytechx'. This channel offers a wide range of services to cater to tech enthusiasts and learners alike. From free credit card information to free BIN codes, paid hacking tutorials, and carding courses, this channel has it all. In addition, you can find premium tools and sites, premium OTT accounts, software, license keys, helpful articles, tips, and tricks, mod APKs, and much more
Whether you are looking to enhance your tech skills, learn about the latest hacking techniques, or access premium content, '๐
เผบ๐๐๐๐๐๐ ๐๐๐๐เผป๐
' is the perfect channel for you. Stay updated with the latest tech trends and get access to exclusive content that will take your tech knowledge to the next level. Don't miss out on the opportunity to join this growing community of tech enthusiasts and learners. Join '๐
เผบ๐๐๐๐๐๐ ๐๐๐๐เผป๐
' today and take your tech journey to new heights.
16 Nov, 15:01
16 Nov, 14:58
16 Nov, 14:54
16 Nov, 14:52
16 Nov, 14:51
16 Nov, 13:03
16 Nov, 11:01
16 Nov, 08:18
16 Nov, 04:36
15 Nov, 16:27
15 Nov, 15:41
15 Nov, 11:53
12 Nov, 17:50
12 Nov, 17:24
12 Nov, 17:18
12 Nov, 13:56
12 Nov, 12:36
from telegram import Update
from telegram.ext import Application, CommandHandler, MessageHandler, filters, ContextTypes
import requests
# Function to start the bot
async def start(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
await update.message.reply_text("๐๐๐๐๐ข! ๐ฆ๐๐ฅ, ๐'๐ ๐ ๐๐ฃ ๐๐๐ธ ๐จ๐ฃ ๐๐ข๐ง. ๐ฆ๐๐ก๐ ๐ ๐ ๐๐ฃ ๐ง๐ข ๐๐๐๐๐.
๐ข๐ช๐ก๐๐ฅ -@darkanons.")
# Function to perform IP lookup
async def lookup_ip(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
ip_address = update.message.text.strip()
try:
# Use IP lookup API (e.g., ip-api.com)
response = requests.get(f"http://ip-api.com/json/{ip_address}")
data = response.json()
if data["status"] == "success":
# Formatting the response
location_info = (
f"๐IP Addressโโ: {ip_address}\n"
f"๐ณ๏ธCountryโโ: {data['country']}\n"
f"โป๏ธRegionโโ: {data['regionName']}\n"
f"โ๏ธCityโโ: {data['city']}\n"
f"๐ฐZIPโโ: {data['zip']}\n"
f"โ ๏ธLatitudeโโ: {data['lat']}\n"
f"โ Longitudeโโ: {data['lon']}\n"
f"๐ISPโโ: {data['isp']}\n"
f"โ๏ธOrganizationโโ: {data['org']}"
)
else:
location_info = "Invalid IP address or unable to retrieve information."
await update.message.reply_text(location_info)
except Exception as e:
await update.message.reply_text("There was an error processing your request. Please try again.")
# Main function to run the bot
def main() -> None:
token = "YOUR_BOT_TOKEN" # Replace with your BotFather token
app = Application.builder().token(token).build()
# Command and message handlers
app.add_handler(CommandHandler("start", start))
app.add_handler(MessageHandler(filters.TEXT & ~filters.COMMAND, lookup_ip))
# Start the bot
print("Bot is running...")
app.run_polling()
if __name__ == "__main__":
main()
pip install python-telegram-bot requests
BY- @im_satyam_chauhan 12 Nov, 11:32
12 Nov, 10:26
12 Nov, 10:14
12 Nov, 09:32
12 Nov, 07:10
12 Nov, 07:05
12 Nov, 06:45
12 Nov, 06:41
12 Nov, 05:55