本文主要是介绍pythonweb(1),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler #导入HTTP处理相关的模块
ModuleNotFoundError: No module named 'BaseHTTPServer'
这里是涉及到python3和python2的语法区别,我的pywebsocket是python2版本的,但是Python却是python3.0的版本。basehttpserver在python3中已经替换为http.server了,查看更多详细情况可以打开链接:
改成
from http.server import HTTPServer, BaseHTTPRequestHandler
https://blog.csdn.net/testcs_dn/article/details/50449048
这篇关于pythonweb(1)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!