Processing HTTP GET input parameter on server side in python

前端 未结 3 1071
暖寄归人
暖寄归人 2020-12-13 19:50

I wrote a simple HTTP client and server in Python for experimenting. The first code snippet below shows how I send an HTTP GET request with a parameter named imsi. In the se

3条回答
  •  半阙折子戏
    2020-12-13 20:19

    cgi module contains FieldStorage class which is supposed to be used in CGI context, but seems to be easily used in your context as well.

提交回复
热议问题