我正在尝试遵循适用于Python缩进的正确协议,但是python仍然会引发错误。我确信python有充分的理由,我的代码也很糟糕,但是我没有找到根本原因。
运行时,错误指向最后一行
~/python $ ./hover_api_v1.0.py
File "./hover_api_v1.0.py", line 139
time.sleep(60.0)
^
IndentationError: expected an indented block
下面是我的代码。有些标头与缩进无关。
使用time命令在最后一行抛出错误。但是我看不到代码中的错误。时间cmd是while循环的顶部,并且已正确缩进。
while True:
ip_now = get_asus_wan_ip()
if (ip_now == ip_last):
day = datetime.datetime.now().day
if day != last_day:
last_day = day
with open(logfile, "a") as lf:
lf.write(time.strftime("%Y-%m-%d %H:%M:%S") + " WAN IP still the same " + str(ip_last) +"\n")
else:
# We need to do something
#print('WAN IP changed from ' + str(ip_last) + " to " + str(ip_now))
with open(logfile, "a") as lf:
lf.write(time.strftime("%Y-%m-%d %H:%M:%S") + " WAN IP changed from " + str(ip_last) + " to " + str(ip_now) + "\n")
ip_last= ip_now
# connect to API
client = HoverAPI('XXXXXXX','YYYYYYY')
for dnsname in ['*.zzzzz.zzz', '@.zzzzz.zzz']:
#print('Testing: ' + dnsname)
dns_name, domain_name = dnsname.split('.', 1)
# get all DNS records
result = client.call("get", "dns")
assert result['succeeded'], result
# discover existing dns record, if any
dns_record = None
domain_record = None
for dns_domain in result['domains']:
if dns_domain['domain_name'] == domain_name:
domain_record = dns_domain
for dns_entry in dns_domain['entries']:
if dns_entry['name'] == dns_name:
dns_record = dns_entry
break
if dns_record is not None and domain_record is not None:
break
if dns_record is not None and domain_record is not None:
#print('Hover-IP for ' + dnsname + ' = ' + str(dns_entry['content'].encode('ascii','ignore')))
#print('Current IP= ' + str(ip_now))
if str(dns_entry['content']) == str(ip_now):
#print('Hover-IP for ' + dnsname + ' = ' + str(dns_entry['content'].encode('ascii','ignore')) + ' same as Current IP = ' + str(ip_now) + '. No action.')
with open(logfile, "a") as lf:
lf.write(time.strftime("%Y-%m-%d %H:%M:%S") + " Hover-IP for " + dnsname + " = " + str(dns_entry['content'].encode('ascii','ignore')) + " same as Current IP = " + str(ip_now) + ". No action." + "\n")
else:
#print(" Deleting entry for {0}.{1} ... ".format(dns_name, domain_name), end="")
with open(logfile, "a") as lf:
lf.write(time.strftime("%Y-%m-%d %H:%M:%S") + " Deleting entry for " + dnsname + "\n")
result = client.call("delete", "dns/{0}".format(dns_record['id']))
assert result['succeeded'], result
#print("OK")
## create a new A record:
#print("Creating A record {0}.{1} => {2} ... ".format(dns_name, domain_name, ip_now), end="")
with open(logfile, "a") as lf:
lf.write(time.strftime("%Y-%m-%d %H:%M:%S") + " Creating A record " + dnsname + " => " + ip_now + "\n")
record = {"name": dns_name, "type": "A", "content": ip_now}
post_id = "domains/{0}/dns".format(domain_record['id'])
#print("post", post_id, record)
result = client.call("post", post_id, record)
assert result['succeeded'], result
#print("OK")
else:
#print("No record exists for {0}".format(dnsname))
# Sleep at end of loop.
time.sleep(60.0)
反馈非常感谢。
格特
最佳答案
问题在这里;
else:
#print("No record exists for {0}".format(dnsname))
就缩进而言,注释不算作代码。
因此,您需要在该位置拥有真实的代码。
解决这个问题的方法是使用python的
pass
关键字。else:
#print("No record exists for {0}".format(dnsname))
pass
这向python发出信号,表示您有意将该缩进级别所需的代码留空了。
另外,简单地取消注释您那里的代码也可以解决此问题,当然,您当然要实际在此处打印。
关于python - Python缩进不直观,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47343040/