Overview
Flask_3.10 on Ubuntu 20.04 with Free maintenance support by ATH.
This is a repackaged open source software product wherein additional charges apply for support.Flask is a micro web framework for Python, known for its simplicity, flexibility, and ease of use. Developed by Armin Ronacher, Flask is designed to be lightweight, allowing developers to build web applications quickly and efficiently. Unlike full-stack frameworks that come bundled with various components and opinions, Flask follows a minimalist philosophy, providing only the essentials needed for web development.
Highlights
- Flask uses decorators to define routes and bind them to functions. This makes it easy to understand the structure of your application, and it follows the principle of keeping things simple and readable.
- Flask uses the Jinja2 template engine, allowing developers to render dynamic content in HTML templates. This separation of logic and presentation enhances code maintainability.
- Flask is built on the Werkzeug WSGI toolkit, providing a solid foundation for handling HTTP requests, routing, and other web-related tasks. This underlying infrastructure contributes to Flask's stability and performance.
Details
Typical total price
$0.12/hour
Pricing
Free trial
Instance type | Product cost/hour | EC2 cost/hour | Total/hour |
---|---|---|---|
t2.micro AWS Free Tier | $0.01 | $0.012 | $0.022 |
t2.small | $0.02 | $0.023 | $0.043 |
t2.medium | $0.02 | $0.046 | $0.066 |
t2.large | $0.02 | $0.093 | $0.113 |
t2.xlarge | $0.02 | $0.186 | $0.206 |
t2.2xlarge | $0.02 | $0.371 | $0.391 |
t3.nano | $0.02 | $0.005 | $0.025 |
t3.micro AWS Free Tier | $0.02 | $0.01 | $0.03 |
t3.small | $0.02 | $0.021 | $0.041 |
t3.medium | $0.02 | $0.042 | $0.062 |
Additional AWS infrastructure costs
Type | Cost |
---|---|
EBS General Purpose SSD (gp2) volumes | $0.10/per GB/month of provisioned storage |
Vendor refund policy
No Refund
Legal
Vendor terms and conditions
Content disclaimer
Delivery details
64-bit (x86) Amazon Machine Image (AMI)
Amazon Machine Image (AMI)
An AMI is a virtual image that provides the information required to launch an instance. Amazon EC2 (Elastic Compute Cloud) instances are virtual servers on which you can run your applications and workloads, offering varying combinations of CPU, memory, storage, and networking resources. You can launch as many instances from as many different AMIs as you need.
Version release notes
Try one unit of this product for 5 days. There will be no software charges for that unit, but AWS infrastructure charges still apply. Free Trials will automatically convert to a paid subscription upon expiration and you will be charged for additional usage above the free units provided.
Additional details
Usage instructions
Connect to EC2 Linux instance - https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AccessingInstances.html ( Port - 22 and Username - ubuntu) and run the following command to update the package list:
sudo apt-get update
Create and Edit Flask App:
sudo nano app.py
Paste the following code into the editor (This code is only for testing):
from flask import Flask app = Flask(name)
@app.route('/') def index(): return 'YOUR PROJECT NAME'
Save the file and exit.
export FLASK_APP=app.py
sudo systemctl restart my-flask-app
sudo systemctl status my-flask-app
cd My-Flask-Application
sudo nano /etc/nginx/sites-available/my-flask-app
Change the server_name to your Instance IP public address or domain name. Save & exit.
sudo a2ensite flask.conf
apachectl -t
sudo systemctl restart apache2
Access Your App: Open a web browser and go to your instance's public IPv4 address or domain name. You should see "YOUR PROJECT NAME" or the output from the updated script.
Support
AWS infrastructure support
AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.