@Uloadit_bot
One small update! 😝
Added attach feature. Now you can attach media files to messages with @Uloadit_bot.
One small update! 😝
Added attach feature. Now you can attach media files to messages with @Uloadit_bot.
👎1
Update 😬
Both @Tv_subtitles_bot and @subtitle_dl_bot updated and should be little bit stable than before. 🤭
Both @Tv_subtitles_bot and @subtitle_dl_bot updated and should be little bit stable than before. 🤭
👎2👍1
Update!
> Added 3 file hosts to @tg2extbot.
> You can choose between the hosts.
If you want more file hosts to be supported, suggest the same to @odysseusmax.
> Added 3 file hosts to @tg2extbot.
> You can choose between the hosts.
If you want more file hosts to be supported, suggest the same to @odysseusmax.
👎2👍1
Update!
@lang_translate_bot
> Added both Google translate and Bing translate as translation engines. You can choose which one to use.
> Bot won't be working in groups for now.
@lang_translate_bot
> Added both Google translate and Bing translate as translation engines. You can choose which one to use.
> Bot won't be working in groups for now.
👍2👎2😁2
Update!
@uloadit_bot
Some changes where made lately.
> Added Uploadfile.cc / upindia.mobi / upload.mobi support.
> Added zippyshare.com support
> Added mediafire.com support
> Added sourceforge.net support.
> Added tiktok.com support.
@uloadit_bot
Some changes where made lately.
> Added Uploadfile.cc / upindia.mobi / upload.mobi support.
> Added zippyshare.com support
> Added mediafire.com support
> Added sourceforge.net support.
> Added tiktok.com support.
👍4💩1
💩2👍1😱1
@gdriveit_bot
Maintenance completed.
> Now you can add more than one Google Drive account with bot.
> Switch between the saved accounts, uploading never been so easy.
Maintenance completed.
> Now you can add more than one Google Drive account with bot.
> Switch between the saved accounts, uploading never been so easy.
💩4🔥2
@odbots Bot's Uptime Status.(Updated every 15 mins)
@subtitle_dl_bot status: ✅
@tv_subtitles_bot status: ✅
@lang_translate_bot status: ✅
@tg2extbot status: ✅
@gdriveit_bot status: ✅
@calcit_bot status: ✅
@uloadit_bot status: ✅
@pdf2imgbot status: ✅
@screenshotit_bot status: ✅
@ShowUpdateJsonBot status: ✅
@youtubeitbot status: ✅
last checked on
Thu, 25-02-2021, 08:51:26 AM UTC
Thu, 25-02-2021, 02:21:26 PM IST
@subtitle_dl_bot status: ✅
Up@tv_subtitles_bot status: ✅
Up@lang_translate_bot status: ✅
Up@tg2extbot status: ✅
Up@gdriveit_bot status: ✅
Up@calcit_bot status: ✅
Up@uloadit_bot status: ✅
Up@pdf2imgbot status: ✅
Up@screenshotit_bot status: ✅
Up@ShowUpdateJsonBot status: ✅
Up@youtubeitbot status: ✅
Uplast checked on
Thu, 25-02-2021, 08:51:26 AM UTC
Thu, 25-02-2021, 02:21:26 PM IST
👍50👎29😢11🤩11🔥10💩8😁6😱2
📢 New Bot 😃
@screenshotit_bot
Generate Screenshots For Your Videos Instantly
Inspired from the Only Screenshot Bot 😂😂😂
@screenshotit_bot
Generate Screenshots For Your Videos Instantly
Inspired from the Only Screenshot Bot 😂😂😂
👍20🔥7👎6😢4🤩3😁1😱1
Bots Bots Bots 🇮🇳 pinned «@odbots Bot's Uptime Status.(Updated every 15 mins) @subtitle_dl_bot status: ✅ Up @tv_subtitles_bot status: ✅ Up @lang_translate_bot status: ✅ Up @tg2extbot status: ✅ Up @gdriveit_bot status: ✅ Up @calcit_bot status: ✅ Up @uloadit_bot status: ✅ Up …»
Bots Bots Bots 🇮🇳
📢 New Bot 😃 @screenshotit_bot Generate Screenshots For Your Videos Instantly Inspired from the Only Screenshot Bot 😂😂😂
It was at this time he knew he f*ck up 🙁🙁😒.
Now back up again🤦♂.
Now back up again🤦♂.
😁9👍4🔥2😢2💩1
👍1👎1
@gdriveit_bot
Update!
👉 Now no file size restrictions! (Will upload files of any size provided your drive has enough space and should complete with in 60 mins.)
👉 Now you can use bot in inline mode to search your google files.
Update!
👉 Now no file size restrictions! (Will upload files of any size provided your drive has enough space and should complete with in 60 mins.)
👉 Now you can use bot in inline mode to search your google files.
🔥3👍1👎1😁1😢1
@uloadit_bot
Temporary fix for uploadfile.cc / upindia.mobi / upload.mobi added.
Not guaranteed to work 😕. Try your luck 🙈.
Temporary fix for uploadfile.cc / upindia.mobi / upload.mobi added.
Not guaranteed to work 😕. Try your luck 🙈.
🔥4👎2
@uloadit_bot
Update!
Support for screenshot generation for video files has been dropped. Use dedicated screenshot bot instead. @screenshotit_bot.
Update!
Support for screenshot generation for video files has been dropped. Use dedicated screenshot bot instead. @screenshotit_bot.
🔥9👍4😢4😁3👎2🤩1
😢16🤮7🔥2😁1🤩1💩1
Bots Bots Bots 🇮🇳
New Bot 😝😝 @ShowUpdateJsonBot
Just 20 lines of code.
Python:
---------------------------------------------------------
PHP (Credits: @spechide):
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");
}👍20🔥10👎7🤩6😢5😁2
Bots Bots Bots 🇮🇳
@subtitle_dl_bot Bot is down, and will stay as it is until further notice. 😢😔
Up 🙈, but idk if its stable or not 😢😢
😢10👎3👍2