python搭建http服务器和ftp服务器

这篇文章主要为大家详细介绍了python搭建http服务器和ftp服务器的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本教程为大家分享了python搭建http服务器和ftp服务器的具体步骤,供大家参考,具体内容如下

默认安装版本为pytho2.7

http服务器搭建教程:

进入要开放访问的目录下,执行命令:python -m simplehttpserver 9000

python搭建http服务器和ftp服务器

显示上述表示安装成功,且http服务的端口为:9000,不跟端口默认80端口

通过浏览器访问该http服务:

http://localhost:9000

页面显示入下:

python搭建http服务器和ftp服务器

服务器端显示如下:

python搭建http服务器和ftp服务器

表示接收请求成功。

下面是ftp服务器搭建教程:

python不自带ftp服务库,因此需要安装插件:

进入python27\scripts目录,执行:pip install pyftpdlib命令,显示如下,表示安装成功

python搭建http服务器和ftp服务器

进入需要开放的ftp服务目录下,执行:python -m pyftpdlib -p 21,显示如下,表示ftp服务搭建成功

python搭建http服务器和ftp服务器

通过浏览器ftp://localhost:21访问,显示如下,表示访问成功:

python搭建http服务器和ftp服务器

服务端显示如下,表示接收请求成功:

python搭建http服务器和ftp服务器

以上就是python搭建http服务器和ftp服务器的详细内容,更多请关注 第一php社区 其它相关文章!

Posted in 未分类

发表评论