


Using CGI module to create a simple web page tutorial example
I have been learning python web programming in the past few days. The main content is to build a simple web server and use CGI modules to create simple web pages (Sorry for the unprofessional use of words).
Python has the following three modules for building http server:
1) BaseHTTPServer: Provides basic Web services and processor classes, namely HTTPServer and BaseHTTPRequestHandler;
2) SimpleHTTPServer: Contains the SimpleHTTPRequestHandler class that performs GET and HEAD requests;
3) CGIHTTPServer: Contains the CGIHTTPRequestHandler class that handles POST requests and executes.
python The simplest web server is shown below:
##So you can access the content in the server
For example, access the following html page directly, the results are as follows:
hello.html is stored in the root directory of the server. The code is as follows:
1 2 3 4 5 6 7 8 9 10 |
|
in hello.html There is a hello_get.py linked in the file, which is stored in the cgi-bin folder in the server root directory. The code is as follows:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
|
It is worth noting: 1. I did it for a long time at first, but when calling the py file, it either showed blank or an error occurred. After checking a lot of network resources, I found that the problem was caused by the permissions of the py file. You only need to execute chmod 755 XXX.py. In addition
1 |
|
1 2 3 4 5 6 |
|
I am just a beginner, so I can only share my learning process to avoid everyone encountering the same problem as me and spending a lot of time.
【Related recommendations】Detailed explanation of cgi writing data example code to text or database
2.Share an example tutorial on running Python scripts using CGI on IIS
3.What is CGI? Detailed introduction to Python CGI programming
4.Share an example tutorial of Python CGI programming
5.Detailed explanation of XML and sample code of modern CGI applications
6.FastCGI process unexpectedly exited causing 500 error
The above is the detailed content of Using CGI module to create a simple web page tutorial example. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











File upload and download technology with PHP and CGI: How to implement file management functions Introduction: File upload and download are one of the common functions in modern web applications. This article will introduce how to implement file upload and download functions using PHP and CGI programming languages, and show some code examples to demonstrate how to manage uploaded and downloaded files. Here’s what we’re going to cover: Basic concepts of file upload using PHP to implement file upload CGI to implement file upload Basic concepts of file download using PHP to implement file download CGI implementation under the file

How to use PHP and CGI to implement user registration and login functions User registration and login are one of the necessary functions for many websites. In this article, we will introduce how to use PHP and CGI to achieve these two functions. We'll demonstrate the entire process with a code example. 1. Implementation of the user registration function The user registration function allows new users to create an account and save their information to the database. The following is a code example to implement the user registration function: Create a database table First, we need to create a database table to store user information. Can

How to use PHP and CGI to implement the video playback function of the website In today's multimedia era, video has become an indispensable part of the website content. In order to provide a good user experience, the website needs to implement video playback function. This article will introduce how to use PHP and CGI to implement the video playback function of the website, and provide code samples for reference. 1. Preparation Before starting, you need to ensure that the server has PHP and CGI modules installed. You can do this by running the phpinfo() function or typing "php

PHP and CGI template engines: How to achieve website reusability Introduction: When developing websites, we often need to deal with the display of dynamic content. In order to achieve code maintainability and reusability, using a template engine is a wise choice. This article will introduce PHP and CGI, two commonly used template engines, and show how to use them to achieve website reusability through code examples. 1. PHP template engine PHP is a widely used server scripting language with flexibility and powerful functions. PHP template engine is a

CGI is a protocol and has nothing to do with the process. For example, when the web server (nginx) receives a PHP network request, nginx needs to find the PHP parser according to the configuration file. After simple processing, some of the requested information is handed over to The PHP parser stipulates which protocols are to be transmitted and the format in which they are transmitted. This standard is called the cgi protocol.

Comparison of PHP and CGI technologies: How to choose the right website for you With the development of the Internet, CGI (Common Gateway Interface) and PHP (Hypertext Preprocessor) have become one of the most commonly used website development technologies. This article will compare these two technologies to help you choose the right development technology for your website. 1. Overview PHP is a very popular server-side scripting language that is widely used for dynamic website development. It is open source, supports multiple operating systems, and has powerful database connection and processing capabilities. Developers can use simple syntax

Working principles and similarities and differences In web development, PHP is a commonly used programming language that can interact with web servers in different ways, the most common of which are through PHPCLI (CommandLineInterface) and PHPCGI (CommonGatewayInterface). This article will explore the working principles, similarities and differences between PHPCLI and CGI, and provide specific code examples to illustrate the differences between them. 1. PHP

How to use PHP and CGI to implement the paging and sorting functions of a website Preface Paging and sorting of a website are very common and important functions, especially for the display and processing of large amounts of data. In this article, we will use PHP and CGI (Common Gateway Interface) technology to implement the paging and sorting functions of the website, with corresponding code examples. 1. Implementation of paging function The paging function mainly obtains a specific range of data by querying the database, and displays the data according to the specified page number and display quantity per page. The following are the steps to implement paging functionality
