import requests, json, datetime, time
from bs4 import BeautifulSoup
def fetch_tiktok_user(username, proxy=None, retries=3):
url = f'https://www.tiktok.com/@{username}'
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
'Accept-Language': 'ar-SA,ar;q=0.9,en-US;q=0.8,en;q=0.7',
'Referer': 'https://www.tiktok.com/',
'Connection': 'keep-alive',
'Sec-Fetch-Dest': 'document',
'Sec-Fetch-Mode': 'navigate',
'Sec-Fetch-Site': 'none',
'Sec-Fetch-User': '?1',
}
proxies = {'http': proxy, 'https': proxy} if proxy else {}
for attempt in range(retries):
try:
r = requests.get(url, headers=headers, proxies=proxies, timeout=10)
r.raise_for_status()
break
except requests.exceptions.RequestException:
if attempt < retries - 1:
time.sleep(2)
else:
print("لا يوجد")
return
soup = BeautifulSoup(r.text, 'html.parser')
script = soup.find('script', id='__UNIVERSAL_DATA_FOR_REHYDRATION__')
if not script:
print("لا يوجد")
return
try:
data = json.loads(script.string)
user = data['__DEFAULT_SCOPE__']['webapp.user-detail']['userInfo']['user']
stats = data['__DEFAULT_SCOPE__']['webapp.user-detail']['userInfo']['stats']
except:
print("لا يوجد")
return
def print_if(value, label):
if value:
print(f"{label}: {value}")
bio = user.get('signature')
verified = "موثق" if user.get('verified') else None
create_time = user.get('createTime')
year = datetime.datetime.fromtimestamp(create_time).year if create_time else None
followers = f"{stats.get('followerCount',0):,}" if stats.get('followerCount',0) > 0 else None
following = stats.get('followingCount')
hearts = f"{stats.get('heartCount',0):,}" if stats.get('heartCount',0) > 0 else None
videos = f"{stats.get('videoCount',0):,}" if stats.get('videoCount',0) > 0 else None
private = "خاص" if user.get('privateAccount') else "عام"
lang = user.get('language')
region = user.get('region')
print_if(bio, "البايو")
print_if(verified, "هل الحساب موثق؟")
print_if(year, "تاريخ إنشاء الحساب")
print_if(followers, "عدد المتابعين")
print_if(following, "عدد المتابعين الذين يتابعهم")
print_if(hearts, "عدد اللايكات")
print_if(videos, "عدد الفيديوهات المنشورة")
print(f"حالة الحساب: {private}")
print_if(lang, "اللغة")
print_if(region, "البلد")
if __name__ == "__main__":
user = input("انطيني يوزر الحساب بدون @").strip()
fetch_tiktok_user(user)
كود معلومات حساب تيك توك.
@LL_php
❤2👍1
import requests
from bs4 import BeautifulSoup
import json
url = input(">>> ").strip()
api = f"https://snapdownloader.com/tools/instagram-reels-downloader/download?url={url.replace(':', '%3A').replace('/', '%2F')}"
r = requests.get(api, headers={"User-Agent": "Mozilla/5.0"})
r.raise_for_status()
soup = BeautifulSoup(r.text, "html.parser")
all_tags = soup.find_all(["video", "source", "a"])
videos = {}
i = 1
for tag in all_tags:
src = tag.get("src") or tag.get("href")
if src and ".mp4" in src:
videos[f"video{i}"] = src
i += 1
print(json.dumps(videos, indent=4, ensure_ascii=False))
كود تنطي رابط شخص راح ينطيك مقاطع الريلز المنشوره انت تكدر تسوي ينطيك صور وغيرها من النتيجه.
تخمط اذكر المصدر @LL_php
❤1
import requests
def download_tiktok(url):
response = requests.get(url)
spl = response.url.split('/')
if spl[4] == 'video':
video_id = spl[5].split('?')[0]
request_url = f'https://www.tikwm.com/video/media/play/${video_id}.mp4'
response = requests.get(request_url)
video_link = response.url
return video_link
else:
return False
print(
download_tiktok(
'https://www.tiktok.com/@aikl65/video/7524321586728504584?is_from_webapp=1&sender_device=pc'
))
: Download TikTok Video :
: @LL_PHP :
https://newtonhack.serv00.net/GPT/wormgpt.php?ask=من_انت
افضل ايبي gpt worm. هسه ساحبه من موقع اجنبي جاهز بدون قيود يصنع اي كود خطير 🔥.
افضل ايبي gpt worm. هسه ساحبه من موقع اجنبي جاهز بدون قيود يصنع اي كود خطير 🔥.
من اجي انشرلكم اسرع api تحميل يوتيوب يعني ثانيه وحده ينزل اطول صوت بصيغه mp3 وفيديو 🔥.
🔥3
Forwarded from . Ahmed .
from cloudscraper import create_scraper
s = create_scraper()
u = 'https://youtu.be/rLeg3bdoEjk?si=mop0d_b-LedAmkbK'
h = {"Content-Type": "application/json", "Origin": "https://iframe.y2meta-uk.com"}
k = s.get("https://api.mp3youtube.cc/v2/sanity/key", headers=h).json()["key"]
h["key"] = k
p = lambda fmt, ab, vq: {"link": u, "format": fmt, "audioBitrate": ab, "videoQuality": vq, "vCodec": "h264"}
for f in [p("mp3", "320", "720"), p("mp4", "128", "720")]:
print(s.post("https://api.mp3youtube.cc/v2/converter", json=f, headers=h).json())
s = create_scraper()
u = 'https://youtu.be/rLeg3bdoEjk?si=mop0d_b-LedAmkbK'
h = {"Content-Type": "application/json", "Origin": "https://iframe.y2meta-uk.com"}
k = s.get("https://api.mp3youtube.cc/v2/sanity/key", headers=h).json()["key"]
h["key"] = k
p = lambda fmt, ab, vq: {"link": u, "format": fmt, "audioBitrate": ab, "videoQuality": vq, "vCodec": "h264"}
for f in [p("mp3", "320", "720"), p("mp4", "128", "720")]:
print(s.post("https://api.mp3youtube.cc/v2/converter", json=f, headers=h).json())
YouTube
عاجل | السعودية تدخل عصر القنبلة الهيدروجينية… ذهول أمريكي وهلـع في الكيان
لمتابعة برنامج القصة من الاول
اشترك في القناة من هنا
https://www.youtube.com/@YASSERGOMAA2?sub_confirmation=1
فعل زر الجرس وسوف ياتي لك اشعاربكل حلقتنا الجديدة
تحياتي
************************************************
تشاهد في حلقة اليوم
00:00 | البداية
1:14…
اشترك في القناة من هنا
https://www.youtube.com/@YASSERGOMAA2?sub_confirmation=1
فعل زر الجرس وسوف ياتي لك اشعاربكل حلقتنا الجديدة
تحياتي
************************************************
تشاهد في حلقة اليوم
00:00 | البداية
1:14…
❤1
. Ahmed .
from cloudscraper import create_scraper s = create_scraper() u = 'https://youtu.be/rLeg3bdoEjk?si=mop0d_b-LedAmkbK' h = {"Content-Type": "application/json", "Origin": "https://iframe.y2meta-uk.com"} k = s.get("https://api.mp3youtube.cc/v2/sanity/key", he…
اسرع api تحميل يوتيوب وصوت بصيغه mp3 وفيديو mp4 السرعه ماتنوصف صاروخ عابر للقارات 🔥.
المصدر @LL_php
الايبي محمد حيدر اليوم سحبه
المصدر @LL_php
الايبي محمد حيدر اليوم سحبه
import requests
q = "الحلة"
res = requests.get(
"https://contvia-test.onrender.com/api/research",
params={"q": q, "max_results": 20},
headers={
"origin": "https://contvia.com",
"referer": "https://contvia.com/",
"accept": "application/json",
"user-agent": "Mozilla/5.0 (Linux; Android 10)",
}
)
print(res.json())
اداة بحث ai
@LL_php
q = "الحلة"
res = requests.get(
"https://contvia-test.onrender.com/api/research",
params={"q": q, "max_results": 20},
headers={
"origin": "https://contvia.com",
"referer": "https://contvia.com/",
"accept": "application/json",
"user-agent": "Mozilla/5.0 (Linux; Android 10)",
}
)
print(res.json())
اداة بحث ai
@LL_php
❤1
ملفات Pydroid+php
import requests q = "الحلة" res = requests.get( "https://contvia-test.onrender.com/api/research", params={"q": q, "max_results": 20}, headers={ "origin": "https://contvia.com", "referer": "https://contvia.com/", "accept":…
تكدر تستخدم هذا. هيج https://contvia-test.onrender.com/api/research?q=الحلة&max_results=20
Forwarded from . محمد حيدر عبد الحسين .
import requests
res = requests.post("https://fluxai.pro/api/tools/fast",
json={
"prompt": "iraqi man watching tv"
}).text
print(res)
res = requests.post("https://fluxai.pro/api/tools/fast",
json={
"prompt": "iraqi man watching tv"
}).text
print(res)
❤1
السلام عليكم غزه تموت جوعاً
كسم الملك سلمان
كسم محمد ابن سلمان
كسم الجولاني ولطيفه
كسم ابن زايد
كسم تميم ابن الكحبه
كسم محمد السادس
كسم ملك البندورة
كسم مشعل الأحمد
كسم جوزيف عون
كسم قيس سعد
جبناء لعنة الله عليكم
كسم الملك سلمان
كسم محمد ابن سلمان
كسم الجولاني ولطيفه
كسم ابن زايد
كسم تميم ابن الكحبه
كسم محمد السادس
كسم ملك البندورة
كسم مشعل الأحمد
كسم جوزيف عون
كسم قيس سعد
جبناء لعنة الله عليكم
❤8🤨4🎉2
import requests
yt_url = 'https://www.youtube.com/watch?v=aFHm9uQNVA0'
res = requests.get(
"https://vkrdownloader.xyz/server/?api_key=vkrdownloader&vkr=" + yt_url
).json()
print(res)
api تحميل يوتيوب @LL_php
yt_url = 'https://www.youtube.com/watch?v=aFHm9uQNVA0'
res = requests.get(
"https://vkrdownloader.xyz/server/?api_key=vkrdownloader&vkr=" + yt_url
).json()
print(res)
api تحميل يوتيوب @LL_php
👍1
اني راح اتوقف نشر القناة ماجاي تصعد محمد حيدر اذا يريد ينشرلكم.
❤5🍾1