ملفات Pydroid+php
3.52K subscribers
60 photos
20 videos
41 files
165 links
Download Telegram
هاي لوحه جاهزه بيها مدير ملفات ورفع وكلشي الرابط aapanel.com
ملفات Pydroid+php
هاي لوحه جاهزه بيها مدير ملفات ورفع وكلشي الرابط aapanel.com
تسجل دخول راح ينطييك امر تروح تكتب الامر بالسيرفر راح ينصب من يكمل،تنصيب ينطيك رابط لوحتك مع اسم المستخدم ورمز.
👍1
موقع يرشق مشاهدات تلي مجاني 200 بكل طلب تكدر تسوي اداة ترسل طلبات لانهائي
https://snmspeedpanel.com
import requests
import time

link = input("ادخل رابط المنشور: ")

for i in range(1, 8001):
url = f"https://snmspeedpanel.com/api/v2?action=add&service=1286&link={link}/{i}&quantity=200&key=6cdc7ab3789d4e2e0e71a36a8d8106a3"
try:
response = requests.get(url)
if response.status_code == 200:
print(f"تم إرسال المشاهدات بنجاح للرابط {link}")
else:
print(f"فشل في إرسال المشاهدات للرابط {link}")
except Exception as e:
print(f"حدثت مشكلة: {e}")
time.sleep(1)


هاي الاداة،تطلب رابط المنشور خلي وراح،ترشق.
2👍1
استضافات php مزبله والله يوميه احصل استضافه فول ومجانية وها وكلهن يشغلن بوتات 🤭
🤔21👍1🥰1
لحد يستخدم هيج بوتات اول شي حساباتكم تنحذف

ثاني شي يخمطون حساباتكم ويرشقون بيها تفاعلات ومشتركين وغيرها هواي هذول شنو ؟ خوات كحبه اذا تردون تستخدمون هيج ملفات خاصه بيكم فقط طب ع github وراح تحصل الملفات
ولاتستخدم بوتات
👍4
هذا خوش تطبيق يفيدكم بسحب الاتصالات

https://play.google.com/store/apps/details?id=com.reqable.android
🔥2👍1
أنجب
🤣13
هاي تشتغل شهرين مجاني
🤭.
🤣4👍1
<?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_php
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()
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"
)
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"
)
🤮1
منصه جديده جايه تجمع نقاط منه وكل نقطه ينحسب $ عليه تسحبه ورا مايصير عمله ويصير سعر عملته غاليه
https://t.me/hamster_kombAt_bot/start?startapp=kentId5559430159
👎2🥰1