Create a simple http webserver server using python

Source: Internet
Author: User

Create a simple http webserver server using python

This article describes how to create a simple http webserver server in python. The example analyzes the skills related to Python operations on http server creation. For more information, see

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

Import sys

Import BaseHTTPServer

From SimpleHTTPServer import SimpleHTTPRequestHandler

Handler = SimpleHTTPRequestHandler

Server = BaseHTTPServer. HTTPServer

Protocol = "HTTP/1.0"

If sys. argv [1:]:

Port = int (sys. argv [1])

Else:

Port = 8000

Server_address = ('2014. 0.0.1 ', port)

Handler. protocol_version = Protocol

Httpd = Server (server_address, Handler)

Print ("Serving HTTP ")

Httpd. serve_forever ()

I hope this article will help you with Python programming.

Note <>: For more exciting tutorials, please pay attention to the help house programming

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.