-
-
Notifications
You must be signed in to change notification settings - Fork 2k
/
SiteDiffUser.py
65 lines (54 loc) · 2.13 KB
/
SiteDiffUser.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Created on 2019年8月23日
@author: Irony
@site: https://pyqt.site , https://github.com/PyQt5
@email: [email protected]
@file: QWebEngineView.SiteDiffUser
@description: 同个网站不同用户
"""
import os
try:
from PyQt5.QtCore import QUrl
from PyQt5.QtWebEngineWidgets import (QWebEnginePage, QWebEngineProfile,
QWebEngineView)
from PyQt5.QtWidgets import QApplication, QTabWidget
except ImportError:
from PySide2.QtCore import QUrl
from PySide2.QtWebEngineWidgets import (QWebEnginePage, QWebEngineProfile,
QWebEngineView)
from PySide2.QtWidgets import QApplication, QTabWidget
class Window(QTabWidget):
def __init__(self, *args, **kwargs):
super(Window, self).__init__(*args, **kwargs)
# 用户1
self.webView1 = QWebEngineView(self)
profile1 = QWebEngineProfile('storage1', self.webView1)
# 要设置绝对路径,否则会出现部分问题
# 比如 reCaptcha 不能加载,见 https://github.com/PyQt5/PyQt/issues/125
profile1.setPersistentStoragePath(os.path.abspath('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(os.path.abspath('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
app = QApplication(sys.argv)
w = Window()
w.show()
sys.exit(app.exec_())