Gunicorn: A Practical Python Library for WSGI HTTP Servers!

Gunicorn: A Practical Python Library for WSGI HTTP Servers!

▼ Click the card below to follow Note me ▲ Click the card above to follow me Gunicorn: The Tool That Launches Your Python Web Applications! When writing web applications, we often encounter a frustrating problem: how to efficiently and stably deploy our Python applications? Today, I want to introduce you to a super powerful … Read more

Gunicorn: A Python Library for WSGI HTTP Server!

Gunicorn: A Python Library for WSGI HTTP Server!

▼ Click the card below to follow me ▲ Click the card above to follow me Gunicorn! A powerful tool that makes your Python web applications fly! Today, let’s talk about Gunicorn. It is a WSGI HTTP server, which simply means it helps you run web applications written in Python (like Flask and Django) so … Read more

The Dash Library in Python: The Ultimate Solution for Building Enterprise-Level Data Analysis Dashboards

The Dash Library in Python: The Ultimate Solution for Building Enterprise-Level Data Analysis Dashboards

1. Introduction to the Library: The Role of Dash in Real Life Dash is one of the most powerful interactive web application frameworks in the Python ecosystem, developed by the Plotly team, specifically designed for data analysts and scientists to build data visualization dashboards. Unlike traditional web development that requires knowledge of HTML, CSS, and … Read more

Dr. An’s Lecture | Tencent Arm Cloud Instance Performance Evaluation – Web Applications

Dr. An's Lecture | Tencent Arm Cloud Instance Performance Evaluation - Web Applications

Dr. An is here! We are pleased to introduce “Dr. An”, who is backed by a top-notch technical expert team from Ampere Computing, dedicated to sharing cutting-edge technical analyses, application insights, and trend observations in the cloud-native field with you. Let’s welcome “Dr. An” to shine on stage and bring the first exciting sharing! 【Follow】 … Read more

Detailed Explanation of HTTP Protocol

Detailed Explanation of HTTP Protocol

HTTP is an object-oriented protocol belonging to the application layer. Due to its simplicity and speed, it is suitable for distributed hypermedia information systems. It was proposed in 1990 and has undergone continuous improvement and expansion over the years. Currently, HTTP/1.0 version 6 is in use on the WWW, while the standardization work for HTTP/1.1 … Read more

Understanding User Authentication in Web Applications

Understanding User Authentication in Web Applications

https://thecopenhagenbook.com/ Server-side tokens A server-side token is any long, random string that is stored on the server. It may be persisted in a database or in-memory data store (e.g. Redis) and is used for authentication and verification. A token can be validated by checking if it exists in storage. Examples include session IDs, email verification … Read more