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.
๐ฉ3๐ฅ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
๐คฉ5๐4๐4๐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
@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.
As an experimental feature, added team drive support. Read /help to know how. Might be bugged, if you find issues please report @odysseusmax.
๐8๐3
@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.
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.
๐13๐1๐ฅ1๐ฑ1