𝐯𝐢𝐬𝐮𝐚𝐥 𝐜𝐨𝐝𝐞𝐫 | 𝐩𝐫𝐨𝐠𝐫𝐚𝐦𝐦𝐞𝐫𝐬
Kanalga Telegram’da o‘tish
Loyihalar bo'yicha: @visualcoderuz
Ko'proq ko'rsatish572
Obunachilar
Ma'lumot yo'q24 soatlar
Ma'lumot yo'q7 kunlar
-2830 kunlar
Postlar arxiv
🚀 Instagram uchun nakrutka xizmati. (1K hisobda)
👤 Obunachi (garant 2yil.) - 11 000 so'm
❤️ Like (Bezminus) - 1 500 so'm
👁 Ko'rishlar - 1 500 so'm
👀 Istoriya prasotri - 2 500 so'm
🧑🏻💻 Murojaat uchun: @VisualCoderUz
☑️ 🚀 We are 1200 subscribers on the channel.
🫡 😊 Thank you very much everyone
☑️ ⏰ Profilga soat o'rnatib beraman va Yana Profil biosida Tug'ilgan kunga qancha qoganini ko'rsatib turadigan qilib berama
💸 Narx 10 000 so'm kami bor 😁
🧑🏻💻 By: @VisualCoderUz
☑️ @Super_MakerBot kabi bot ochib berdik.
🤖 Bot: @UzBuilderrBot
🧑🏻💻 Buyurtmachi: @UzzModder
💸 Narxi: 30 000 so'm
🧑🏻💻 Yana kimgadir kerak bo'lsa: @VisualCoderUz
https://t.me/SEORefBot?start=5668945618
Bot bomba shaxshan ozim pul yechib oldim
😁 Hozir w3shools.com web-sayti scriptini chopyapman
😁 Tugatsam Scriptini baham ko'rama
from telethon.sync import TelegramClient
# Set up the Telegram client
api_id = 'api_id yozing'
api_hash = 'api_hash yozing'
client = TelegramClient('session nomi', api_id, api_hash)
with client:
# Start the Telegram client
client.start()
# Get the current time and date
import datetime
time = (datetime.datetime.now() + datetime.timedelta(hours=2)).strftime("%H:%M")
day = (datetime.datetime.now() + datetime.timedelta(hours=2)).strftime("%d.%m.%Y")
# Replace digits in time with Unicode characters
time = time.replace('1', '𝟷').replace('2', '𝟸').replace('3', '𝟹').replace('4', '𝟺').replace('5', '𝟻').replace('6', '𝟼').replace('7', '𝟽').replace('8', '𝟾').replace('9', '𝟿').replace('0', '𝟶')
# Define weather condition icons
obhicon = {'01d': '☀️', '02d': '🌤', '03d': '☁️', '04d': '🌥', '09d': '🌦', '10d': '🌧', '11d': '⛈', '13d': '❄️', '50d': '💨', '01n': '🌙', '02n': '☁️', '03n': '☁️', '04n': '🌩', '09n': '🌧', '10n': '🌧', '11n': '⛈', '13n': '❄️', '50n': '💨'}
# Get weather information from OpenWeatherMap API
import requests
response = requests.get("https://api.openweathermap.org/data/2.5/weather?q=Tashkent,UZ&units=metric&appid=a9d86a9dc54f8caf39ac424735ffc2e6")
obh = response.json()
weather = obh['main']['temp']
icon = obh['weather'][0]['icon']
# Define nicknames and select a random one
nick = ["𝓾"]
import random
niktxt = random.choice(nick)
# Define bio messages and select a random one
bio = ["The clear sky was always cool 💔🗽 | {} {}°C".format(obhicon[icon], weather)]
biotxt = random.choice(bio)
# Update profile and status
client(functions.account.UpdateProfileRequest(
first_name=niktxt,
about=biotxt
))
client(functions.account.UpdateStatusRequest(
offline=False
))
📎 Bu ham xuddi shu narsa Faqat python dasturlash tilida ekan.
🖇 Manba: @DevUserBotOwnerfrom telethon.sync import TelegramClient
# Set up the Telegram client
api_id = 'api_id yozing'
api_hash = 'api_hash yozing'
client = TelegramClient('session nomi', api_id, api_hash)
with client:
# Start the Telegram client
client.start()
# Get the current time and date
import datetime
time = (datetime.datetime.now() + datetime.timedelta(hours=2)).strftime("%H:%M")
day = (datetime.datetime.now() + datetime.timedelta(hours=2)).strftime("%d.%m.%Y")
# Replace digits in time with Unicode characters
time = time.replace('1', '𝟷').replace('2', '𝟸').replace('3', '𝟹').replace('4', '𝟺').replace('5', '𝟻').replace('6', '𝟼').replace('7', '𝟽').replace('8', '𝟾').replace('9', '𝟿').replace('0', '𝟶')
# Define weather condition icons
obhicon = {'01d': '☀️', '02d': '🌤', '03d': '☁️', '04d': '🌥', '09d': '🌦', '10d': '🌧', '11d': '⛈', '13d': '❄️', '50d': '💨', '01n': '🌙', '02n': '☁️', '03n': '☁️', '04n': '🌩', '09n': '🌧', '10n': '🌧', '11n': '⛈', '13n': '❄️', '50n': '💨'}
# Get weather information from OpenWeatherMap API
import requests
response = requests.get("https://api.openweathermap.org/data/2.5/weather?q=Tashkent,UZ&units=metric&appid=a9d86a9dc54f8caf39ac424735ffc2e6")
obh = response.json()
weather = obh['main']['temp']
icon = obh['weather'][0]['icon']
# Define nicknames and select a random one
nick = ["𝓾"]
import random
niktxt = random.choice(nick)
# Define bio messages and select a random one
bio = ["The clear sky was always cool 💔🗽 | {} {}°C".format(obhicon[icon], weather)]
biotxt = random.choice(bio)
# Update profile and status
client(functions.account.UpdateProfileRequest(
first_name=niktxt,
about=biotxt
))
client(functions.account.UpdateStatusRequest(
offline=False
))
📎 Bu ham xuddi shu narsa Faqat python dasturlash tilida ekan.
🖇 Manba: @DevUserBotOwner