XbYiT 🕊️
61 subscribers
28 photos
15 files
42 links
A channel in which I publish:
Tools, api , bots, projects, courses
in the field of programming.
The channel owner's username: @XbYiT
Download Telegram
Forwarded from NiXXR | Python 🦊 (𝐍𝐈𝐗𝐗𝐑 | Dark CARACAL)
useragents.txt
112.1 KB
ملف فيه ألف يوزر اجينت(user agent)
مسربة من بطاقات تعريفة من مواقع مشهورة
يمكن استخدامها للأختراق و الصيد 🦊🔥
#DarkCaracal@pyNiXXR
Your opinion?
import wikipediaapi
from transformers import pipeline

# إعداد اللغة العربية للبحث في ويكيبيديا
wiki = wikipediaapi.Wikipedia('ar')

# نموذج التلخيص من مكتبة transformers
summarizer = pipeline("summarization", model="facebook/bart-large-cnn")

def fetch_wikipedia_content(topic):
"""جلب محتوى من ويكيبيديا"""
page = wiki.page(topic)
if not page.exists():
return None
return page

def summarize_content(text, max_length=200):
"""تلخيص النص باستخدام نموذج الذكاء الاصطناعي"""
if len(text.split()) <= max_length:
return text # إذا كان النص قصيرًا، لا حاجة للتلخيص
try:
summary = summarizer(text, max_length=max_length, min_length=100, do_sample=False)
return summary[0]['summary_text']
except Exception as e:
return text # في حالة الخطأ، نعيد النص الأصلي

def generate_research(topic):
# 1. جمع المعلومات من ويكيبيديا
page = fetch_wikipedia_content(topic)
if page is None:
return f"عذرًا، لم أتمكن من العثور على معلومات حول الموضوع '{topic}'."

# 2. إعداد البحث
research = {}
research['مقدمة'] = f"في هذا البحث، سنستعرض موضوع '{topic}' من مختلف الجوانب."
research['ملخص عن الموضوع'] = summarize_content(page.summary[:1500])

# 3. إضافة أقسام البحث من ويكيبيديا
for section in page.sections:
research[section.title] = summarize_content(section.text[:1500])

# 4. إضافة خاتمة
research['خاتمة'] = f"بهذا نكون قد استعرضنا أهم الجوانب المتعلقة بموضوع '{topic}'."

# 5. إعداد قائمة مراجع
research['المراجع'] = "المصدر الأساسي: ويكيبيديا العربية"

# تجميع البحث
full_research = "\n\n".join([f"{title}:\n{content}" for title, content in research.items()])
return full_research

# طلب الموضوع من المستخدم
topic = input("اكتب موضوع البحث: ")
research_content = generate_research(topic)

# عرض البحث المكتوب
print(research_content)

خورزمية تقوم بانشاء بحث عن موضوع معين انت تحدده
الكود كاتبتي ، الفكرة فكرتي ، تصحيح chatgpt ، تعليقات chat gpt

@xg_host
ممكن نجمة 🙂
50
https://t.me/XTOOLPYCHAT
شات القناة
bot.py
1.4 KB
A simple bot that converts text to voice
The library was used:
telebot,datetime,gtts

The language in which it was programmed:
python

Programmer:@ANONYMOSXdev
موقع imginn.com لمشاهدة محتوى حسابات انستغرام بدون تسجيل الدخول و بشكل مجهول.
يلا ريكشنات بريم يوم 😏
Please open Telegram to view this post
VIEW IN TELEGRAM
533
This media is not supported in your browser
VIEW IN TELEGRAM
2
﴿ ‏وَقُلْ رَبِّ أَدْخِلْنِي مُدْخَلَ صِدْقٍ وَأَخْرِجْنِي مُخْرَجَ صِدْقٍ وَاجْعَلْ لِي مِنْ لَدُنْكَ سُلْطَانًا نَصِيرًا ﴾ 🍂
21
XbYiT 🕊️
Photo
i will update it ☺️☺️☺️
Please open Telegram to view this post
VIEW IN TELEGRAM
XbYiT 🕊️
i will update it ☺️☺️☺️
مذا سوف افعله في التحديث :
1 - بوت يقوم بانشاء ملف خاص بك فيه token الخاص بك
2 - سوف اجعله short link يعني المستخدم مراح يعرف انو دخل رابط ملغم
1
Channel photo updated
Channel name was changed to «XbYiT 🕊️»
Token management system
this is a simple project for token management
the repo in github
by : @xbyit
from instagrapi import Client
import random

# تسجيل الدخول إلى حساب إنستجرام
cl = Client()
cl.login("username", "password ")

# الحصول على قائمة الدردشات (المجموعات)
threads = cl.direct_threads()
while True :
# اختيار الدردشة الأولى (يمكنك تعديل هذا لاختيار دردشة محددة)
if threads:
thread = threads[0] # اختر الدردشة الأولى
participants = thread.users # الحصول على قائمة المشاركين

# قراءة الرسالة الأخيرة في الدردشة
last_message = cl.direct_messages(thread_id=thread.id, amount=1)[0].text

# التحقق من الرسالة
if last_message.strip().lower() == "team3":
num_groups = 2 # إنشاء مجموعتين
group_size = 3 # كل مجموعة تحتوي على 3 أشخاص
elif last_message.strip().lower() == "team2":
num_groups = 3 # إنشاء 3 مجموعات
group_size = 2 # كل مجموعة تحتوي على شخصين
else:
num_groups = 0 # إذا لم يتم كتابة أي من الكلمتين

# إنشاء المجموعات
if num_groups > 0:
# خلط المشاركين بشكل عشوائي
random.shuffle(participants)

# إنشاء المجموعات
groups = []
for i in range(num_groups):
start_index = i * group_size
end_index = start_index + group_size
group = participants[start_index:end_index]
if group: # تأكد من أن المجموعة ليست فارغة
groups.append(group)

# إرسال رسالة بالنتيجة
message = "تم إنشاء المجموعات التالية:\n"
for i, group in enumerate(groups, start=1):
message += f"\nالمجموعة {i}:\n"
for user in group:
message += f"@{user.username}\n"

cl.direct_send(message, thread_ids=[thread.id])
print("تم إنشاء المجموعات وإرسال الرسالة بنجاح!")
else:
print("لم يتم كتابة أي من الكلمتين team3 أو team2.")
else:
print("لا توجد دردشات متاحة.")

كود بسيط يقوم بانشاء بوت انستجرام يختار 6 اشخاص ويوزعهم على فريقين باستخدام امر team3
و يوم باخيار شخصين و يوزعهم على 3 فرق باستخدام امر team2
يفيد الجيميرز لاختيار التيمات
برمجة deepsea
1
User-Auth-Backend 🛠️
أداة بسيطة وفعّالة لإدارة المستخدمين والمصادقة باستخدام Flask و SQLite. تدعم التسجيل، تسجيل الدخول، وحذف الحسابات بشكل آمن مع تشفير كلمات المرور. مثالية للتطبيقات الصغيرة التي تحتاج نظام مصادقة آمن وسهل التكامل.

🔗 رابط المشروع على GitHub

#تطوير_ويب #Flask #python
رمضان كريم 🖤
عليك وعلى جميع المسلمين والمسلمات 🖤
Please open Telegram to view this post
VIEW IN TELEGRAM
Post saver Api ?
1