https://github.com/kourva/reelsbot
Instagram Reels Downloader | Just send the URL to bot and it will send the video
https://github.com/kourva/reelsbot
docker environment-variables instagram-bot instagram-downloader pytelegrambotapi python3 telegram-bot
Last synced: 8 months ago
JSON representation
Instagram Reels Downloader | Just send the URL to bot and it will send the video
- Host: GitHub
- URL: https://github.com/kourva/reelsbot
- Owner: Kourva
- License: mit
- Created: 2023-09-09T14:29:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-28T15:42:07.000Z (over 1 year ago)
- Last Synced: 2025-04-12T09:53:15.842Z (12 months ago)
- Topics: docker, environment-variables, instagram-bot, instagram-downloader, pytelegrambotapi, python3, telegram-bot
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
ReelsBot
Instagram Reels Downloader bot
# Installation
+ Clone the repository
```bash
git clone https://github.com/Kourva/ReelsBot
```
+ Navigate to files directory
```bash
cd ReelsBot
```
+ Give Execute permission to main file
```bash
chmod +x bot.py
```
+ Initialize token
```bash
echo 'TOKEN=Your token here' > Token.env
```
> Example: `echo 'TOKEN=1234567890:AABBCCDDEEFFGGHHIIJJKKLLMMNNOOPPQQR' > Token.env`
> Or edit Token.env file manually!
+ Install requirements
```bash
pip install -r requirements.txt
```
+ Run the bot using python or open it direclty using `./bot.py`
```bash
python bot.py
```
#### One line command
```bash
git clone https://github.com/Kourva/ReelsBot && cd ReelsBot && chmod +x bot.py && pip install -r requirements.txt
```
> You still need to configure your **token**
# Docker installation
You can also install and run your file with docker.
If you don't have Docker installed, you can download and install it from the official Docker website: [Docker Installation Guide](https://docs.docker.com/get-docker/)
+ Clone the repository
```bash
git clone https://github.com/Kourva/ReelsBot
```
+ Navigate to files directory
```bash
cd ReelsBot
```
+ Build the Docker Image
```bash
docker build -t your-bot-name .
```
+ Run your Docker Image
```bash
docker run your-bot-name
```
> Note: replace `your-bot-name` with your suitable name for your bot
# Usage
For the usage just send reel URL copied from instagram to bot. Note that some rells can't be downloaded.
> You can also host your bot in [pythonanywhere](https://www.pythonanywhere.com) for free.
# Thank You
Thank you for checking out this repository! Your interest and support are greatly appreciated. If you find this project useful or have any feedback, please feel free to open issues or contribute.
> Happy coding!