Django Middlewares by Vincent/Aug. 14, 2023, 9:40 a.m./10 minutes #middleware Django middleware is a light plugin for Django that handles request and response processing on a global scale. The middleware … Continue Reading
Web scraping in Python by Vincent/Aug. 8, 2023, 4:36 a.m./10 minutes #beautifulsoup Web scraping can be defined as the process of extracting data from the internet automatically. The data gathered from the … Continue Reading
How to create multistep form using Django and Django formtools by Vincent/Dec. 21, 2022, 3:46 p.m./10 minutes #forms What is Multistep form? Multistep forms are multiple forms used to collect the user's input. These forms are usually broken … Continue Reading
Python List Comprehension by Vincent/July 17, 2022, 10:19 a.m./5 minutes #list A new list can be created using the values of an existing list using Python list comprehension, which offers a … Continue Reading
Lambda Function in python by Vincent/July 17, 2022, 10:06 a.m./5 minutes #function In Python, the lambda function is a special kind of nameless inline function that consists of a unique expression that … Continue Reading