𝐅𝐮𝐫𝐤𝐚𝐧 𝐏𝐲𝐭𝐡𝐨𝐧 | 𝐀𝐫𝐬𝐢𝐯
📢 Furkan Python - Profesyonel Python Topluluğu "Bilgi paylaştıkça çoğalır." By @elliyemezsiniz
Show more📈 Analytical overview of Telegram channel 𝐅𝐮𝐫𝐤𝐚𝐧 𝐏𝐲𝐭𝐡𝐨𝐧 | 𝐀𝐫𝐬𝐢𝐯
Channel 𝐅𝐮𝐫𝐤𝐚𝐧 𝐏𝐲𝐭𝐡𝐨𝐧 | 𝐀𝐫𝐬𝐢𝐯 (@furkanpython) in the Turkish language segment is an active participant. Currently, the community unites 17 099 subscribers, ranking 5 778 in the Technologies & Applications category and 1 480 in the Turkey region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 17 099 subscribers.
According to the latest data from 13 July, 2025, the channel demonstrates stable activity. Although there has been a change in the number of participants by -717 over the last 30 days and by 0 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 0.47%. Within the first 24 hours after publication, content typically collects N/A% reactions from the total number of subscribers.
- Post reach: On average, each post receives 80 views. Within the first day, a publication typically gains 0 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 1.
- Thematic interests: Content is focused on key topics such as ğağwğwğğwwğ, arkadaş, yer, çocuk.
📝 Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
“📢 Furkan Python - Profesyonel Python Topluluğu
"Bilgi paylaştıkça çoğalır." By @elliyemezsiniz”
Thanks to the high frequency of updates (latest data received on 18 March, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.
import requests
def bin_sorgula(bin_numarasi):
try:
url = f"https://lookup.binlist.net/{bin_numarasi}"
headers = {
"Accept-Version": "3"
}
response = requests.get(url, headers=headers)
if response.status_code == 200:
veri = response.json()
print(f"\n[+] BIN: {bin_numarasi}")
print(f"[+] Marka: {veri.get('scheme', 'Bilinmiyor')}")
print(f"[+] Tür: {veri.get('type', 'Bilinmiyor')}")
print(f"[+] Seviyesi: {veri.get('brand', 'Bilinmiyor')}")
print(f"[+] Banka: {veri.get('bank', {}).get('name', 'Bilinmiyor')}")
print(f"[+] Ülke: {veri.get('country', {}).get('name', 'Bilinmiyor')} ({veri.get('country', {}).get('emoji', '')})")
print(f"[+] Para Birimi: {veri.get('country', {}).get('currency', 'Bilinmiyor')}")
print(f"[+] Banka Web: {veri.get('bank', {}).get('url', '-')}")
print("-" * 40)
else:
print(f"[!] BIN bulunamadı: {bin_numarasi}")
except Exception as e:
print(f"[!] Hata: {e}")
def toplu_bin_sorgula():
print("Toplu BIN sorgulama modu (Çıkmak için '31')")
while True:
bin_input = input("BIN gir (ilk 6 hane): ")
if bin_input.lower() == '31':
break
elif len(bin_input) < 6 or not bin_input.isdigit():
print("[!] Lütfen geçerli 6 haneli bir BIN girin.")
else:
bin_sorgula(bin_input)
if __name__ == "__main__":
print("=== BIN Info Tool ===")
toplu_bin_sorgula()
BİN İNFO TOOLfrom telethon.sync import TelegramClient
from telethon import events
import asyncio
api_id = 29709736
api_hash = '15afdeeee9e3b5d2e6a85406bd5466b6'
telno = "Numara"
client = TelegramClient('temizleyici_userbot', api_id, api_hash)
@client.on(events.NewMessage(pattern=r"\.temizle"))
async def temizle(event):
sender = await event.get_sender()
if str(sender.phone) != telno.replace("+", ""):
return
chat = await event.get_chat()
deleted_count = 0
async for msg in client.iter_messages(chat, reverse=True):
try:
await client.delete_messages(chat, msg)
deleted_count += 1
except:
pass
if deleted_count % 100 == 0:
await asyncio.sleep(2)
try:
await client.send_message(chat, f"✅ {deleted_count} mesaj başarıyla silindi.")
except:
pass
with client:
print("Userbot çalışıyor...")
client.run_until_disconnected()
Post silici
Numara gir yeter
.temizle komutu gönderildiği sohbet (grup, kanal veya bireysel chat) içindeki tüm mesajları siler.
Silinen mesaj sayısını komutu gönderen sohbete bildirir.
Telegram: @SahalBenGrup | Kanal ID Alma Botu Ne İşe Yarar? Bu bot sayesinde bir kanalı veya grubu paylaşarak, başlığını ve chat ID’sini otomatik olarak öğrenebilirsin. @username_to_id_bot Benzeri kodTelegram : @SahalBen |
import requests
def check_vpn(ip):
try:
response = requests.get(f"http://ip-api.com/json/{ip}?fields=proxy,hosting,mobile,query", timeout=5)
data = response.json()
ip_address = data.get("query", ip)
if data.get("proxy") or data.get("hosting"):
print(f"[!] {ip_address} --> VPN veya proxy kullanıyor.")
else:
print(f"[✓] {ip_address} --> VPN değil.")
except Exception as e:
print(f"[HATA] Hata oluştu: {e}")
if __name__ == "__main__":
ip = input("IP adresini girin: ")
check_vpn(ip)
İP ADRESİN VPN OLUP OLMADIĞINI TESPİ EDER
TELEGRAM : @SahalBen