ملفات Pydroid+php
3.52K subscribers
60 photos
20 videos
41 files
165 links
Download Telegram
<?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
1
واحد يتورط يرفع بوت عربي بقناة
يعني الاذاعات بعد ماتوكف
😁4
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
👍3
ملفات Pydroid+php
l.py
ع شكل ملف بدون مشاكل.
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
👍1🔥1
او تكدر تستخدم الايبي هذا
https://poetry.dctabudhabi.ae/api/search?pageNumber=1&pageSize=30&searchValue=بابل&searchType=poem

بدل بابل استخدم النص للبحث
🔥2
بوت ارسال رسايل ع البريد تكدر تضيف اكثر من بريد ترسل بيهن انشر الملف لو اكو ملفات طاشه هيج
👍2❤‍🔥11🔥1
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
👍31❤‍🔥1😁1
تردون كود توليد مفاتيح هامستر بدون تعب ؟
👏2
سويت بوت بس يحتاج سيرفر ماريد ارفعه بسيرفري
😁4❤‍🔥1
عندي 200 كروب انشاء 2020 - 2021 - 2022 من اكتب للبيع يجي الف شخص ؟ لازم اكو سر يخليهم يشترون انشاء قديم شنو محد يعرفه
👍2
10 كروبات انشاء 2022 ب 20 اسيا.
إعتقال مؤسس "تلغرام" الروسي بافيل دوروف في باريس:

وصل دوروف إلى فرنسا قادما من أذربيجان، وكان معه صديقته وحارسه الشخصي.

وتم اعتقال دوروف من قبل أجهزة الأمن الفرنسية في المطار أثناء نزوله من طائرته الخاصة، بعد إصدار مذكرة اعتقال بحقه.

وذكرت قناة TF1 الفرنسية أن مذكرة الاعتقال صدرت بسبب عدم تعاون دوروف مع قوات الأمن الفرنسية، مما يجعله شريكا في تهريب المخدرات وجرائم خطيرة أخرى.

وأضافت القناة أن الشكوى الرئيسية لسلطات الاتحاد الأوروبي ضد "تلغرام" هي الرسائل المشفرة.

وقال المحقق: "على مر السنين، أصبحت هذه هي المنصة الأولى للجريمة المنظمة".
1👍1
شكد بيهن فلوس عراقيه
👍2❤‍🔥1
بوت القطط راح يندرج بالشهر الجاي نفس بوت الكلاب هم
http://t.me/catsgang_bot/join?startapp=X8SI0LvpUH1TpZrRwnzvx
ملفات Pydroid+php
ايبي جديد https://tiktoklab-bot.ru/api/index.php?text=احبك
ايبي فول وسريع ينطيك العنوان المدة للصوتيه ورابطها 🔥
👍1
This media is not supported in your browser
VIEW IN TELEGRAM
ثغره لايكات تيك توك - منقول اذا عندك فيديو واصل كمثال 1مليون لايك تكدر تحذف الفيديو وترجعه تتضاعف الايكات #منقول
🖕72👍2❤‍🔥1
إنّا لله وإنّا إليهِ رَاجعُون

السيد القائد حسن نصر الله شهيدا على طريق القدس
🤣14💔53😁2👍1😍1