随笔分类 - Python
摘要:做公众号测试的时候,发现了个问题: 提交表单报错:RuntimeError: You called this URL via POST, but the URL doesn’t end in a slash and you have APPEND_SLASH set. 解决方案:
阅读全文
摘要:result= Booking.objects.filter() #方法一 .exists() if result.exists(): print "QuerySet has Data" else: print "QuerySet is empty" #方法二 .count()==0 if result.count() == 0: print "empty" ...
阅读全文
摘要:Use "scrapy" to see available commands
阅读全文
摘要:PS: 如果已经安装pip,可能出现以下问题,按照提示重新升级pip后,重新安装schedule即可
阅读全文