Best of FlaskJanuary 2025

  1. 1
    Article
    Avatar of pulumiPulumi·1y

    Host your Python app for $1.28 a month

    Discover how to host low-traffic Python applications on AWS Lambda for minimal cost. Using containers, developers can leverage Lambda to maintain high availability while paying only when their service is called. The post describes the process of containerizing a Flask app and deploying it with Pulumi, minimizing the need for extensive serverless knowledge. This approach allows for zero cost when idle and scalable infrastructure, benefiting APIs with sporadic traffic and cost-sensitive projects.

  2. 2
    Article
    Avatar of rpythonReal Python·1y

    Creating a Scalable Flask Web Application From Scratch – Real Python

    Learn to create a scalable Flask web application from scratch in this comprehensive video course. The course covers setting up a Flask project, creating a basic app, adding multiple pages with blueprints, using Jinja templates, and managing static files. It includes 14 lessons with subtitles, downloadable resources, a text-based tutorial, and Q&A with Python experts.

  3. 3
    Article
    Avatar of medium_jsMedium·1y

    How to Build an RBAC Permissioned Admin Dashboard with Permit.io and Flask

    Learn how to implement Role-Based Access Control (RBAC) in a Flask application using Permit.io for managing roles and permissions. The guide covers setting up an employee management system, installing necessary dependencies, creating resources and roles in Permit.io, enforcing permissions with the Permit SDK, and testing the application. This approach enhances scalability and security, preventing unauthorized access to sensitive data.