Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以生成各种事件,例如:
通过 python 美丽的汤库。如果不是上述最好的方法(基本功能)。
BeautifulSoup 是一个解析和分析 HTML 的工具。它无法与 Web 服务器通信,因此您需要另一个库来执行此操作,例如urllib2(内置,但低级)或requests(高级,处理 cookie、重定向、https 等开箱即用)。或者,您可以查看mechanize或windmill,或者如果您还需要执行 JavaScript 代码,phantomjs。
urllib2
requests
mechanize
windmill
phantomjs