Bots Bots Bots 🇮🇳
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
Mostrar más📈 Análisis del canal de Telegram Bots Bots Bots 🇮🇳
El canal Bots Bots Bots 🇮🇳 (@od_bots) en el segmento lingüístico de Inglés es un actor destacado. Actualmente la comunidad reúne a 14 591 suscriptores, ocupando la posición 6 714 en la categoría Tecnologías y Aplicaciones.
📊 Métricas de audiencia y dinámica
Desde su creación el невідомо, el proyecto ha mostrado un crecimiento acelerado, reuniendo a 14 591 suscriptores.
Según los últimos datos del 27 marzo, 2025, el canal mantiene una actividad estable. En los últimos 30 días la variación de miembros fue de -83, y en las últimas 24 horas de 0, conservando un alto alcance.
- Estado de verificación: No verificado
- Tasa de interacción (ER): El promedio de interacción de la audiencia es 0%. Durante las primeras 24 horas tras publicar, el contenido suele obtener N/A% de reacciones respecto al total de suscriptores.
- Alcance de las publicaciones: Cada publicación recibe en promedio 0 visualizaciones. En el primer día suele acumular 0 visualizaciones.
- Reacciones e interacción: La audiencia responde de forma activa: el promedio de reacciones por publicación es 0.
📝 Descripción y política de contenido
El autor describe el recurso como un espacio para expresar opiniones subjetivas:
“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”
Gracias a la alta frecuencia de actualizaciones (últimos datos recibidos el 28 marzo, 2025), el canal mantiene la vigencia y un amplio alcance. La analítica demuestra que la audiencia interactúa activamente con el contenido, lo que lo convierte en un punto de referencia dentro de la categoría Tecnologías y Aplicaciones.
Carga de datos en curso...
| Fecha | Crecimiento de Suscriptores | Menciones | Canales | |
| 26 marzo | 0 | |||
| 25 marzo | +1 | |||
| 24 marzo | 0 | |||
| 23 marzo | 0 | |||
| 22 marzo | 0 | |||
| 21 marzo | +2 | |||
| 20 marzo | +1 | |||
| 19 marzo | +8 | |||
| 18 marzo | +2 | |||
| 17 marzo | +7 | |||
| 16 marzo | +4 | |||
| 15 marzo | 0 | |||
| 14 marzo | +2 | |||
| 13 marzo | +1 | |||
| 12 marzo | 0 | |||
| 11 marzo | +4 | |||
| 10 marzo | +1 | |||
| 09 marzo | +3 | |||
| 08 marzo | 0 | |||
| 07 marzo | 0 | |||
| 06 marzo | +4 | |||
| 05 marzo | +3 | |||
| 04 marzo | +1 | |||
| 03 marzo | +5 | |||
| 02 marzo | 0 | |||
| 01 marzo | 0 |
| 2 | Just a yearly checkup message 😅 | 30 397 |
| 3 | @gdriveit_bot is transferred to a new username @googledriveit_bot for the time being. | 3 505 |
| 4 | #uloadit_bot
RIP 😔
For the time being, bot has been moved to another username @UloaditV2Bot. | 200 896 |
| 5 | 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" 🤷♂️. | 140 714 |
| 6 | @Invidious2_bot 😢😢 | 141 232 |
| 7 | ☹ | 82 640 |
| 8 | @Invidious_bot
Officially Dead ⚰⚰😴😴 | 58 203 |
| 9 | 😕 | 104 274 |
| 10 | 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. | 98 179 |
| 11 | Bot is up. | 72 925 |
| 12 | @uloadit_bot
Bot will stay offline until further notice. | 64 274 |
| 13 | 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 🌟. | 62 610 |
| 14 | @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. | 44 597 |
| 15 | @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. | 42 662 |
| 16 | Up 🙈, but idk if its stable or not 😢😢 | 41 503 |
| 17 | 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");
} | 43 520 |
| 18 | New Bot 😝😝
@ShowUpdateJsonBot | 30 662 |
| 19 | @subtitle_dl_bot
Bot is down, and will stay as it is until further notice. 😢😔 | 30 562 |
| 20 | @uloadit_bot
Update!
Support for screenshot generation for video files has been dropped. Use dedicated screenshot bot instead. @screenshotit_bot. | 33 893 |
