𝐅𝐮𝐫𝐤𝐚𝐧 𝐏𝐲𝐭𝐡𝐨𝐧 | 𝐀𝐫𝐬𝐢𝐯
📢 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.
from pystyle import Write, Colors
from phonenumbers import parse, is_valid_number, is_possible_number, carrier, geocoder, timezone, PhoneNumberFormat, format_number
def telefon_bilgisi(telefon):
try:
telefon = telefon.strip()
if not telefon.startswith("+"):
telefon = "+" + telefon
parsed_phone = parse(telefon, None)
if not is_valid_number(parsed_phone):
Write.Print("\n[!] Hata -> Geçersiz telefon numarası\n", Colors.red_to_yellow, interval=0.005)
return
operator_bilgi = carrier.name_for_number(parsed_phone, "tr")
ulke = geocoder.description_for_number(parsed_phone, "tr")
bolge = geocoder.description_for_number(parsed_phone, "tr")
formatli_numara = format_number(parsed_phone, PhoneNumberFormat.INTERNATIONAL)
aktif_mi = is_possible_number(parsed_phone)
gecerli_mi = is_valid_number(parsed_phone)
link_numara = ''.join(filter(str.isdigit, telefon))
aktif_ulkeler = {
90: "Türkiye", 1: "Amerika Birleşik Devletleri", 44: "Birleşik Krallık",
49: "Almanya", 33: "Fransa", 39: "İtalya", 7: "Rusya", 91: "Hindistan",
34: "İspanya", 55: "Brezilya", 61: "Avustralya", 81: "Japonya", 994: "Azerbaycan"
}
if parsed_phone.country_code in aktif_ulkeler:
telegram_varmi = "Telegram: Kullanıcı bulunabilir."
whatsapp_varmi = "WhatsApp: Aktif kullanım ihtimali yüksek."
else:
telegram_varmi = "Telegram: Durum bilinmiyor."
whatsapp_varmi = "WhatsApp: Durum bilinmiyor."
bilgi = f"""
[+] Telefon Numarası -> {formatli_numara}
[+] Ülke -> {ulke}
[+] Bölge -> {bolge}
[+] Operatör -> {operator_bilgi if operator_bilgi else "Bilinmiyor"}
[+] Kullanılabilir -> {"Evet" if aktif_mi else "Hayır"}
[+] Geçerli -> {"Evet" if gecerli_mi else "Hayır"}
[+] {telegram_varmi}
[+] {whatsapp_varmi}
[+] Telegram Linki -> https://t.me/{link_numara}
[+] Whatsapp Linki -> https://wa.me/{link_numara}
[+] Viber Linki -> https://viber.click/{link_numara}
[+] Telegram : @SahalBen\n"""
Write.Print(bilgi, Colors.red_to_yellow, interval=0.005)
except Exception as hata:
Write.Print(f"\n[!] Hata oluştu -> {str(hata)}\n", Colors.red_to_yellow, interval=0.005)
def main():
telefon = Write.Input("\n[?] Telefon numarasını girin -> ", Colors.red_to_yellow, interval=0.005)
telefon_bilgisi(telefon)
if __name__ == "__main__":
main()
Numara HAKKINDA BİLGİ VERİR + İLE GİRİN