DEV Community

cmccafferty96
cmccafferty96

Posted on

Building A Restful API With Flask

Flask is a popular Python web framework that provides a simple and flexible way to build web applications. In this blog post, we'll explore how to create a RESTful API using Flask. RESTful APIs are a common way to expose data and functionality over the web, allowing other applications to interact with your application programmatically. Let's dive into the process of building a Flask-powered RESTful API.

Setting Up Flask
To get started, let's set up a basic Flask application. First, make sure you have Flask installed. You can install it using pip:

$ pip install flask
Enter fullscreen mode Exit fullscreen mode

Next, crate a new Python file, for example, 'app.py', and import the necessary modules:

from flask import Flask

app = Flask(__name__)

Enter fullscreen mode Exit fullscreen mode

Creating API Endpoints:
API endpoints define the different routes that our API will expose. For example, let's create an endpoint that returns a list of users. Add the following code to the 'app.py':

@app.route('/users', methods=['GET'])
def get_users():
    users = [
         {'id': 1, 'name': 'John'},
         {'id': 2, 'name':, 'Jane'},
         {'id': 3, 'name':, 'Bob'}
    ]
    return jsonify(users)

Enter fullscreen mode Exit fullscreen mode

In this code snippet, we define an endpoint at '/users' that responds to HTTP GET requests. Inside the function, we create a list of user objects and return them as a JSON response using the 'jsonify' function.

Handling Request Parameters:

Often, APIs need to accept parameters to perform specific actions. Let's modify our '/users' endpoint to accept a query parameter for filtering the list of users by name:

from flask import request

@app.route('/users', methods=['GET'])
def get_users():
    name = request.args.get('name')
    filtered_users = [user for user in users if 
    user['name'] == name] if name else users 
    return jsonify(filtered_users)
Enter fullscreen mode Exit fullscreen mode

Now when calling '/users?name=John', the API will only return users whose name is 'John'. We use 'request.args.get('name')' to retrieve the value of the 'name' query parameter form the request URL.

Handling POST Requests:

To handle data creation, we can add a new endpoint that accepts POST requests to create a new user:

@app.route('/users', methods=['POST'])
def create_user():
    new_user = request.get_json()
    users.append(new_user)
    return jsonify(new_user), 201
Enter fullscreen mode Exit fullscreen mode

In this code snippet, we retrieve the JSON payload from the request using 'request.get_json()', append the new user to the list of users, and return the new user with a 201 code indicating successful creation.

In this post, we've explored the process of building a RESTful API using Flask. We covered setting up a basic Flask application, creating API endpoints, handling request parameters, and handling POST requests for data creation. Flask provides a straightforward and flexible framework for building APIs, and its simplicity makes it an excellent choice for small to medium-sized projects.

Remember that these are just the basics, and Flask offers many more features and capabilities for building powerful APIs. Whether you're building a simple API or a complex application, Flask has you covered.

Happy coding!

Top comments (0)