1 Star 0 Fork 308

dddangdang / PyQt

forked from PyQt5 / PyQt 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
SiteDiffUser.py 1.75 KB
一键复制 编辑 原始数据 按行查看 历史
Irony 提交于 2019-08-23 19:41 . #88 多个用户登录同网站
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Created on 2019年8月23日
@author: Irony
@site: https://pyqt5.com https://github.com/PyQt5
@email: 892768447@qq.com
@file: QWebEngineView.SiteDiffUser
@description: 同个网站不同用户
"""
from PyQt5.QtCore import QUrl
from PyQt5.QtWebEngineWidgets import QWebEngineView, QWebEnginePage,\
QWebEngineProfile
from PyQt5.QtWidgets import QTabWidget
__Author__ = 'Irony'
__Copyright__ = 'Copyright (c) 2019'
__Version__ = 'Version 1.0'
class Window(QTabWidget):
def __init__(self, *args, **kwargs):
super(Window, self).__init__(*args, **kwargs)
# 用户1
self.webView1 = QWebEngineView(self)
profile1 = QWebEngineProfile('storage1', self.webView1)
profile1.setPersistentStoragePath('Tmp/Storage1')
print(profile1.cookieStore())
# 如果要清除cookie
# cookieStore = profile1.cookieStore()
# cookieStore.deleteAllCookies()
# cookieStore.deleteSessionCookies()
page1 = QWebEnginePage(profile1, self.webView1)
self.webView1.setPage(page1)
self.addTab(self.webView1, '用户1')
# 用户2
self.webView2 = QWebEngineView(self)
profile2 = QWebEngineProfile('storage2', self.webView2)
profile2.setPersistentStoragePath('Tmp/Storage2')
print(profile2.cookieStore())
page2 = QWebEnginePage(profile2, self.webView2)
self.webView2.setPage(page2)
self.addTab(self.webView2, '用户2')
self.webView1.load(QUrl('https://v.qq.com'))
self.webView2.load(QUrl('https://v.qq.com'))
if __name__ == '__main__':
import sys
from PyQt5.QtWidgets import QApplication
app = QApplication(sys.argv)
w = Window()
w.show()
sys.exit(app.exec_())
Python
1
https://gitee.com/bleeze/PyQt.git
git@gitee.com:bleeze/PyQt.git
bleeze
PyQt
PyQt
master

搜索帮助