我知道如何在python中使用datetime获取当前系统日期和时间。有没有办法使用python语言在同一网络中获取另一个系统的日期和时间?我google了很多但没有找到任何有用的东西。基本上,我使用beaglebone black(使用usb以太网连接与主机)来实现流量管理系统。使用datetime,程序返回beaglebone的时间。相反,我想要主机系统的时间。我怎么能这样做?
答案 0 :(得分:5)
这是一个解决方案,确保客户端计算机已被授权在不输入密码的情况下登录目标计算机,
python代码:
import os
remote_date = os.popen("ssh user@yourhost date").readline()
print remote_date
输出:
Thu Jan 1 13:33:48 CST 2015
对您有帮助:))