𝗽𝗵𝗽 𝗳𝗶𝗹𝗲
Open in Telegram
قناة مختصة بنشر ملفات بوتات وapi ومواقع، بلغة : php,html,css,js,sql owner : @none? - amo
Show more415
Subscribers
No data24 hours
No data7 days
+1130 days
Posts Archive
415
Repost from N/a
📌 مُتاح حاليا ادخل لكم وساطات للي يريد 📓
📌 عَ الشغلات الي مَ تاخذ عموله ادخللكم مجانا " مثل المعرفات🥳 - القنوات وغيرها من الشغلات الي م تاخذ عموله 🤍"
📌 اما الشغلات الي تاخذ عموله مثلا تحويل بين عملات او nft وهيج شغلات اخذ فقط عموله التحويل 🐰
▶️ @D_DDDD مُعرفي 💬
▶️
+9647764316254 رَقمي ✔️
احبكم ☀️415
Repost from 𝗥𝗔𝗗 ✗ 𝗖𝗢𝗗𝗘𝗥
انشرلكم شغلات تخص التشكير وصيد يوزرات التلكرام مثل صيد حذف او خاصية @radfx2 ⭐️
415
Repost from 𝗥𝗔𝗗 ✗ 𝗖𝗢𝗗𝗘𝗥
↫︙كود python يفحصلك المعرف اذا متاح ولا لا الكود بس استعمال دالا التليكرام يرجعلك قيما True Or False يفيد اصحاب التشكير ⭐️🐋
↫︙ملاحضة: الكود يحتاج سيشن pyrogram😄
↫ اللغة : python 🎶
↫ المكتبة : pyrogram - UserBot ⭐
# Requier Pyrogram PLugins from pyrogram import Client, raw # Rquier async MOdules import asyncio # CHECK_USERNMAE functions async def CHECK_USERNMAE(sessions_string: str, username: str): async with Client(":memory:", api_hash="hddsxxxxxxxxxxxxxxxxxx", api_id=1234, session_string=sessions_string) as app: response = await app.invoke(raw.functions.account.CheckUsername( username=username )) return response status = asyncio.run(CHECK_USERNMAE( sessions_string="<SESSIONS>", # SESSION TELEGRAM ACCOUNT username="radfx2" # Chat username ))↫︙Dev : @R_AFX ↫︙CH @radfx2 ⭐️
415
Repost from 𝗥𝗔𝗗 ✗ 𝗖𝗢𝗗𝗘𝗥
↫︙كود python عمل زر مشارك البوت او مشاركة رسالا 😄
# Requier Bot Modules # Requier Pyrogram Mudoles from pyrogram import Client, types, filters # Require aSync Modules import asyncio # Start Pyrogram app app = Client( name="radsession", # Session name bot_token="<API_KEY>", # Bot APi Key api_hash="95fxxxxxxxxxxxxxxxxxxxx", # Account Api HAsh api_id=12345000, # Account Api id ) # On /Start Bot @app.on_message(filters=filters.private & filters.regex('^/start$')) # ON STARTY BOT FUNCTIONS async def ON_START_BOT(app: Client, message: types.Message): await app.send_message( chat_id=message.chat.id, text="Hey, Welcome To bots ", reply_markup=types.InlineKeyboardMarkup([ [ types.InlineKeyboardButton(text="شارك البوت",switch_inline_query="شارك البوت ") ] ]) ) # Start Run Pyrogram Apps asyncio.run(app.run())↫︙Dev : @R_AFX ↫︙CH @radfx2 ⭐️
415
Repost from 𝗥𝗔𝗗 ✗ 𝗖𝗢𝗗𝗘𝗥
↫︙ملف بوت تحكم في حسابات التلكرام ⭐
↫︙مميزات الملف :
1 - اضافة حسابات لا محدودة تسليم من داخل البوت ✔️
2 - فحص الحسابت وحذف الحسابات التي لا تعمل ⭐️
3 - الخدمات المتوفرة حالي في الملف انضمام مو مغادر في قناة او دردشة ⭐️
↫︙طريقا التشغيل : تعديل ملف Config.py اضافة توكن و API_HASH + API_ID و ايدي حسابك ⭐️
😄اذا تاخذ الملف او تنشرة اذكر المصدر
↫︙Dev : @R_AFX ↫︙CH @radfx2 ⭐️
415
Repost from 𝗥𝗔𝗗 ✗ 𝗖𝗢𝗗𝗘𝗥
↫︙كود python تغير وصف مجموعة او قناة descriptio ⭐️
↫︙ملاحضة: الكود يحتاج سيشن pyrogram 😄
↫ اللغة : python ⭐️
↫ المكتبة : pyrogram - UserBot ⭐
# Requier Pyrogram PLugins from pyrogram import Client # Rquier async MOdules import asyncio # Set Chat description MEssage messaeg functions async def SET_CHAT_DESCRIPTION(sessions_string: str, chat_id: str | int, description: str): async with Client(":memory:", api_hash="", api_id=1234, session_string=sessions_string) as app: await app.set_chat_description( chat_id=chat_id, description=description ) asyncio.run(SET_CHAT_DESCRIPTION( sessions_string="<SESSIONS>", # SESSION TELEGRAM ACCOUNT chat_id="<chat>", # chat id or username description="<description>" # New description ))↫︙Dev : @R_AFX ↫︙CH @radfx2 ⭐️
415
Repost from 𝗥𝗔𝗗 ✗ 𝗖𝗢𝗗𝗘𝗥
↫︙كود python تغير اسم مجموعة او قناة title ⭐️⭐️
↫︙ملاحضة: الكود يحتاج سيشن pyrogram 😄
↫ اللغة : python ⭐️
↫ المكتبة : pyrogram - UserBot ⭐
# Requier Pyrogram PLugins from pyrogram import Client # Rquier async MOdules import asyncio # Set Chat Title MEssage messaeg functions async def SET_CHAT_TITLE(sessions_string: str, chat_id: str | int, title: str): async with Client(":memory:", api_hash="", api_id=1234, session_string=sessions_string) as app: await app.set_chat_title( chat_id=chat_id, title=title ) asyncio.run(SET_CHAT_TITLE( sessions_string="<SESSIONS>", # SESSION TELEGRAM ACCOUNT chat_id="<chat>", # chat id or username title="<NEW_TITLE>" # New Title ))↫︙Dev : @R_AFX ↫︙CH @radfx2 ⭐️
415
Repost from 𝗥𝗔𝗗 ✗ 𝗖𝗢𝗗𝗘𝗥
↫︙كود python تغير يوزر قناة او مجموعة ⭐️
↫︙ملاحضة: الكود يحتاج سيشن pyrogram 😄
↫ اللغة : python ⭐️
↫ المكتبة : pyrogram - UserBot ⭐
# Requier Pyrogram PLugins from pyrogram import Client # Rquier async MOdules import asyncio # set username from account functions async def SET_CHAT_ISERNAME(sessions_string: str,chat_id : str | int, username: str): async with Client(":memory:", api_hash="hddsxxxxxxxxxxxxxxxxxx", api_id=1234, session_string=sessions_string) as app: response = await app.set_chat_username( chat_id=chat_id, username=username ) print(response) asyncio.run(SET_CHAT_ISERNAME( sessions_string="<SESSIONS>", # SESSION TELEGRAM ACCOUNT chat_id="<USERNAME>", # Channls Username OR ID username="<New_username>" # New Username ))↫︙Dev : @R_AFX ↫︙CH @radfx2 ⭐️
415
Repost from 𝗥𝗔𝗗 ✗ 𝗖𝗢𝗗𝗘𝗥
↫︙كود python تغير يوزر حسابك عبر Pyro ⭐️
↫︙ملاحضة: الكود يحتاج سيشن pyrogram 😄
↫ اللغة : python ⭐️
↫ المكتبة : pyrogram - UserBot ⭐
# Requier Pyrogram PLugins from pyrogram import Client # Rquier async MOdules import asyncio # set username from account functions async def SET_USERNAME(sessions_string: str, username: str): async with Client(":memory:", api_hash="hddsxxxxxxxxxxxxxxxxxx", api_id=1234, session_string=sessions_string) as app: response = await app.set_username( username=username ) print(response) asyncio.run(SET_USERNAME( sessions_string="<SESSIONS>", # SESSION TELEGRAM ACCOUNT username="radfx2" # New Username ))↫︙Dev : @R_AFX ↫︙CH @radfx2 ⭐️
415
📌سوبر بيع وشراء ، مرتب ومقسم لهواي شغلات ، تلجرام - انستا - وكل المنصات حبايبي! 🫣
فوت عمري 💗.
✅ @PbPPP
📍 https://t.me/+Qa66HHsEJbwyZWNi
415
Repost from N/a
↫︙كود python اضاف اعضاء لي قناة او مجموعة ⭐️
↫︙ملاحضة: الكود يحتاج سيشن pyrogram 🎶
↫ اللغة : python ⭐️
↫ المكتبة : pyrogram - UserBot ⭐
# Requier Pyrogram PLugins from pyrogram import Client # Rquier async MOdules import asyncio # add chat member chat functions async def ADD_CHAT_MEMBER(sessions_string: str, username: str, users: list): async with Client(":memory:", api_hash="ffexxxxxxxxxxxxxx", api_id=12345, session_string=sessions_string) as app: await app.add_chat_members( chat_id=username, # Channl or group username, user_ids=users # USers List ids or username ) asyncio.run(ADD_CHAT_MEMBER( sessions_string="<SESSIONS>", # SESSION TELEGRAM ACCOUNT username="radfx2", # Chat username , users=['r_afx'] # list Username add from chat ))↫︙Dev : @R_AFX ↫︙CH @radfx2 ⭐️
