我现在正在使用python-webkit,但它缺少我需要的WebKitAuthenticationRequest。是否有python webkit2模块,或者是否有办法在旧的webkit中进行身份验证?
答案 0 :(得分:5)
您可以从gi.repository
模块(也称为 PyGObject )获取WebKit2。
确保您拥有以下套餐:
然后您应该可以使用WebKit2 -
from gi.repository import WebKit2
(请注意,此模块适用于GTK + 3)。