2017-12-10 13:45:14 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
'''
|
|
|
|
Created on 2017年12月10日
|
|
|
|
@author: Irony."[讽刺]
|
2018-12-28 23:09:46 +08:00
|
|
|
@site: https://pyqt5.com , https://github.com/892768447
|
2017-12-10 13:45:14 +08:00
|
|
|
@email: 892768447@qq.com
|
2018-12-26 23:04:56 +08:00
|
|
|
@file: GetCookie
|
2017-12-10 13:45:14 +08:00
|
|
|
@description:
|
|
|
|
'''
|
|
|
|
import sys
|
|
|
|
|
|
|
|
from PyQt5.QtCore import QUrl
|
|
|
|
from PyQt5.QtWebKitWidgets import QWebView
|
|
|
|
from PyQt5.QtWidgets import QApplication
|
|
|
|
|
|
|
|
|
|
|
|
__Author__ = "By: Irony.\"[讽刺]\nQQ: 892768447\nEmail: 892768447@qq.com"
|
|
|
|
__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:
|
2018-12-26 23:04:56 +08:00
|
|
|
# if cookie.domain() == ".pyqt5.com":
|
|
|
|
print("domain:", cookie.domain())
|
|
|
|
print("path:", cookie.path())
|
|
|
|
print("name:", cookie.name())
|
|
|
|
print("value:", cookie.value())
|
|
|
|
print()
|
2017-12-10 13:45:14 +08:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
app = QApplication(sys.argv)
|
|
|
|
w = WebView()
|
|
|
|
w.show()
|
2018-12-26 23:04:56 +08:00
|
|
|
w.load(QUrl("https://pyqt5.com"))
|
2017-12-10 13:45:14 +08:00
|
|
|
sys.exit(app.exec_())
|