Is there a new/updated Twill?

前端 未结 4 1751
遇见更好的自我
遇见更好的自我 2020-12-30 09:36

I\'ve been trying to learn Twill Scripting on Python and I am using Python 3.4 and Twill 1.8.0. Been reading some posts here and I found it interesting to s

4条回答
  •  礼貌的吻别
    2020-12-30 10:05

    GMs answer only partly solved the problem for me (using Python 3.6 on Windows). Downloading Twill 1.8.0 and converting it with 2to3 was only the first step.

    Afterwards, I had to install missing packages:

    pip install lxml
    pip install requests
    pip install pypiwin32
    pip install cssselect
    

    Furthermore, I had to fix two files in Python36/lib/site-packages/twill/other_packages/: In subprocess.py, I removed the section with False = 0 at line 392 and changed if 0: to if 1: in line 353 to avoid using _subprocess. Finally, in pyparsing.py, I replaced .lowercase with .lower() and .uppercase with .upper().

提交回复
热议问题