2 Star 15 Fork 10

HaloOS/vcos_apps

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
send.py 304 Bytes
一键复制 编辑 原始数据 按行查看 历史
openhaloos 提交于 3个月前 . haloOS init
import sys
from time import sleep
f = open(sys.argv[1], "w")
s = ""
while len(s) < 11520:
s += "1"
print("Sending to %s" % sys.argv[1])
while True:
f.write(s)
f.flush()
#for i in range(len(s)):
# f.write(s[i])
# f.flush()
# #sleep(0.050)
sys.stdout.write(".")
sys.stdout.flush()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/haloos/vcos_apps.git
git@gitee.com:haloos/vcos_apps.git
haloos
vcos_apps
vcos_apps
master

搜索帮助