Skip to content

Commit 5fa9680

Browse files
committed
flask example has been added
1 parent 12cff41 commit 5fa9680

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed

15-web-development/README.md

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
## What is Flask?
2+
3+
[Flask](https://flask.palletsprojects.com/) is a lightweight WSGI web application framework in Python. It is designed to be simple and easy to use, allowing developers to build web applications quickly with minimal setup. Flask provides tools and libraries for routing, templating, and handling HTTP requests and responses. It is often used for building web APIs and small to medium-sized web applications.
4+
5+
## Getting Started
6+
7+
To run this example, follow these steps:
8+
9+
### Prerequisites
10+
11+
- Python 3.x installed on your machine.
12+
- `pip` (Python package installer) available.
13+
14+
### Installation
15+
16+
1. **Clone the repository** (if applicable):
17+
18+
2. **Install Flask**:
19+
```bash
20+
pip install flask
21+
```
22+
23+
### Running the Application
24+
25+
1. **Run the Flask application**:
26+
```bash
27+
python flask_example.py
28+
```
29+
30+
2. **Access the application**:
31+
- Open a web browser and go to `http://127.0.0.1:5000/` to see the welcome message.
32+
- Access `http://127.0.0.1:5000/api/greet?name=test` to see a JSON response with a personalized greeting.
33+
34+
### Usage
35+
36+
- **Root URL (`/`)**: Displays a simple welcome message.
37+
- **API Endpoint (`/api/greet`)**: Accepts a query parameter `name` and returns a JSON object with a greeting message.
38+

15-web-development/flask_example.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# flask_example.py
2+
3+
from flask import Flask, jsonify, request
4+
5+
app = Flask(__name__)
6+
7+
# a route for the root URL
8+
@app.route('/')
9+
def home():
10+
return "Welcome to the Flask Example!"
11+
12+
# a route for a JSON response
13+
@app.route('/api/greet', methods=['GET'])
14+
def greet():
15+
name = request.args.get('name', 'World')
16+
return jsonify({'message': f'Hello, {name}!'})
17+
18+
if __name__ == '__main__':
19+
app.run(debug=True)

0 commit comments

Comments
 (0)