ch
Feedback
ملفات Pydroid+php

ملفات Pydroid+php

前往频道在 Telegram
3 186
订阅者
-424 小时
-247 天
-10230 天
帖子存档
شلون تنسحب هاي العملات ع تون مادري 🤣
شلون تنسحب هاي العملات ع تون مادري 🤣

عندي 200 كروب انشاء 2020 - 2021 - 2022 من اكتب للبيع يجي الف شخص ؟ لازم اكو سر يخليهم يشترون انشاء قديم شنو محد يعرفه

سويت بوت بس يحتاج سيرفر ماريد ارفعه بسيرفري
سويت بوت بس يحتاج سيرفر ماريد ارفعه بسيرفري

تردون كود توليد مفاتيح هامستر بدون تعب ؟

import telebot import smtplib import ssl from telebot import types import logging from concurrent.futures import ThreadPoolExecutor logging.basicConfig(filename='bot_activity.log', level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s') API_TOKEN = 'توكن بوتك' bot = telebot.TeleBot(API_TOKEN) accounts_data = """ renochan628@gmail.com:rksl pbzq yfxf brqj """ accounts = [ {"email": line.split(':')[0], "password": line.split(':')[1]} for line in accounts_data.strip().split('\n') ] subject = "" body = "" msg = "" recipients = [ 'a04017468@gmail.com' ] port = 465 sslcontext = ssl.create_default_context() def send_email(email, password, receiver): try: connection = smtplib.SMTP_SSL("smtp.gmail.com", port, context=sslcontext) connection.login(email, password) connection.sendmail(email, receiver, msg) logging.info(f"Sent email to {receiver} from {email}.") bot.send_message(receiver, "تم إرسال الرسالة.") connection.quit() except Exception as e: logging.error(f"Error sending email: {e}") @bot.message_handler(commands=['start']) def handle_start(message): markup = types.ReplyKeyboardMarkup(row_width=2, resize_keyboard=True) btn1 = types.KeyboardButton('أضف موضوع') btn2 = types.KeyboardButton('أضف رسالة') btn3 = types.KeyboardButton('إرسال الرسائل') btn4 = types.KeyboardButton('أضف عدد الرسائل') markup.add(btn1, btn2, btn3, btn4) bot.reply_to(message, "اختر من الازرار شتريد تسوي:", reply_markup=markup) @bot.message_handler(func=lambda message: message.text in ['أضف موضوع', 'أضف رسالة', 'إرسال الرسائل', 'أضف عدد الرسائل']) def handle_button_click(message): if message.text == 'أضف موضوع': bot.reply_to(message, "يرجى إرسال الموضوع.") bot.register_next_step_handler(message, process_subject) elif message.text == 'أضف رسالة': bot.reply_to(message, "يرجى إرسال الرسالة.") bot.register_next_step_handler(message, process_body) elif message.text == 'إرسال الرسائل': bot.reply_to(message, "☑") send_emails(1) bot.send_message(message.chat.id, "تم إرسال الرسائل!") elif message.text == 'أضف عدد الرسائل': bot.reply_to(message, "يرجى إدخال عدد الرسائل التي ترغب في إرسالها.") bot.register_next_step_handler(message, process_num_emails) def process_subject(message): global subject subject = message.text bot.reply_to(message, f"تم تعيين الموضوع: {subject}") def process_body(message): global body body = message.text bot.reply_to(message, f"تم تعيين الرسالة: {body}") def process_num_emails(message): try: num_emails = int(message.text) bot.reply_to(message, f"تم تعيين عدد الرسائل: {num_emails}") send_emails(num_emails) bot.reply_to(message, f"تم إرسال {num_emails} رسالة!") except ValueError: bot.reply_to(message, "يرجى إدخال رقم صحيح لعدد الرسائل.") def send_emails(num_emails): global subject, body, msg if not subject or not body: logging.error("Subject or body is missing!") return msg = f'Subject: {subject}\n\n{body}' with ThreadPoolExecutor() as executor: for account in accounts: email = account["email"] password = account["password"] for _ in range(num_emails): executor.submit(send_email, email, password, recipients[0]) bot.polling() المصدر ## ##@LL_php ##@LL_php

بوت ارسال رسايل ع البريد تكدر تضيف اكثر من بريد ترسل بيهن انشر الملف لو اكو ملفات طاشه هيج
بوت ارسال رسايل ع البريد تكدر تضيف اكثر من بريد ترسل بيهن انشر الملف لو اكو ملفات طاشه هيج

او تكدر تستخدم الايبي هذا https://poetry.dctabudhabi.ae/api/search?pageNumber=1&pageSize=30&searchValue=بابل&searchType=poem بدل بابل استخدم النص للبحث

photo content

import requests from bs4 import BeautifulSoup def send_request(url): response = requests.get(url) return response.json() search_value = input("ادخل النص المراد البحث عنه: ") search_value_encoded = requests.utils.quote(search_value) search_url = f"https://poetry.dctabudhabi.ae/api/search?pageNumber=1&pageSize=30&searchValue={search_value_encoded}&searchType=poem" response = send_request(search_url) print("الاقتباسات:") items = response.get('result', {}).get('items', []) quote_number = 1 for item in items: content = item.get('content', []) for part in content: partA = BeautifulSoup(part.get('partA', ''), 'html.parser').text partB = BeautifulSoup(part.get('partB', ''), 'html.parser').text if partA: print(f"الاقتباس رقم {quote_number} : {partA}") quote_number += 1 if partB: print(f"الاقتباس رقم {quote_number} : {partB}") quote_number += 1 print('---') ##المصدر @LL_php

ع شكل ملف بدون مشاكل.

import requests def add_order(url, service_id, quantity="100"): data = { "key": "2d9309e1eae3df98355b8a0ebf853983", "action": "add", "link": url, "quantity": quantity, "service": service_id } res = requests.post("https://smmxpepo.shop/api/v2", data=data).text print(f"Order Response: {res}") def main(): print("أهلا بك! يمكنك طلب الخدمة عبر إرسال الرابط واختيار نوع الخدمة:") print("1. مشاهدات انستكرام") print("2. لايكات انستكرام") print("3. تفاعلات تليجرام") print("4. مشاهدات تلجرام") service_choice = input("اختر نوع الخدمة بالرقم: ") url = input("أدخل رابط المنشور: ") if service_choice == "1": add_order(url, "1031") elif service_choice == "2": add_order(url, "1032", quantity="10") elif service_choice == "3": add_order(url, "1034", quantity="10") elif service_choice == "4": add_order(url, "1033", quantity="25") else: print("الرجاء اختيار رقم صحيح لنوع الخدمة.") print("تم طلب الخدمة بنجاح.") if name == "main": main() @LL_php

شكد تفكير خايس :
شكد تفكير خايس :

واحد يتورط يرفع بوت عربي بقناة يعني الاذاعات بعد ماتوكف

🔻متاح الان تنصيب ميوزك على سورس العالم مجاني ▶️✔️ 🔻تلات صوانع تقدر تنصب حاليا ميوزك من غير ما تدفع فلوس💠💻 (¹) مصنع : @EF_F_bot 💃 (¹) مصنع : @Y1E_bot 💃 (¹) مصنع :@EY4_bot 💃 صـانـع بـوتـات ميوزك للغلابه😹😤. 𝙾𝚆𝙽𝙴𝚁» @M_9_T 𝙾𝚆𝙽𝙴𝚁» @N_7_K 𝙲𝚑𝚊𝚗𝚗𝚎𝚕» https://t.me/vzo_a

<?php function captureScreenshot($url) {     $apiUrl = 'https://api.pikwy.com/';     $queryParams = http_build_query([         'tkn' => '125',         'd' => '3000',         'u' => $url,         'fs' => '0',         'w' => '1280',         'h' => '1200',         's' => '100',         'z' => '100',         'f' => 'jpg',         'rt' => 'jweb',     ]);     $fullUrl = $apiUrl . '?' . $queryParams;     $options = [         'http' => [             'header' => "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7\r\n" .                         "Accept-Encoding: gzip, deflate, br, zstd\r\n" .                         "Accept-Language: ru-RU,ru;q=0.9,en-US;q=0.8,en;q=0.7,uz;q=0.6\r\n" .                         "Cache-Control: max-age=0\r\n" .                         "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36\r\n",             'method' => 'GET',         ],     ];     $context = stream_context_create($options);     $result = file_get_contents($fullUrl, false, $context);     if ($result === FALSE) {         return "Error capturing screenshot.";     }     return $result; } $url = isset($_GET['url']) ? $_GET['url'] : null; $response = captureScreenshot($url); echo $response; ?> #سكرين للمواقع #@LL_php

عليمن تضحكون ليش تخلوني اغلط ؟

منو ثقه بتلي يبيع سيرفرات موسكو روسيا.