ملفات Pydroid+php
Ir al canal en Telegram
3 186
Suscriptores
-424 horas
-247 días
-10230 días
Archivo de publicaciones
3 185
منصه جديده جايه تجمع نقاط منه وكل نقطه ينحسب $ عليه تسحبه ورا مايصير عمله ويصير سعر عملته غاليه
https://t.me/hamster_kombAt_bot/start?startapp=kentId5559430159
3 185
لتعديل الكود لاستخدام
_GET بدلاً من رمز فيديو YouTube، يمكنك استخدام $_GET['id'] في URL بدلاً من الرمز المباشر. قم بتعديل الكود كما يلي:
<?php
$id = $_GET['id']; // استقبال الرمز من المتغير _GET
$url = 'https://kakahwuwhw.serv00.net/F.php?brok=https://youtu.be/' . $id;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$data = json_decode($response, true);
$mh = curl_multi_init(); // Initialize multi cURL handler
$handles = []; // Array to store cURL handles
foreach ($data["medias"] as $media) {
if ($media["extension"] == "mp3") {
$audio_url = $media["url"];
$audio_title = "audio";
$audio_duration = $data["duration"];
$audio_filename = $audio_title . ".mp3"; // افتراضيًا اسم الملف هو "audio.mp3"
$fp = fopen($audio_filename, 'w+');
$ch = curl_init($audio_url);
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_multi_add_handle($mh, $ch); // Add handle to multi cURL handler
$handles[] = ['handle' => $ch, 'file' => $fp]; // Store handle and file pointer in array
}
}
// Execute all handles simultaneously
$active = null;
do {
curl_multi_exec($mh, $active);
} while ($active);
// Close all the handles
foreach ($handles as $handle) {
curl_multi_remove_handle($mh, $handle['handle']);
curl_close($handle['handle']);
fclose($handle['file']);
}
curl_multi_close($mh); // Close multi cURL handler
foreach ($data["medias"] as $media) {
if ($media["extension"] == "mp3") {
$audio_url = $media["url"];
$audio_title = "audio";
$audio_duration = $data["duration"];
$audio_filename = $audio_title . ".mp3"; // افتراضيًا اسم الملف هو "audio.mp3"
echo "تم تنزيل الصوت بنجاح إلى المسار: " . $audio_filename . "\n";
echo "رابط الصوت: " . $audio_url . "\n";
echo "عنوان الصوت: " . $audio_title . "\n";
echo "مدة الصوت: " . $audio_duration . "\n";
}
}
?>
لاحظ أنه يتوجب عليك تمرير قيمة id كمعلمة _GET في الURL لاستخدامها في الكود.3 185
ايبي رسم بذكاء الاصطناعي
https://aiimage.hellonepdevs.workers.dev/?prompt=النص
كمثال
https://aiimage.hellonepdevs.workers.dev/?prompt=Draw-a-lion
@LL_php
3 185
bot.sendChatAction(chat_id=message.chat.id, action="typing")
ms = message.text
url = f"https://teraboxvideodownloader.nepcoderdevs.workers.dev/?url={ms}"
try:
response = HTTP.get(url)
if response.status_code == 200:
data = response.json()
resolutions = data["response"][0]["resolutions"]
fast_download_link = resolutions["Fast Download"]
hd_video_link = resolutions["HD Video"]
thumbnail_url = data["response"][0]["thumbnail"]
video_title = data["response"][0]["title"]
tinyurl_api = "http://tinyurl.com/api-create.php?url="
tinyurl_fast_download = tinyurl_api + fast_download_link
tinyurl_hd_video = tinyurl_api + hd_video_link
shortened_fast_download_link = HTTP.get(tinyurl_fast_download).text
shortened_hd_video_link = HTTP.get(tinyurl_hd_video).text
markup = InlineKeyboardMarkup()
markup.row(
InlineKeyboardButton(
text='➡️ Fast Download',
url=shortened_fast_download_link
),
InlineKeyboardButton(
text='▶️ HD Video',
url=shortened_hd_video_link
)
)
markup.row(
InlineKeyboardButton(
text='Developer',
url ='https://t.me/LL_php'
)
)
message_text = f"🎬 <b>Title:</b> {video_title}"
bot.sendPhoto(
chat_id=message.chat.id,
photo=thumbnail_url,
caption=message_text,
parse_mode="HTML",
reply_markup=markup
)
else:
bot.sendMessage(
chat_id=message.chat.id,
text="❌ <b>Error fetching data from Terabox API</b>",
parse_mode="HTML"
)
except Exception as e:
bot.sendMessage(
chat_id=message.chat.id,
text=f"❌ <b>Error: {str(e)}</b>",
parse_mode="HTML"
)3 185
bot.sendChatAction(chat_id=message.chat.id, action="typing")
ms = message.text
url = f"https://music-api-rouge-rho.vercel.app/?songname={ms}"
try:
response = HTTP.get(url)
if response.status_code == 200:
data = response.json()
download_link = data["download_link"]
bot.sendDocument(
chat_id=message.chat.id,
document=download_link,
caption="🎶 <b><i>Music downloaded!</i></b> 🎵\n\nEnjoy the beats! 🎧",
parse_mode="HTML"
)
else:
bot.sendMessage(
chat_id=message.chat.id,
text="❌ <b>Error fetching data from the music API</b>",
parse_mode="HTML"
)
except Exception as e:
bot.sendMessage(
chat_id=message.chat.id,
text=f"❌ <b>Error: {str(e)}</b>",
parse_mode="HTML"
)3 185
bot.sendChatAction(chat_id=message.chat.id, action="typing")
ms = message.text
url = f"https://music-api-rouge-rho.vercel.app/?songname={ms}"
try:
response = HTTP.get(url)
if response.status_code == 200:
data = response.json()
download_link = data["download_link"]
bot.sendDocument(
chat_id=message.chat.id,
document=download_link,
caption="🎶 <b><i>Music downloaded!</i></b> 🎵\n\nEnjoy the beats! 🎧",
parse_mode="HTML"
)
else:
bot.sendMessage(
chat_id=message.chat.id,
text="❌ <b>Error fetching data from the music API</b>",
parse_mode="HTML"
)
except Exception as e:
bot.sendMessage(
chat_id=message.chat.id,
text=f"❌ <b>Error: {str(e)}</b>",
parse_mode="HTML"
)
3 185
bot.sendChatAction(chat_id=message.chat.id, action="typing")
ms = message.text
url = f"https://music-api-rouge-rho.vercel.app/?songname={ms}"
try:
response = HTTP.get(url)
if response.status_code == 200:
data = response.json()
download_link = data["download_link"]
bot.sendDocument(
chat_id=message.chat.id,
document=download_link,
caption="🎶 <b><i>Music downloaded by @BotUsername!</i></b> 🎵\n\nEnjoy the beats! 🎧",
parse_mode="HTML"
)
else:
bot.sendMessage(
chat_id=message.chat.id,
text="❌ <b>Error fetching data from the music API</b>",
parse_mode="HTML"
)
except Exception as e:
bot.sendMessage(
chat_id=message.chat.id,
text=f"❌ <b>Error: {str(e)}</b>",
parse_mode="HTML"
)
3 185
import requests
from colorama import Fore, Style, init
init(autoreset=True)
def get_nasa_mission_details():
url = "https://api.le-systeme-solaire.net/rest/bodies/"
print(f"🚀 Retrieving NASA mission details... 🌌 ")
response = requests.get(url)
ascii_art = """
███╗░░██╗░█████╗░░██████╗░█████╗░
████╗░██║██╔══██╗██╔════╝██╔══██╗
██╔██╗██║███████║╚█████╗░███████║
██║╚████║██╔══██║░╚═══██╗██╔══██║
██║░╚███║██║░░██║██████╔╝██║░░██║
╚═╝░░╚══╝╚═╝░░╚═╝╚═════╝░╚═╝░░╚═╝
"""
if response.status_code == 200:
data = response.json()
missions = data['bodies']
with open('nasa_missions.txt', 'w') as file:
file.write(ascii_art + "\n")
file.write(f"{Fore.GREEN}🚀 NASA Missions:\n\n{Style.RESET_ALL}")
print(ascii_art)
print(f"{Fore.GREEN}🚀 NASA Missions:\n{Style.RESET_ALL}")
for mission in missions:
if 'name' in mission and 'discoveryDate' in mission:
mission_name = mission['name']
discovery_date = mission['discoveryDate']
mission_details = (
f"{Fore.CYAN}🚀 Mission Name: {Fore.YELLOW}{mission_name}\n"
f"{Fore.CYAN}🗓 Discovery Date: {Fore.YELLOW}{discovery_date}\n"
f"{Fore.MAGENTA}🌟--------------------------------------🌟{Style.RESET_ALL}"
)
file.write(f"Mission Name: {mission_name}\nDiscovery Date: {discovery_date}\n\n")
print(mission_details)
print(f"\n{Fore.GREEN}✅ Mission details saved to nasa_missions.txt{Style.RESET_ALL}")
else:
print(f"{Fore.RED}❌ Failed to retrieve mission details{Style.RESET_ALL}")
if name == "main":
get_nasa_mission_details()3 185
if(mb_stripos($text,"/card_")!==false){
$shaxriyor = str_replace("card_","",$data);
$ritelop = json_decode(file_get_contents("https://reposu.org/payme/card/".$shaxriyor), true);
$card = $ritelop['result']['mask'];
$owner = $ritelop['result']['owner'];
$bank = $ritelop['result']['bank'];
send($cid,"<b>
💳 رقم البطاقة: $card
👤 صاحب البطاقة: $owner
📑 البنك: $bank
✉️ القناة: @LL_php
</b>",null);
}
/card_8600****3 185
<?php
header("Content-Type: application/json; charset=UTF-8");
$url = $_GET['url'];
$html = file_get_contents('https://t.me/s/'.$url);
$dom = new DOMDocument();
$dom->loadHTML($html);
$xpath = new DOMXPath($dom);
$subscriber_element = $xpath->query('//div[@class="tgme_channel_info_counter"][1]/span[@class="counter_value"]')->item(0)->nodeValue;
$photos_element = $xpath->query('//div[@class="tgme_channel_info_counter"][2]/span[@class="counter_value"]')->item(0)->nodeValue;
$videos_element = $xpath->query('//div[@class="tgme_channel_info_counter"][3]/span[@class="counter_value"]')->item(0)->nodeValue;
$files_element = $xpath->query('//div[@class="tgme_channel_info_counter"][4]/span[@class="counter_value"]')->item(0)->nodeValue;
$links_element = $xpath->query('//div[@class="tgme_channel_info_counter"][5]/span[@class="counter_value"]')->item(0)->nodeValue;
if($subscriber_element == null){
$subscriber = "غير متوفر!";
}else{
$subscriber = $subscriber_element;
}
if($photos_element == null){
$photos = "غير متوفر!";
}else{
$photos = $photos_element;
}
if($videos_element == null){
$videos = "غير متوفر!";
}else{
$videos = $videos_element;
}
if($files_element == null){
$files = "غير متوفر!";
}else{
$files = $files_element;
}
if($links_element == null){
$links = "غير متوفر!";
}else{
$links = $links_element;
}
$res = array(
'result'=>[
'المشتركين'=>$subscriber,
'الصور'=>$photos,
'الفيديوهات'=>$videos,
'الملفات'=>$files,
'الروابط'=>$links,
]);
if($url == null){
$result['result']="حدث خطأ ما!";
}else{
$result = $res;
}
echo json_encode($result, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
?>
@LL_php3 185
هذا البوت مدري مال منو جاي ابحوش بتلي ع استضافات ولكيته المهم اذا عندك ملف بوت بايثون ارفعه هنا @Free2hosting_bot
بس لاترفع البوت بقناتك ماندري امان لا
3 185
هذا خوش تطبيق يفيدكم بسحب الاتصالات
https://play.google.com/store/apps/details?id=com.reqable.android
3 185
لحد يستخدم هيج بوتات اول شي حساباتكم تنحذف
ثاني شي يخمطون حساباتكم ويرشقون بيها تفاعلات ومشتركين وغيرها هواي هذول شنو ؟ خوات كحبه اذا تردون تستخدمون هيج ملفات خاصه بيكم فقط طب ع github وراح تحصل الملفات
ولاتستخدم بوتات
