tabula.convert_into(filename_final, (filename_zero + '.csv'),
output_format="csv", pages="all")
我如何才能将第2页转换到最后?从第1页到其余页面的转换“区域”发生了变化。
我正在使用Python包装器tabula-py
提前致谢!
答案 0 :(得分:3)
根据README,pages参数可以是:
页面(str,int,int列表,可选)
- 指定要从中提取的页面的可选值 - 它允许str,int,int列表。示例:1,'1-2,3','all'或[1,2]。默认值为1
所以我猜你可以试试while var == 1:
try:
test_url = 'https://testurl.com'
get_response = requests.get(url=test_url)
parsed_json = json.loads(get_response.text)
test = requests.get('https://api.telegram.org/botid/' + 'sendMessage', params=dict(chat_id=str(0815), text="test"))
ausgabe = json.loads(test.text)
print(ausgabe['result']['text'])
time.sleep(3)
except Exception as e:
print "an exception {} of type {} occurred".format(e, type(e).__name__)
。