2017-12-10 13:45:14 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2021-07-13 14:52:26 +08:00
|
|
|
"""
|
2017-12-10 13:45:14 +08:00
|
|
|
Created on 2017年12月10日
|
2021-07-13 14:52:26 +08:00
|
|
|
@author: Irony
|
|
|
|
@site: https://pyqt.site , https://github.com/PyQt5
|
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:
|
2021-07-13 14:52:26 +08:00
|
|
|
"""
|
2019-02-01 23:41:22 +08:00
|
|
|
import cgitb
|
2017-12-10 13:45:14 +08:00
|
|
|
import sys
|
|
|
|
|
2019-02-01 23:41:22 +08:00
|
|
|
from PyQt5.QtCore import QUrl, QByteArray
|
2017-12-10 13:45:14 +08:00
|
|
|
from PyQt5.QtWebKitWidgets import QWebView
|
2019-02-01 23:41:22 +08:00
|
|
|
from PyQt5.QtWidgets import QApplication, QTextEdit
|
2017-12-10 13:45:14 +08:00
|
|
|
|
|
|
|
|
|
|
|
class WebView(QWebView):
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(WebView, self).__init__(*args, **kwargs)
|
2019-02-01 23:41:22 +08:00
|
|
|
self.cookieView = QTextEdit()
|
|
|
|
self.cookieView.resize(800, 400)
|
|
|
|
self.cookieView.move(400, 400)
|
|
|
|
self.cookieView.setWindowTitle('Cookies')
|
|
|
|
self.cookieView.show()
|
2017-12-10 13:45:14 +08:00
|
|
|
self.loadFinished.connect(self.onLoadFinished)
|
|
|
|
|
2019-02-01 23:41:22 +08:00
|
|
|
def closeEvent(self, event):
|
|
|
|
self.cookieView.close()
|
|
|
|
super(WebView, self).closeEvent(event)
|
|
|
|
|
|
|
|
def bytestostr(self, data):
|
|
|
|
if isinstance(data, str):
|
|
|
|
return data
|
|
|
|
if isinstance(data, QByteArray):
|
|
|
|
data = data.data()
|
|
|
|
if isinstance(data, bytes):
|
|
|
|
data = data.decode(errors='ignore')
|
|
|
|
else:
|
|
|
|
data = str(data)
|
|
|
|
return data
|
|
|
|
|
2017-12-10 13:45:14 +08:00
|
|
|
def onLoadFinished(self):
|
|
|
|
allCookies = self.page().networkAccessManager().cookieJar().allCookies()
|
|
|
|
print("allCookies:", allCookies)
|
|
|
|
for cookie in allCookies:
|
2021-07-13 14:52:26 +08:00
|
|
|
# if cookie.domain() == ".pyqt.site":
|
2019-02-01 23:41:22 +08:00
|
|
|
self.cookieView.append(
|
|
|
|
"domain: " + self.bytestostr(cookie.domain()))
|
|
|
|
self.cookieView.append("path: " + self.bytestostr(cookie.path()))
|
|
|
|
self.cookieView.append("name: " + self.bytestostr(cookie.name()))
|
|
|
|
self.cookieView.append(
|
|
|
|
"value: " + self.bytestostr(cookie.value()))
|
|
|
|
self.cookieView.append('')
|
2018-12-26 23:04:56 +08:00
|
|
|
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__":
|
2021-07-13 14:52:26 +08:00
|
|
|
cgitb.enable(format='text')
|
2017-12-10 13:45:14 +08:00
|
|
|
app = QApplication(sys.argv)
|
|
|
|
w = WebView()
|
|
|
|
w.show()
|
2021-07-13 14:52:26 +08:00
|
|
|
w.load(QUrl("https://pyqt.site"))
|
2017-12-10 13:45:14 +08:00
|
|
|
sys.exit(app.exec_())
|