forked from PyQt5/PyQt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WebView.py
47 lines (37 loc) · 1.3 KB
/
WebView.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
Created on 2017年12月10日
@author: Irony."[讽刺]
@site: http://alyl.vip, http://orzorz.vip, https://coding.net/u/892768447, https://github.com/892768447
@email: [email protected]
@file: WebView
@description:
'''
import sys
from PyQt5.QtCore import QUrl
from PyQt5.QtWebKitWidgets import QWebView
from PyQt5.QtWidgets import QApplication
__Author__ = "By: Irony.\"[讽刺]\nQQ: 892768447\nEmail: [email protected]"
__Copyright__ = "Copyright (c) 2017 Irony.\"[讽刺]"
__Version__ = "Version 1.0"
class WebView(QWebView):
def __init__(self, *args, **kwargs):
super(WebView, self).__init__(*args, **kwargs)
self.loadFinished.connect(self.onLoadFinished)
def onLoadFinished(self):
allCookies = self.page().networkAccessManager().cookieJar().allCookies()
print("allCookies:", allCookies)
for cookie in allCookies:
if cookie.domain() == ".alyl.vip":
print("domain:", cookie.domain())
print("path:", cookie.path())
print("name:", cookie.name())
print("value:", cookie.value())
print()
if __name__ == "__main__":
app = QApplication(sys.argv)
w = WebView()
w.show()
w.load(QUrl("http://alyl.vip"))
sys.exit(app.exec_())