3 524
Подписчики
-324 часа
-107 дней
-11830 день
Архив постов
3 523
هسه هذا شنو ذنبه زلم زربه مايدرون حكمهم مايدوم شهرين بعد.
http://103.171.175.27:8080/watch/67cc285e1655cba58d65bf66
3 523
كود يغادر القنوات بحسابك.
import telethon.sync
import os
import asyncio
from telethon.tl.functions.channels import LeaveChannelRequest
async def leave_channels():
async with telethon.TelegramClient('V26', 21542457, '1fe0f7dab2b60a91e897b531c425b286') as client:
await client.start()
os.system('clear')
dialogs = await client.get_dialogs()
for dialog in dialogs:
if dialog.is_channel:
try:
await client(LeaveChannelRequest(dialog.id))
print(f"- تم مغادرة القناة: {dialog.name}")
except Exception as e:
print(f"- اكو مشكلة بمغادرة {dialog.name}: {e}")
print("✓ تم مغادرة جميع القنوات بنجاح.")
asyncio.run(leave_channels())
3 523
كود يغادر القنوات
import telethon.sync
import os
import asyncio
from telethon.tl.functions.channels import LeaveChannelRequest
async def leave_channels():
async with telethon.TelegramClient('V26', 21542457, '1fe0f7dab2b60a91e897b531c425b286') as client:
await client.start()
os.system('clear')
dialogs = await client.get_dialogs()
for dialog in dialogs:
if dialog.is_channel:
try:
await client(LeaveChannelRequest(dialog.id))
print(f"- تم مغادرة القناة: {dialog.name}")
except Exception as e:
print(f"- اكو مشكلة بمغادرة {dialog.name}: {e}")
print("✓ تم مغادرة جميع القنوات بنجاح.")
asyncio.run(leave_channels())3 523
import requests
API_KEY = "sk_d09bd8d48d2bc7292df2d74360fdad455f5f81a5a1ea7aee"
VOICE_ID = "iP95p4xoKVk53GoZ742B"
text = input("Enter text to convert to speech: ")
URL = f"https://api.elevenlabs.io/v1/text-to-speech/{VOICE_ID}"
HEADERS = {
"Accept": "audio/mpeg",
"xi-api-key": API_KEY,
"Content-Type": "application/json"
}
DATA = {
"text": text,
"model_id": "eleven_multilingual_v1",
"voice_settings": {"stability": 1, "similarity_boost": 1}
}
response = requests.post(URL, headers=HEADERS, json=DATA)
if response.ok:
with open("output.mp3", "wb") as f:
f.write(response.content)
print("Audio saved as output.mp3")
else:
print("Error:", response.text)
كود تحويل النص الئ صوت مثل البشر بذكاء الاصطناعي بس المشكله محدود. انت سوي اشتراك مدفوع بدون حدود + تكدر تخلي الصوت انثئ واصوات هواي حتئ استنساخ الصوت.
3 523
import requests
API_KEY = "sk_d09bd8d48d2bc7292df2d74360fdad455f5f81a5a1ea7aee"
VOICE_ID = "iP95p4xoKVk53GoZ742B"
text = input("Enter text to convert to speech: ")
URL = f"https://api.elevenlabs.io/v1/text-to-speech/{VOICE_ID}"
HEADERS = {
"Accept": "audio/mpeg",
"xi-api-key": API_KEY,
"Content-Type": "application/json"
}
DATA = {
"text": text,
"model_id": "eleven_multilingual_v1",
"voice_settings": {"stability": 1, "similarity_boost": 1}
}
response = requests.post(URL, headers=HEADERS, json=DATA)
if response.ok:
with open("output.mp3", "wb") as f:
f.write(response.content)
print("Audio saved as output.mp3")
else:
print("Error:", response.text)
كود تحويل النص الئ صوت مثل البشر بذكاء الاصطناعي بس المشكله محدود. انت سوي اشتراك مدفوع بدون حدود + تكدر تخلي الصوت انثئ واصوات هواي حتئ استنساخ الصوت.3 523
كود يدزلك ترجمه الفيديو ع يوتيوب يختصرلك.
حمل مكتبه youtube_transcript_api
الكود
from youtube_transcript_api import YouTubeTranscriptApi
import re
url = input("انطيني رابط الفيديو: ")
match = re.search(r"(?:v=|youtu\.be/|shorts/)([a-zA-Z0-9_-]+)", url)
if match:
v_id = match.group(1)
lang = input("انطيني رمز اللغة كمثال ar للعربية: ")
try:
transcript = YouTubeTranscriptApi.get_transcript(v_id, languages=[lang])
print("النص المستخرج:\n" + ' '.join([t['text'] for t in transcript]))
except:
print(f"الترجمة ماكو باللغة {lang}.")3 523
ايبي صنع صور بذكاء الاصطناعي شتريد يصنع
http://imgapi.ct.ws/img/api.php?text=ميسي
3 523
import telebot
import requests
from telebot import types
bot = telebot.TeleBot('توكن بوتك')
def parse_number(value):
if 'm' in value:
return float(value.replace('m', '')) * 1000000
elif 'k' in value:
return float(value.replace('k', '')) * 1000
elif 'b' in value:
return float(value.replace('b', '')) * 1000000000
else:
return float(value)
@bot.message_handler(commands=['start'])
def start(message):
bot.reply_to(message, f"• مرحبا عزيزي {message.from_user.first_name} في بوت معلومات تيك توك!\n- يمكنك البحث عن أي حساب باستخدام اسم المستخدم فقط.", reply_markup=types.InlineKeyboardMarkup().add(types.InlineKeyboardButton("قناة البوت", url="https://t.me/LL_php")))
@bot.message_handler(func=lambda message: True)
def get_user_info(message):
username = message.text.lstrip('@')
search_message = bot.reply_to(message, '🔍 جارِ البحث عن الحساب...')
url = f'http://158.69.251.105:5000/tiktok_api?username={username}'
try:
response = requests.get(url).json()
if 'username' in response:
likes, followers = parse_number(str(response.get('likes', 0))), parse_number(str(response.get('followers', 0)))
engagement_rate = (likes / followers) * 100 if followers > 0 else 0
text = f"""
🧑💻 اسم المستخدم: {response.get('username', 'ماكو')}
🏷️ الاسم: {response.get('name', 'ماكو')}
🗓️ تم إنشاء الحساب بتاريخ: {response.get('account_created', 'ماكو')}
👥 المتابعين: {response.get('followers', 'ماكو')}
🔄 المتابَعون: {response.get('following', 'ماكو')}
✨ السيرة الذاتية: {response.get('bio', 'ماكو')}
🌍 البلد: {response.get('country', 'ماكو')}
❤️ الإعجابات: {response.get('likes', 'ماكو')}
🔒 الحساب خاص: {'نعم' if response.get('private_account') else 'لا'}
🌎 رمز البلد: {response.get('region', 'أي')}
🆔 الايدي: {response.get('id', 'ماكو')}
🎥 مقاطع الفيديو: {response.get('videos', 'أي')}
✅ الحساب موثق: {'نعم' if response.get('verified') else 'لا'}
📊 نسبة التفاعل: {engagement_rate:.2f}%
"""
if (photo := response.get('profile_picture')):
bot.edit_message_media(media=types.InputMediaPhoto(photo, caption=text, parse_mode='Markdown'), chat_id=message.chat.id, message_id=search_message.message_id)
else:
bot.edit_message_text(text, chat_id=message.chat.id, message_id=search_message.message_id, parse_mode='Markdown')
else:
bot.edit_message_text('مالكيت الحساب.', chat_id=message.chat.id, message_id=search_message.message_id)
except Exception:
bot.edit_message_text('للاسف اكو مشكلة.', chat_id=message.chat.id, message_id=search_message.message_id)
bot.polling()
كود معلومات تيك توك
3 523
تم تحديث بوت وتغير محتوى اكو تعديلات بل مستقبل بحث بل صور واضافة روابط مباشر للمشاهدة
يوزر البوت:- @W_AN1BOT
3 523
معلومات تيك توك بدون توقف دائمي وبدون حظر.+ تكدر تخلي يطلع بعد هواي معلومات
تفاعل حتئ انشره.
3 523
99% من بوتات التلكرام مال ناس
خوات كحبه
ليش خوات كحبه لان مثل بوت تحميل تحمل شي يوصل للمطور وهيج كل البوتات ماعرف شيحسون 🤣.
Уже доступно! Исследование Telegram 2025 — ключевые инсайты года 
