Python工具箱

Python可以说是目前最流行的编程语言,有很多开箱即用的工具,大家安装好Python之后便可以直接使用。

Python工具箱

分享本地文件夹

通过建立Http服务器,把本地的文件夹分享到局域网,同个网络的其它电脑可以通过IP地址来访问这个服务器。

# Enter the directory that you want to share
cd /home/yourname/shared_folder

# Serve the folder in port 8000
python3 -m http.server 8000 --bind 0.0.0.0