欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python3 如何开启自带http服务

程序员文章站 2022-06-16 09:16:51
开启web服务1.基本方式python中自带了简单的服务器程序,能较容易地打开服务。在python3中将原来的simplehttpserver命令改为了http.server,使用方法如下:1. cd...

开启web服务

1.基本方式

python中自带了简单的服务器程序,能较容易地打开服务。

在python3中将原来的simplehttpserver命令改为了http.server,使用方法如下:

1. cd www目录

2. python -m http.server

开启成功,则会输出“serving http on 0.0.0.0 port 8000 (http://0.0.0.0:8000/) …”,表示在本机8000端口开启了服务。

如果需要后台运行,可在命令后加"&"符号,ctrl+c不会关闭服务,如下:

python -m http.server &

如果要保持服务,则在命令前加nohup以忽略所有挂断信号,如下:

nohup python -m http.server 8001

2.指定端口

如果不使用默认端口,可在开启时附带端口参数,如:

python -m http.server 8001

则会在8001端口打开http服务。

使用web服务

可以使用http://0.0.0.0:8000/查看www目录下的网页文件,若无index.html则会显示目录下的文件。

也可以使用ifconfig命令查看本机ip并使用。

补充:python创建http服务

背景

用java调用dll的时候经常出现 invalid memory access,改用java-python-dll,

python通过http服务给java提供功能。

环境

python3.7

通过 http.server.basehttprequesthandler 来处理请求,并返回response

打印日志

filename为输入日志名称,默认是同目录下,没有该文件会新创建

filemode a 是追加写的模式,w是覆盖写

import logging
logging.basicconfig(
    level=logging.info,
    format='%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s',
    filename="hhh.txt",
    filemode='a'
)
logging.info("xxxx")

调用dll

pchar - ctypes.c_char_p

integer 用了 bytes(0),byref(ctypes.c_void_p(0)) 都ok,没有更深入去研究,如有错误请指正。

import ctypes
from ctypes import *
dll = ctypes.windll.loadlibrary('c:\\xxx\\xxx.dll')
print("dll版本号为 : "+ str(dll.getversion()) )
 name = ctypes.c_char_p(b"gc")
            roomno = ctypes.c_char_p(bytes(room.encode("utf-8")))
            begintime = ctypes.c_char_p(bytes(begin.encode("utf-8")))
            endtime = ctypes.c_char_p(bytes(end.encode("utf-8")))
            cardno = ctypes.c_void_p(0)
            dll.invoke...

http方案一

要注意 必须有 response = response_start_line + response_headers + “\r\n” + response_body

拼接应答报文后,才能给浏览器正确返回

# coding:utf-8
import socket
from multiprocessing import process
def handle_client(client_socket):
    # 获取客户端请求数据
    request_data = client_socket.recv(1024)
    print("request:", request_data)
    # 构造响应数据
    response_start_line = "http/1.1 200 ok\r\n"
    response_headers = "server: my server\r\n"
    response_body = "helloworld!"
    response = response_start_line + response_headers + "\r\n" + response_body
    print("response:", response)
    # 向客户端返回响应数据
    client_socket.send(bytes(response, "utf-8"))
    # 关闭客户端连接
    client_socket.close()
if __name__ == "__main__":
    server_socket = socket.socket(socket.af_inet, socket.sock_stream)
    server_socket.bind(("", 8888))
    server_socket.listen(120)
    print("success")
    while true:
        client_socket, client_address = server_socket.accept()
        print("[%s, %s]用户连接上了" % client_address)
        handle_client_process = process(target=handle_client, args=(client_socket,))
        handle_client_process.start()
        client_socket.close()

完整代码

另外一种http方式

#-.- coding:utf-8 -.-
from http.server import  httpserver
import ctypes
from ctypes import *
# httprequesthandler class
import http.server
import socketserver
import logging
# pyinstaller -f
class testhttpserver_requesthandler(http.server.basehttprequesthandler):
    # get
  def do_get(self):
        logging.error('start make ')
        str2 =  str(self.path)
        print("revice: " + str2)
        if "xxx" in str2:
            # todo 你的具体业务操作
               
            if "xxx" in str2:
                print("hahaha")
                logging.error('hahaha')
                # response_body = "0"
                self.send_response(200)
                # send headers
                self.send_header('content-type','text/html')
                self.end_headers()
                # send message back to client
                message = "hello world!"
                # write content as utf-8 data
                self.wfile.write(bytes(message, "utf8"))
                return
        else:
            print("1else")
            self.send_response(200)
            # send headers
            self.send_header('content-type', 'text/html')
            self.end_headers()
            # send message back to client
            message = "hello world222333!"
            # write content as utf-8 data
            self.wfile.write(bytes(message, "utf8"))
            return
            
def run():
  print('starting server...')
  logging.basicconfig(
      level=logging.info,
      format='%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s',
      filename="http_make_card.txt",
      filemode='a+'
  )
  # server settings
  server_address = ('127.0.0.1', 8888)
  httpd = httpserver(server_address, testhttpserver_requesthandler)
  print('running server...')
  httpd.serve_forever()
run()

打包exe

pip install pyinstaller

pyinstaller -f xxx.py 即可,当前目录下生成

1、no module named ‘http.server'; ‘http' is not a package

当时自己建了一个py叫http,删掉后正常

2、unicodedecodeerror: ‘utf-8' codec can't decode byte 0xce in position 130: invalid continuat

另存为utf-8即可

Python3 如何开启自带http服务

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。