forked from TR-TECH-GUIDE/Cloud-Up-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 0051f92
Showing
7 changed files
with
1,013 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
worker: python3 bot.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Cloud-UPManager-Bot | ||
This is Telegram Cloud Uploads Manager Bot by [@trtechguide](https://github.com/TR-TECH-GUIDE) | ||
|
||
## Features: | ||
- Upload Telegram Media to [GoFile.io](https://gofile.io/) | ||
- Upload Telegram Media to [Streamtape](https://streamtape.com/) | ||
- Delete [GoFile.io](https://gofile.io/) File from Inline | ||
- Delete [Streamtape](https://streamtape.com/) File From Inline *(Admin Only)* | ||
- Rename [Streamtape](https://streamtape.com/) File From Inline *(Admin Only)* | ||
- Add Remote URL to [Streamtape](https://streamtape.com/) Account | ||
- The Added Remote URL will be uploaded to [Streamtape](https://streamtape.com/) Account. | ||
- Check Status of [Streamtape](https://streamtape.com/) Remote URL | ||
- Remove Remote URL from [Streamtape](https://streamtape.com/) Account | ||
- Only those Added Remote URLs can be removed which not uploaded to [Streamtape](https://streamtape.com/) Account yet. | ||
|
||
### Up-Coming: | ||
- Fix Bugs | ||
- Fix RAM Leak Issue | ||
- Fix Crashes | ||
- Add More Sites from Uploading | ||
|
||
### Note: | ||
This is in Development Stage. So it will be buggy a lot. If you find any Bugs than please report that in [Telegram Group](https://t.me/trtechguide). Also Join [Bot Listz](https://t.me/tgbotlistz) for more updates. | ||
|
||
### Demo Bot: | ||
<a href="http://t.me/clouduptrmanagerbot"><img src="https://trtechguide.files.wordpress.com/2021/08/photo_2021-08-04_16-51-58.jpg"></a> | ||
|
||
* **Language:** [Python3](https://www.python.org) | ||
* **Library:** [Pyrogram](https://docs.pyrogram.org) | ||
|
||
## Configs: | ||
- `API_ID` - Your API ID from my.telegram.org | ||
- `API_HASH` - Your API Hash from my.telegram.org | ||
- `BOT_TOKEN` - Get this from @BotFather | ||
- `LOG_CHANNEL` - Any Telegram Channel ID for Logs | ||
- This for some tracking. | ||
- `BOT_OWNER` - Your Telegram UserID for using Admin Features. | ||
- `STREAMTAPE_API_USERNAME` - Streamtape API Username. | ||
- Get this from [Here](https://streamtape.com/accpanel#collapseThree). | ||
- `STREAMTAPE_API_PASS` - Streamtape API Password. | ||
- Get this from [Here](https://streamtape.com/accpanel#collapseThree). | ||
|
||
### Deploy Now: | ||
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/TR-TECH-GUIDE/Cloud-Up-Manager) | ||
|
||
### Support Group: | ||
<a href="https://t.me/trtechguide"><img src="https://trtechguide.files.wordpress.com/2021/07/untitled-design-2.png"></a> | ||
|
||
### Follow on: | ||
<p align="left"> | ||
<a href="https://github.com/TR-TECH-GUIDE"><img src="https://img.shields.io/badge/GitHub-Follow%20on%20GitHub-inactive.svg?logo=github"></a> | ||
</p> | ||
<p align="left"> | ||
<a href="https://trtechguide.wordpress.com"><img src="https://img.shields.io/badge/Wordpress-Follow%20on%20Twitter-informational.svg?logo=wordpress"></a> | ||
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"name": "Telegram Cloud Uploads Manager Bot", | ||
"description": "A Telegram Cloud Uploads Manager Bot by @trtechguide", | ||
"keywords": [ | ||
"telegram", | ||
"cloud", | ||
"upload", | ||
"manager", | ||
"bot" | ||
], | ||
"repository": "https://github.com/TR-TECH-GUIDE/Cloud-Up-Manager", | ||
"website": "https://trtechguide.wordpress.com", | ||
"success_url": "https://t.me/trtechguide", | ||
"env": { | ||
"API_ID": { | ||
"description": "Get this value from my.telegram.org" | ||
}, | ||
"API_HASH": { | ||
"description": "Get this value from my.telegram.org" | ||
}, | ||
"BOT_TOKEN": { | ||
"description": "Get this from @BotFather" | ||
}, | ||
"STREAMTAPE_API_USERNAME": { | ||
"description": "Streamtape API Username. Get this from https://streamtape.com/accpanel#collapseThree" | ||
}, | ||
"STREAMTAPE_API_PASS": { | ||
"description": "Streamtape API Password. Get this from https://streamtape.com/accpanel#collapseThree" | ||
}, | ||
"BOT_OWNER": { | ||
"description": "Bot Owner UserID", | ||
"required": false | ||
}, | ||
"LOG_CHANNEL": { | ||
"description": "Logs Channel ID for some Tracking XD. Example: -100123456789" | ||
} | ||
}, | ||
"buildpacks": [ | ||
{ | ||
"url": "heroku/python" | ||
} | ||
], | ||
"formation": { | ||
"worker": { | ||
"quantity": 1, | ||
"size": "free" | ||
} | ||
} | ||
} |
Oops, something went wrong.