star source • استار سورس
📢 بزرگترین مرجع دریافت سورس و تکه کد ✅ انواع سورس، تکه کد، قالب سایت،اسکریپت و... 🌟 هر روز کلی سورس کد و اسکریپت منتظر شماست ! با ما همراه باشید و مارو به دوستاتون معرفی کنید. ♥️ استار سورس فقط درتلگرام فعالیت داشته و چنل های دیگر فیک میباشند !
Show more📈 Analytical overview of Telegram channel star source • استار سورس
Channel star source • استار سورس (@star_sourcee) in the Farsi language segment is an active participant. Currently, the community unites 29 277 subscribers, ranking 4 655 in the Technologies & Applications category and 11 637 in the Iran region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 29 277 subscribers.
According to the latest data from 20 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -1 312 over the last 30 days and by -24 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 0.44%. Within the first 24 hours after publication, content typically collects N/A% reactions from the total number of subscribers.
- Post reach: On average, each post receives 129 views. Within the first day, a publication typically gains 0 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 0.
- Thematic interests: Content is focused on key topics such as رو, تبادلاتمون, لینکش, مکرر, کس.
📝 Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
“📢 بزرگترین مرجع دریافت سورس و تکه کد
✅ انواع سورس، تکه کد، قالب سایت،اسکریپت و...
🌟 هر روز کلی سورس کد و اسکریپت منتظر شماست !
با ما همراه باشید و مارو به دوستاتون معرفی کنید. ♥️
استار سورس فقط درتلگرام فعالیت داشته و چنل های دیگر فیک میباشند !”
Thanks to the high frequency of updates (latest data received on 21 June, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.
from telethon import TelegramClient, events
from datetime import datetime, timedelta
from collections import Counter
api_id = 'Api Aid'
api_hash = 'Api hash'
client = TelegramClient('user_session', api_id, api_hash)
activity_log = []
@client.on(events.NewMessage)
async def track_activity(event):
activity_log.append({
'chat_id': event.chat_id,
'chat_name': (await event.get_chat()).title if event.is_channel else (await event.get_chat()).first_name,
'time': datetime.now(),
'type': 'channel' if event.is_channel else 'chat'
})
@client.on(events.NewMessage(pattern='/status'))
async def send_status(event):
now = datetime.now()
today_log = [log for log in activity_log if log['time'].date() == now.date()]
chat_counter = Counter(log['chat_name'] for log in today_log if log['type'] == 'chat')
channel_counter = Counter(log['chat_name'] for log in today_log if log['type'] == 'channel')
total_time_spent = sum((log['time'] - today_log[i - 1]['time']).seconds for i, log in enumerate(today_log[1:], 1) if today_log[i - 1]['chat_id'] == log['chat_id'])
response = "📊 **گزارش فعالیت امروز:**\n\n"
response += "👥 **چتهای برتر:**\n"
for chat, count in chat_counter.most_common(5):
response += f"- {chat}: {count} پیام\n"
response += "\n📣 **کانالهای دنبالشده:**\n"
for channel, count in channel_counter.most_common(5):
response += f"- {channel}: {count} پیام\n"
response += f"\n🕒 **زمان کل در تلگرام:** {timedelta(seconds=total_time_spent)}\n"
await event.reply(response)
async def main():
await client.start()
print("کلاینت فعال شد!")
await client.run_until_disconnected()
if __name__ == '__main__':
import asyncio
asyncio.run(main())
@Star_sourceeبا اجرا کردن این کد روی اکانت تلگرام میتونید با ارسال دستور /status در هر زمان که خواستید یک آمار روزانه از فعالیت خودتون توی تلگرام ببنید با کیا بیشتر صحبت کردید چقدر توی تلگرام وقت گذروندید و ...✅ کد مورد نیاز :
from telegram import Bot
from telegram.error import TelegramError
import requests
import asyncio
BOT_TOKEN = ''#توکن
CHANNEL_ID = '' # آیدی عددی کانال
MESSAGE_1_ID = 332 # آیدی پیام دوم
MESSAGE_2_ID = 333 # آیدی پیام اول
bot = Bot(token=BOT_TOKEN)
def fetch_api_1():
url = "https://botx.website/Arz/index.php"
try:
response = requests.get(url)
if response.status_code == 200:
data = response.json().get("result", [])
message = "\n".join([f"{item['tag']} {item['currency']}: {item['price']} تومان" for item in data])
return message
else:
return "خطا در دریافت اطلاعات از API اول"
except Exception as e:
return f"خطا: {str(e)}"
def fetch_api_2():
url = "https://botx.website/Arz/arz.php"
try:
response = requests.get(url)
if response.status_code == 200:
return response.text.strip()
else:
return "خطا در دریافت اطلاعات از API دوم"
except Exception as e:
return f"خطا: {str(e)}"
async def update_message_1():
while True:
try:
content = fetch_api_1()
await bot.edit_message_text(chat_id=CHANNEL_ID, message_id=MESSAGE_1_ID, text=content)
except TelegramError as e:
print(f"خطا در ویرایش پیام اول: {e}")
await asyncio.sleep(24 * 60 * 60)
async def update_message_2():
while True:
try:
content = fetch_api_2()
await bot.edit_message_text(chat_id=CHANNEL_ID, message_id=MESSAGE_2_ID, text=content)
except TelegramError as e:
print(f"خطا در ویرایش پیام دوم: {e}")
await asyncio.sleep(5 * 60)
async def main():
await asyncio.gather(
update_message_1(),
update_message_2(),
)
if name == "main":
asyncio.run(main())
@Star_sourcee
Available now! Telegram Research 2025 — the year's key insights 
