Bots Bots Bots 🇮🇳
前往频道在 Telegram
These are My Bots. Not a pro developer, just does some crap coding. All I want is to help others. Hope these might help you. @odysseusmax
显示更多未指定国家技术与应用6 714
📈 Telegram 频道 Bots Bots Bots 🇮🇳 的分析概览
频道 Bots Bots Bots 🇮🇳 (@od_bots) 英语 语言赛道中的 是活跃参与者。目前社区聚集了 14 591 名订阅者,在 技术与应用 类别中位列第 6 714。
📊 受众指标与增长动态
自 невідомо 创建以来,项目保持高速增长,吸引了 14 591 名订阅者。
根据 27 三月, 2025 的最新数据,频道保持稳定运转。过去 30 天订阅人数变化为 -83,过去 24 小时变化为 0,整体触达仍然可观。
- 认证状态: 未认证
- 互动率 (ER): 平均受众互动率为 0%。内容发布后 24 小时内通常能获得 N/A% 的反应,占订阅者总量。
- 帖子覆盖: 每篇帖子平均可获得 0 次浏览,首日通常累积 0 次浏览。
- 互动与反馈: 受众积极参与,单帖平均反应数为 0。
📝 描述与内容策略
作者将该频道定位为表达主观观点的平台:
“These are My Bots. Not a pro developer, just does some crap coding. All I want is to help others. Hope these might help you.
@odysseusmax”
凭借高频更新(最新数据采集于 28 三月, 2025),频道始终保持新鲜度与高覆盖。分析显示受众积极互动,使其成为 技术与应用 类别中的关键影响点。
14 591
订阅者
无数据24 小时
-327 天
-8330 天
帖子存档
14 591
I used to attend all the PM's I get, but guys like these are just annoying.
Be a bit more educated about the things you do.
IG, I have to be more "practical" 🤷♂️.
14 591
Hello, this is Telegram Support.
We have received a notice from legal@ralegal.co.in
The complainant believes your bot https://t.me/Invidious_bot is infringing its copyright.
Telegram does not process requests related to private content. But sticker sets, channels, and bots on Telegram are publicly available. When we receive a complaint regarding the legality of public content, we perform the necessary legal checks and take it down when deemed appropriate: https://telegram.org/faq#q-wait-0-o-do-you-process-take-down-requests-from-third-parties
We kindly ask you to contact the complainant through email immediately.
14 591
I have few friends who do not use Telegram, for some reason 🤷♂. And occasionally few of them approaches me to get this film/show they wants to watch. Since they don't use telegram generating links for the file is the only option. They are my friends and I care about them, so I'll get the file and give them the link.
I'm quite lazy and even though I care about my friends, repeating the same process of finding the file generating the link is not what i enjoy. So i was thinking for a solution, the first thing that came to my mind is to introduce them to any of the google drive indexing apps.
But I had access to quite a lot of Telegram files, so I thought of why not create a telegram indexer 😅.
I took the weekend to build one such app, and i hope it will fix my issue. 😅😅.
https://github.com/odysseusmax/tg-index
Take a look at it and if you find it helpful or if you think its cool, give a 🌟.
14 591
@uloadit_bot
Bot was down for some time, cause maintenance did not go as expected. Now its back to normal.
👉Fixed some internal bugs.
👉Some speed improvement.
If you face any issues report @odysseusmax.
14 591
@Gdriveit_bot
As an experimental feature, added team drive support. Read /help to know how. Might be bugged, if you find issues please report @odysseusmax.
14 591
Just 20 lines of code.
Python:
from flask import Flask, request
import requests
import json
app = Flask('app')
@app.route('/<token>', methods=['POST'])
def handle_tg(token):
update = request.get_json()
message=update.get('message')
if message:
send_message_params = {
'chat_id':message['chat']['id'],
'text':json.dumps(message, indent=4),
'reply_to_message_id':message['message_id']
}
r = requests.post(
url=f'https://api.telegram.org/bot{token}/sendMessage',
json=send_message_params
)
return 'OK'
app.run(host='0.0.0.0', port=8080)
---------------------------------------------------------
PHP (Credits: @spechide):
<?php
$token = $_REQUEST["token"];
$content = file_get_contents('php://input'); $update = json_decode($content, true);
if (isset($update["message"])) {
$chat_id = $update["message"]["chat"]["id"];
file_get_contents("https://api.telegram.org/bot$token/sendMessage?chat_id=$chat_id&text=$content");
}14 591
@uloadit_bot
Update!
Support for screenshot generation for video files has been dropped. Use dedicated screenshot bot instead. @screenshotit_bot.
