~/tags/flask
Building scalable Flask applications from the start using the application factory pattern, blueprints and the current_app proxy
Drop the @app.route decorator and write scalable, readable and better maintainable code in your Flask API
Prototype idea - An automated build tool using uWSGI to watch files & directories for modifications
Using the sass, rcssmin and rjsmin Python packages to optimize web assets, including Bootstrap
Using Python decorators to add another layer of functionality to Flask routes
Exploring and testing out some of the awesome uWSGI decorators
Leveraging the power of Flasks built in before and after request functions
An introduction to running Flask (and other Python applications) with uWSGI
Containerizing a Flask application with Docker, Nginx & uWSGI using Docker Compose
Setup and deploy a Flask application on a Google Cloud virtual machine with Nginx & uWSGI
Using Pillow and task queues to offload image resizing to a worker process and using the HTML picture tag to increase image rendering performance
An introduction to task queues with Flask and RQ
Exploring the Flask request object
Understanding when and where to use GET, POST, PUT, PATCH, DELETE and a brief introduction to HTTP methods in Flask
Providing visual feedback on the progress of uploading large files with a progress bar and percentage complete
Ditching pagination for smooth and infinite lazy loading, using the JavaScript IntersectionObserver API
Manually throwing errors, creating custom error handlers and rendering error templates
Providing feedback and notifications to users using Flask's flash function
Using, understanding and decoding the Flask session object, the globally available signed & encoded cookie
Setting, getting and working with cookies in Flask
How to send and allow users to download files with Flask
Posting, checking and validating file uploads with Flask
Configuring Flask applications using a config file and classes
Creating, serializing and working with query string data in Flask
Asynchronous requests from the client to the server using the JavaScript Fetch API
Handle incoming, parsing and returning JSON data with Flask!
Learn how to create and work with dynamic URLs and dynamic data in Flask
Creating forms, posting data to views and working with form data in Flask
An brief introduction to the power of the Jinja templating engine
Creating reusable base HTML templates and extending them throughout your Flask app
Linking stylesheets, javascript files and serving images with Flask
How to render HTML files and structure template directories with Flask
Structuring your Flask application for
In the first part of this series, you'll learn how to create and run your very first Flask web application
Flask is a powerful, flexible and rich featured micro web framework for Python