1 Star 0 Fork 308

dddangdang / PyQt

forked from PyQt5 / PyQt 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
GetCookie.py 2.32 KB
一键复制 编辑 原始数据 按行查看 历史
Irony 提交于 2019-02-01 23:41 . update
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
Created on 2017年12月10日
@author: Irony."[讽刺]
@site: https://pyqt5.com , https://github.com/892768447
@email: 892768447@qq.com
@file: GetCookie
@description:
'''
import cgitb
import sys
from PyQt5.QtCore import QUrl, QByteArray
from PyQt5.QtWebKitWidgets import QWebView
from PyQt5.QtWidgets import QApplication, QTextEdit
__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.cookieView = QTextEdit()
self.cookieView.resize(800, 400)
self.cookieView.move(400, 400)
self.cookieView.setWindowTitle('Cookies')
self.cookieView.show()
self.loadFinished.connect(self.onLoadFinished)
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
def onLoadFinished(self):
allCookies = self.page().networkAccessManager().cookieJar().allCookies()
print("allCookies:", allCookies)
for cookie in allCookies:
# if cookie.domain() == ".pyqt5.com":
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('')
print("domain:", cookie.domain())
print("path:", cookie.path())
print("name:", cookie.name())
print("value:", cookie.value())
print()
if __name__ == "__main__":
sys.excepthook = cgitb.enable(1, None, 5, '')
app = QApplication(sys.argv)
w = WebView()
w.show()
w.load(QUrl("https://pyqt5.com"))
sys.exit(app.exec_())
Python
1
https://gitee.com/bleeze/PyQt.git
git@gitee.com:bleeze/PyQt.git
bleeze
PyQt
PyQt
master

搜索帮助