我正在尝试编写一个 Python 程序来自动将任务添加到 todoist。我目前正在尝试使用 mechanize 但不确定这是否是我需要的,因为它设置为与表单交互,我不确定 todoist 是否使用 HTML 表单进行输入。到目前为止,这是我的代码:
import mechanize;
import re;
br = mechanize.Browser();
br.open("http://todoist.com/");
assert br.viewing_html();
print br.title();
print br.forms();
哪个打印
To-do list and task manager. Free, easy, online and mobile: Todoist
<generator object __call__ at 0x02D69288>
所以它已成功连接到 todoist,但我不确定如何访问输入表单以实际将任务放入?也不确定为什么 br.forms() 打印引用而不是值(这是一个空列表)?