我正在研究一个基于Python的twitter机器人,使用tweepy,使用speedtest-cli和subprocess来获取我的互联网速度,并且每隔45分钟在我的ISP上发推文,如果它在我们支付的费用之下,但是,我遇到了问题。为了进行测试,我制作了2个文件,两个文件在导入方面都相同,在Python 2.7中都使用Python 3打印功能。一个具有静态的,设置速度最快的结果,以允许我测试Tweepy方面,而另一个运行speedtest并将其写入同名变量。
真正的版本是
while True:
testresraw = subprocess.check_output('speedtest --no-upload', shell=True) #Test speed and get output
testresnone,testressplit = testresraw.split('Download: ')#Remove text before the download speed
testresint,testresnone = testressplit.split('Mbit/s')#Remove text after download speed
float(testresint)#Make sure download speed is a number
if testresint<float(10.0):
statustext= ('My download speed is currently %d MB/s, which is less than the 10 we pay @CenturyLink for' % (testresint))
api.update_status(status=statustext)
time.sleep(2700)
else:
time.sleep(2700)
测试版本是
testresint = 1
if testresint<float(10.0):
statustext = ('My download speed is currently %d MB/s, which is less than the 10 we pay @CenturyLink for' % (testresint))
api.update_status(status=statustext)
time.sleep(2700)
else:
time.sleep(2700)
只有测试版本有效,我无法弄清楚原因。
编辑:我放置了一些print
函数来告诉我它在哪里弄乱,事实证明,在判断else
不是testresint
后,它会转到float
语句少于10,错误。我按照建议删除了10.0之前的My.Application.OpenForms
。我仍然无法弄清楚出了什么问题。
答案 0 :(得分:0)
我设法通过将if testresint<float(10.0)
更改为if float(testresint)<float(10.0)
来解决问题。