Best of FlaskFebruary 2023

  1. 1
    Article
    Avatar of communityCommunity Picks·3y

    A Full Guide: Understand Everything About APIs with Examples

    Learn about APIs, their importance, different types, how REST APIs work, securing APIs, and writing API documentation with an example of building an e-commerce API using Flask.

  2. 2
    Article
    Avatar of rpythonReal Python·3y

    Build a JavaScript Front End for a Flask API – Real Python

    Developers can separate JavaScript front-end code from the back-end logic that a web framework like Flask provides. Following this step-by-step project, you’ll create an interactive single-page application with HTML, CSS, and JavaScript. The foundation is an existing Flask project with a REST API and a connected SQLite database.

  3. 3
    Article
    Avatar of communityCommunity Picks·3y

    Python CRUD Rest API in Python using Flask, SQLAlchemy, Postgres, Docker, and Docker Compose

    Learn how to create a CRUD Rest API in Python using Flask, SQLAlchemy, Postgres, Docker, and Docker Compose. The post provides a step-by-step guide to build the API and dockerize the project.

  4. 4
    Article
    Avatar of testdrivenTestDriven.io·3y

    Web Authentication Methods Compared

    This article discusses various web authentication methods, including HTTP Basic Authentication, HTTP Digest Authentication, session-based authentication, token-based authentication, one-time passwords, and OAuth/OpenID. It highlights the differences between authentication and authorization, provides code examples, and suggests use cases for each method.