Category Python Modules

Modules is one of the best feature of Python. Except some core modules, you can install what you need and keep your Python setup smooth.

Set Up Content Security Policy using Flask Talisman

Featured Image For: Set Up Content Security Policy Using Flask Talisman

Content Security Policy (CSP) is an extra layer of security for web applications that secures the application from malicious attacks. CSP instructs the browser on what resources are allowed to load on a specific webpage. Usually, the website administrator configures…

How To Configure Logging In Python?

Featured Image For: How To Configure Logging In Python?

Logging is important for recording the operational data of applications and providing transparency during runtime. This article guides you through the detailed steps of configuring logging in Python, using the built-in ‘logging’ module to ensure accurate and effective logging practices.…

How to Deploy Flask Apps on Vultr using Nginx and Gunicorn

Featured Image For: How To Deploy Flask Apps On Vultr Using Nginx And Gunicorn

Flask is a Python framework for building web applications. With Flask, developers can easily define routes, handle HTTP requests and responses, and render dynamic content using Jinja2 templates. It also supports extensions allowing developers to integrate features like database access,…