Video-Downloader

Create your own video downloader flask application and deploy it using AWS Elastic Bean

View on GitHub

YouTube Video Downloader

  1. The file app.py uses Flask ( is a micro web framework written in Python). ```python from flask import Flask app = Flask(name) @app.route(‘/’) def hello(): return “Hello World!”

if name == ‘main’: app.run() ``` The above code gives us Hello World! which runs in our local host. For more details regarding Flask click here. The run() method of flask runs the application, also we can used html,css in our project.

  1. If you want to deploy your application we have various method, I used Amazon Elastic Bean which is an orchestration service offered by Amazon Web Services for deploying applications.

our application I’m attaching a youtube tutorial which will be veru useful if you want your application to be deployed, Click here.

I am attaching some links regarding our concept of deploying a Flask Application, if you want to dig deep.

## Thankyou :D