Code organization
14 subscribers
3 photos
An artificial intelligence programmer is under development 🙃
Download Telegram
جيبو ناس للقناه اني انطردة من كل القروبات 😭😭
مو مشفر
اميلك
باسوردك
رابط الدردشه بمنتداك
رابط الدردشه الي تريد تاخذها
صاحب السكربت
@N9km2
راح نبدي نكسر خشم سفاح
مولد قروش
مولد دفايس
مولد حسابات
الثغره
نشروها الروسين
تحذف كل الصوره الي بالكاتلوج
حطو لايك لو تريدون سكربت.
👍2
import aminofix
import threading
import pyfiglet
L = "\033[1;95m" #وردي
i = "_"
print(L+pyfiglet.figlet_format("BySFAH",font="slant"))
print(L+i*60)
client = aminofix.Client()
email = input("Email")
password = input("password")
client.login(email=email, password=password)

com_list = client.sub_clients(size=100)
for i, name in enumerate(com_list.name, 1):
print(f"{i} > {name}")
comId = com_list.comId[int(input(">> "))-1]
sub_client = aminofix.SubClient(comId=comId, profile=client.profile)
print(comId)

title = input("العنوان:")
content = input(":المحتواى")
threads = int(input("count: "))

def post_wiki():
while True:
try:
sub_client.post_wiki(title=title, content=content, imageList=[])
except:
pass

for _ in range(threads):
threading.Thread(target=post_wiki).start()
print(_)

while True:
pass