-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmainwin.py
61 lines (54 loc) · 2.81 KB
/
mainwin.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
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'C:\Users\asd\Desktop\py\BiliLive-main\mainwin.ui'
#
# Created by: PyQt5 UI code generator 5.15.4
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing.
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_Form(object):
def setupUi(self, Form):
Form.setObjectName("Form")
Form.resize(372, 251)
self.label = QtWidgets.QLabel(Form)
self.label.setGeometry(QtCore.QRect(50, 20, 48, 16))
self.label.setObjectName("label")
self.lineEdit = QtWidgets.QLineEdit(Form)
self.lineEdit.setGeometry(QtCore.QRect(130, 20, 131, 20))
self.lineEdit.setObjectName("lineEdit")
self.label_2 = QtWidgets.QLabel(Form)
self.label_2.setGeometry(QtCore.QRect(50, 54, 48, 16))
self.label_2.setObjectName("label_2")
self.lineEdit_2 = QtWidgets.QLineEdit(Form)
self.lineEdit_2.setGeometry(QtCore.QRect(130, 54, 131, 20))
self.lineEdit_2.setObjectName("lineEdit_2")
self.label_3 = QtWidgets.QLabel(Form)
self.label_3.setGeometry(QtCore.QRect(50, 90, 60, 16))
self.label_3.setObjectName("label_3")
self.lineEdit_3 = QtWidgets.QLineEdit(Form)
self.lineEdit_3.setGeometry(QtCore.QRect(130, 90, 131, 20))
self.lineEdit_3.setObjectName("lineEdit_3")
self.pushButton = QtWidgets.QPushButton(Form)
self.pushButton.setGeometry(QtCore.QRect(130, 130, 131, 23))
self.pushButton.setObjectName("pushButton")
self.label_4 = QtWidgets.QLabel(Form)
self.label_4.setGeometry(QtCore.QRect(10, 170, 348, 68))
self.label_4.setObjectName("label_4")
self.checkBox = QtWidgets.QCheckBox(Form)
self.checkBox.setGeometry(QtCore.QRect(50, 130, 71, 21))
self.checkBox.setObjectName("checkBox")
self.retranslateUi(Form)
QtCore.QMetaObject.connectSlotsByName(Form)
def retranslateUi(self, Form):
_translate = QtCore.QCoreApplication.translate
Form.setWindowTitle(_translate("Form", "Form"))
self.label.setText(_translate("Form", "SESSDATA"))
self.label_2.setText(_translate("Form", "bili_jct"))
self.label_3.setText(_translate("Form", "DedeUserID"))
self.pushButton.setText(_translate("Form", "开始"))
self.label_4.setText(_translate("Form", "使用谷歌或者其他类似的浏览器打开并登录bilibili\n"
"按F12打开开发者工具\n"
"菜单栏选择application\n"
"下方弹出的窗口选择Cookies,然后选择任意一项\n"
"分别找到 SESSDATA,bili_jct,DedeUserID 填入配置文件对应处"))
self.checkBox.setText(_translate("Form", "记住"))