├── .idea
├── dictionaries
│ └── Administrator.xml
├── inspectionProfiles
│ └── profiles_settings.xml
├── misc.xml
├── modules.xml
├── pythonZhuShou.iml
├── vcs.xml
└── workspace.xml
├── README.md
├── code_ui
├── code_ksrm.py
└── code_main.py
├── html
├── dm
│ ├── dm.dll
│ ├── ksrm.html
│ ├── 大漠插件接口说明.chm
│ ├── 绑定工具
│ │ ├── Helper.dll
│ │ ├── api.dll
│ │ ├── dm_test.dmq
│ │ ├── dm_test.ini
│ │ ├── gg.dat
│ │ └── 大漠插件绑定测试工具(VIP专用).exe
│ └── 综合工具
│ │ ├── cfg.ini
│ │ └── 大漠综合工具.exe
├── lw
│ ├── ksrm.html
│ ├── lw.dll
│ ├── 乐玩插件接口说明.chm
│ └── 编程助手
│ │ ├── data
│ │ ├── RegExp.txt
│ │ ├── asm.txt
│ │ └── json.txt
│ │ ├── test.bmp
│ │ ├── user.ini
│ │ └── 乐玩助手.exe
├── pyQt5
│ ├── QssStylesheetEditor
│ │ ├── AppStartCmd.bat
│ │ ├── Lib
│ │ │ └── PyQt5
│ │ │ │ ├── Qsci.pyd
│ │ │ │ ├── Qt
│ │ │ │ ├── bin
│ │ │ │ │ ├── Qt5Core.dll
│ │ │ │ │ ├── Qt5Gui.dll
│ │ │ │ │ ├── Qt5PrintSupport.dll
│ │ │ │ │ ├── Qt5Widgets.dll
│ │ │ │ │ ├── d3dcompiler_47.dll
│ │ │ │ │ ├── libEGL.dll
│ │ │ │ │ ├── libGLESv2.dll
│ │ │ │ │ └── opengl32sw.dll
│ │ │ │ ├── plugins
│ │ │ │ │ ├── iconengines
│ │ │ │ │ │ └── qsvgicon.dll
│ │ │ │ │ ├── imageformats
│ │ │ │ │ │ ├── qgif.dll
│ │ │ │ │ │ ├── qicns.dll
│ │ │ │ │ │ ├── qico.dll
│ │ │ │ │ │ ├── qjpeg.dll
│ │ │ │ │ │ ├── qsvg.dll
│ │ │ │ │ │ ├── qtga.dll
│ │ │ │ │ │ ├── qtiff.dll
│ │ │ │ │ │ ├── qwbmp.dll
│ │ │ │ │ │ └── qwebp.dll
│ │ │ │ │ ├── platforms
│ │ │ │ │ │ └── qwindows.dll
│ │ │ │ │ ├── platformthemes
│ │ │ │ │ │ └── qxdgdesktopportal.dll
│ │ │ │ │ ├── printsupport
│ │ │ │ │ │ └── windowsprintersupport.dll
│ │ │ │ │ └── styles
│ │ │ │ │ │ └── qwindowsvistastyle.dll
│ │ │ │ └── translations
│ │ │ │ │ ├── qscintilla_de.qm
│ │ │ │ │ ├── qscintilla_es.qm
│ │ │ │ │ ├── qscintilla_fr.qm
│ │ │ │ │ ├── qt_de.qm
│ │ │ │ │ ├── qt_en.qm
│ │ │ │ │ ├── qt_es.qm
│ │ │ │ │ ├── qt_fr.qm
│ │ │ │ │ ├── qt_help_cs.qm
│ │ │ │ │ ├── qt_help_de.qm
│ │ │ │ │ ├── qt_help_en.qm
│ │ │ │ │ ├── qt_help_es.qm
│ │ │ │ │ ├── qt_help_fr.qm
│ │ │ │ │ ├── qt_help_it.qm
│ │ │ │ │ ├── qt_help_ja.qm
│ │ │ │ │ ├── qt_help_ko.qm
│ │ │ │ │ ├── qt_help_ru.qm
│ │ │ │ │ ├── qt_help_zh_CN.qm
│ │ │ │ │ ├── qt_help_zh_TW.qm
│ │ │ │ │ ├── qt_it.qm
│ │ │ │ │ ├── qt_ja.qm
│ │ │ │ │ ├── qt_ko.qm
│ │ │ │ │ ├── qt_ru.qm
│ │ │ │ │ ├── qt_zh_CN.qm
│ │ │ │ │ ├── qt_zh_TW.qm
│ │ │ │ │ ├── qtbase_cs.qm
│ │ │ │ │ ├── qtbase_de.qm
│ │ │ │ │ ├── qtbase_en.qm
│ │ │ │ │ ├── qtbase_es.qm
│ │ │ │ │ ├── qtbase_fr.qm
│ │ │ │ │ ├── qtbase_it.qm
│ │ │ │ │ ├── qtbase_ko.qm
│ │ │ │ │ ├── qtbase_ru.qm
│ │ │ │ │ ├── qtbase_zh_TW.qm
│ │ │ │ │ ├── qtwebengine_de.qm
│ │ │ │ │ ├── qtwebengine_en.qm
│ │ │ │ │ ├── qtwebengine_es.qm
│ │ │ │ │ ├── qtwebengine_ko.qm
│ │ │ │ │ └── qtwebengine_ru.qm
│ │ │ │ ├── QtCore.pyd
│ │ │ │ ├── QtGui.pyd
│ │ │ │ ├── QtPrintSupport.pyd
│ │ │ │ ├── QtWidgets.pyd
│ │ │ │ ├── __init__.py
│ │ │ │ └── sip.pyd
│ │ ├── api-ms-win-core-console-l1-1-0.dll
│ │ ├── api-ms-win-core-datetime-l1-1-0.dll
│ │ ├── api-ms-win-core-debug-l1-1-0.dll
│ │ ├── api-ms-win-core-errorhandling-l1-1-0.dll
│ │ ├── api-ms-win-core-file-l1-1-0.dll
│ │ ├── api-ms-win-core-file-l1-2-0.dll
│ │ ├── api-ms-win-core-file-l2-1-0.dll
│ │ ├── api-ms-win-core-handle-l1-1-0.dll
│ │ ├── api-ms-win-core-heap-l1-1-0.dll
│ │ ├── api-ms-win-core-interlocked-l1-1-0.dll
│ │ ├── api-ms-win-core-libraryloader-l1-1-0.dll
│ │ ├── api-ms-win-core-localization-l1-2-0.dll
│ │ ├── api-ms-win-core-memory-l1-1-0.dll
│ │ ├── api-ms-win-core-namedpipe-l1-1-0.dll
│ │ ├── api-ms-win-core-processenvironment-l1-1-0.dll
│ │ ├── api-ms-win-core-processthreads-l1-1-0.dll
│ │ ├── api-ms-win-core-processthreads-l1-1-1.dll
│ │ ├── api-ms-win-core-profile-l1-1-0.dll
│ │ ├── api-ms-win-core-rtlsupport-l1-1-0.dll
│ │ ├── api-ms-win-core-string-l1-1-0.dll
│ │ ├── api-ms-win-core-synch-l1-1-0.dll
│ │ ├── api-ms-win-core-synch-l1-2-0.dll
│ │ ├── api-ms-win-core-sysinfo-l1-1-0.dll
│ │ ├── api-ms-win-core-timezone-l1-1-0.dll
│ │ ├── api-ms-win-core-util-l1-1-0.dll
│ │ ├── api-ms-win-crt-conio-l1-1-0.dll
│ │ ├── api-ms-win-crt-convert-l1-1-0.dll
│ │ ├── api-ms-win-crt-environment-l1-1-0.dll
│ │ ├── api-ms-win-crt-filesystem-l1-1-0.dll
│ │ ├── api-ms-win-crt-heap-l1-1-0.dll
│ │ ├── api-ms-win-crt-locale-l1-1-0.dll
│ │ ├── api-ms-win-crt-math-l1-1-0.dll
│ │ ├── api-ms-win-crt-multibyte-l1-1-0.dll
│ │ ├── api-ms-win-crt-private-l1-1-0.dll
│ │ ├── api-ms-win-crt-process-l1-1-0.dll
│ │ ├── api-ms-win-crt-runtime-l1-1-0.dll
│ │ ├── api-ms-win-crt-stdio-l1-1-0.dll
│ │ ├── api-ms-win-crt-string-l1-1-0.dll
│ │ ├── api-ms-win-crt-time-l1-1-0.dll
│ │ ├── api-ms-win-crt-utility-l1-1-0.dll
│ │ ├── libpython
│ │ │ ├── LICENSE.txt
│ │ │ ├── _asyncio.pyd
│ │ │ ├── _bz2.pyd
│ │ │ ├── _ctypes.pyd
│ │ │ ├── _decimal.pyd
│ │ │ ├── _elementtree.pyd
│ │ │ ├── _hashlib.pyd
│ │ │ ├── _lzma.pyd
│ │ │ ├── _msi.pyd
│ │ │ ├── _multiprocessing.pyd
│ │ │ ├── _overlapped.pyd
│ │ │ ├── _queue.pyd
│ │ │ ├── _socket.pyd
│ │ │ ├── _sqlite3.pyd
│ │ │ ├── _ssl.pyd
│ │ │ ├── pyexpat.pyd
│ │ │ ├── python.exe
│ │ │ ├── python.zip
│ │ │ ├── python3.dll
│ │ │ ├── python37._pth
│ │ │ ├── python37.dll
│ │ │ ├── pythonw.exe
│ │ │ ├── select.pyd
│ │ │ ├── sqlite3.dll
│ │ │ ├── unicodedata.pyd
│ │ │ └── winsound.pyd
│ │ ├── msvcp140.dll
│ │ ├── scripts
│ │ │ ├── config
│ │ │ │ └── config.toml
│ │ │ ├── data
│ │ │ │ ├── __init__.py
│ │ │ │ ├── default.dark.qsst
│ │ │ │ ├── default.qss
│ │ │ │ ├── default.qsst
│ │ │ │ └── template.qsst
│ │ │ ├── i18n
│ │ │ │ ├── i18n_zh.qm
│ │ │ │ └── list.toml
│ │ │ └── res
│ │ │ │ ├── app.ico
│ │ │ │ ├── qss.ico
│ │ │ │ └── splash.png
│ │ ├── ucrtbase.dll
│ │ └── vcruntime140.dll
│ └── ksrm.html
├── python
│ └── ksrm.html
├── spider
│ ├── Fiddler
│ │ ├── Analytics.dll
│ │ ├── Analytics.pdb
│ │ ├── App.ico
│ │ ├── Be.Windows.Forms.HexBox.dll
│ │ ├── Countdown.wav
│ │ ├── EnableLoopback.exe
│ │ ├── EnableLoopback.pdb
│ │ ├── ExecAction.exe
│ │ ├── FSE2.exe
│ │ ├── Fiddler.exe
│ │ ├── Fiddler.exe.config
│ │ ├── Fiddler.pdb
│ │ ├── ForceCPU.exe
│ │ ├── GA.Analytics.Monitor.dll
│ │ ├── GA.Analytics.Monitor.pdb
│ │ ├── Help.url
│ │ ├── ImportExport
│ │ │ ├── BasicFormats.dll
│ │ │ ├── BasicFormats.pdb
│ │ │ ├── VSWebTestExport.dll
│ │ │ └── VSWebTestExport.pdb
│ │ ├── Inspectors
│ │ │ ├── QWhale.Common.dll
│ │ │ ├── QWhale.Editor.dll
│ │ │ ├── QWhale.Syntax.Schemes.dll
│ │ │ ├── QWhale.Syntax.dll
│ │ │ ├── Standard.dll
│ │ │ └── SyntaxView.dll
│ │ ├── LoadScript.wav
│ │ ├── LoadScriptError.wav
│ │ ├── Newtonsoft.Json.dll
│ │ ├── Plugins
│ │ │ └── NetworkConnections
│ │ │ │ └── Telerik.NetworkConnections.Windows.dll
│ │ ├── ResponseTemplates
│ │ │ ├── 200_FiddlerGif.dat
│ │ │ ├── 200_SimpleHTML.dat
│ │ │ ├── 200_TransPixel.dat
│ │ │ ├── 204_NoContent.dat
│ │ │ ├── 302_Redirect.dat
│ │ │ ├── 303_RedirectWithGet.dat
│ │ │ ├── 304_NotModified.dat
│ │ │ ├── 307_RedirectWithMethod.dat
│ │ │ ├── 401_AuthBasic.dat
│ │ │ ├── 401_AuthDigest.dat
│ │ │ ├── 403_AuthDeny.dat
│ │ │ ├── 404_Plain.dat
│ │ │ ├── 407_ProxyAuthBasic.dat
│ │ │ └── 502_Unreachable.dat
│ │ ├── RunNsisUninstallers.bat
│ │ ├── Screenshot.wav
│ │ ├── ScriptEditor
│ │ │ ├── Analytics.dll
│ │ │ ├── Analytics.pdb
│ │ │ ├── FSE2.exe.config
│ │ │ ├── GA.Analytics.Monitor.dll
│ │ │ ├── GA.Analytics.Monitor.pdb
│ │ │ ├── QWhale.Common.dll
│ │ │ ├── QWhale.Editor.dll
│ │ │ ├── QWhale.Syntax.Parsers.dll
│ │ │ └── QWhale.Syntax.dll
│ │ ├── Scripts
│ │ │ ├── FiddlerOrchestra.Addon.dll
│ │ │ ├── FiddlerOrchestra.Addon.pdb
│ │ │ ├── FiddlerOrchestra.Connection.dll
│ │ │ ├── FiddlerOrchestra.Protocol.dll
│ │ │ ├── FiddlerOrchestra.Utilities.dll
│ │ │ ├── QWhale.Common.dll
│ │ │ ├── QWhale.Editor.dll
│ │ │ ├── QWhale.Syntax.Parsers.dll
│ │ │ ├── QWhale.Syntax.dll
│ │ │ ├── RulesTab2.dll
│ │ │ ├── SampleRules.cs
│ │ │ ├── SampleRules.js
│ │ │ ├── SimpleFilter.dll
│ │ │ ├── SimpleFilter.pdb
│ │ │ ├── Timeline.dll
│ │ │ ├── Timeline.pdb
│ │ │ └── netstandard.dll
│ │ ├── SetupHelper
│ │ ├── Telerik.NetworkConnections.dll
│ │ ├── Tools
│ │ │ ├── Brotli.exe
│ │ │ ├── JXR2PNG.exe
│ │ │ ├── JXR2PNG.exe.config
│ │ │ ├── PngDistill.exe
│ │ │ ├── PngDistill.pdb
│ │ │ ├── Zopfli.exe
│ │ │ └── dwebp.exe
│ │ ├── TrustCert.exe
│ │ ├── TrustCert.pdb
│ │ ├── Xceed.Compression.Formats.v5.4.dll
│ │ ├── Xceed.Compression.v5.4.dll
│ │ ├── Xceed.FileSystem.v5.4.dll
│ │ ├── Xceed.Zip.v5.4.dll
│ │ ├── credits.txt
│ │ ├── license.txt
│ │ ├── makecert.exe
│ │ └── saz.ico
│ ├── ksrm.html
│ └── scbd.html
├── webkj
│ ├── ksrm.html
│ └── scbd.html
└── win32
│ ├── PyWin32.chm
│ ├── PyWin32.chw
│ ├── WinApi.txt
│ ├── apiZhuShou
│ └── API助手.exe
│ ├── ksrm.html
│ └── 精易编程助手
│ ├── Data
│ ├── Config.ini
│ ├── ControlIoc.ini
│ ├── Edbug.ini
│ ├── Json.txt
│ ├── List_UA.ini
│ ├── Reg.ini
│ ├── db.db
│ ├── log_url.ini
│ ├── web.ini
│ ├── 正则源文本.txt
│ └── 鼠标文件.cur
│ ├── Edbug.exe
│ ├── Important
│ ├── DiDaGrid.ocx
│ ├── SkinH_EL.dll
│ └── sqlite3.dll
│ ├── UP.exe
│ ├── WebBrowser.exe
│ ├── bootstrap
│ ├── dist
│ │ ├── css
│ │ │ ├── bootstrap-theme.css
│ │ │ ├── bootstrap-theme.css.map
│ │ │ ├── bootstrap-theme.min.css
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap.css.map
│ │ │ └── bootstrap.min.css
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ └── glyphicons-halflings-regular.woff
│ │ └── js
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.min.js
│ │ │ └── npm.js
│ └── logo.png
│ ├── gzip.dll
│ ├── plugin
│ ├── data.ini
│ └── 抓包修复.dll
│ ├── scintilla.dll
│ ├── 更新记录.txt
│ ├── 窗口探测新功能详注.txt
│ └── 精易编程助手.exe
├── logo.ico
├── main.exe
├── main.py
├── main.spec
├── mainpy.spec
├── ui
├── wf_ksrm.py
├── wf_ksrm.ui
├── wf_main.py
└── wf_main.ui
└── 说明.txt
/.idea/dictionaries/Administrator.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/.idea/inspectionProfiles/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/.idea/pythonZhuShou.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/workspace.xml:
--------------------------------------------------------------------------------
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 | true
46 |
47 | true
48 | true
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 | 1603980365719
113 |
114 |
115 | 1603980365719
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 | 1603984894834
126 |
127 |
128 |
129 | 1603984894834
130 |
131 |
132 | 1603985009880
133 |
134 |
135 |
136 | 1603985009880
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | main.exe是演示的成品
2 | main.py是源码的主入口
3 |
4 | 正在开发一个python懒人编程工具
5 | 主要思路和想要解决的历史痛点:
6 | 1.python基础实际上很容易,但是却因为找资料过难,没人引导全是英文导致很难入门,查方法也没有像html css,易语言那样容易查
7 | 2.缺少类似易语言那样的超多公开的中文方法...什么文无所谓但是查起来机械翻译贼傻逼根本看不懂函数怎么用
8 | 3.python爬虫,实际上很容易,但是当入门后遇到有各种疑难杂症,就必须懂英文才能找到答案,国内没有像样的python社区...
9 | 4.PyQt5是公认的最好的UI设计库之一,并且可以画出各种花里胡哨的界面和网页的格式类似(建议直接学这个界面库,没必要学其它的浪费脑容量),明明很好用,但是查资料难如老狗!尤其是qss 和信号槽这些,贼难查到答案 并且缺少很好的辅助工具
10 | 5.python调用大漠和乐玩,实际上很容易,但是不会的人就是永远都搞不明不白..因为资料太少,python国外的社区基本上不调用这种不开源的插件,而我们都知道这两个插件非常好用.学会了==马上可以赚钱
11 | 6.python调用底层window的API,这个确实难,资料也基本都是英文的.有些是易语言那边翻译的,我觉得可以搬运一下..
12 | 7.pythonWeb后端开发,资料很少..很难搜,并且都是英文.缺少整合为一体的资料和工具
13 | 希望我可以有生之年能开发出来:有兴趣的也可以帮忙写点.
14 | 这是git仓库源码,会一点一点更新实现以上功能:
15 | https://github.com/luxiaolan6373/ProgrammingAssistant
16 |
17 | 2020.10.27更新进度:
18 | 1.python,pyqt5,爬虫栏目的快速入门跳转功能窗口
19 | 2.整体构架优化
20 |
21 | 2020.10.28更新进度:
22 | 1.基本把网上能整理的各种资料都暂时对接到我们的助手中了(暂时对接一下,以后再自己弄,先开始学吧,等我写完都不知道多少年了)
23 | 2.大漠和乐玩的各种工具对接完毕
24 | 3.现在勉强算是一个python学习和使用的整理归类型助手了,可以开始尝试用了.都是我自己的经验和整理.
25 |
--------------------------------------------------------------------------------
/code_ui/code_ksrm.py:
--------------------------------------------------------------------------------
1 | from PyQt5.QtWidgets import QFrame
2 | from ui.wf_ksrm import Ui_wf_ksrm
3 | from PyQt5.QtCore import Qt
4 | from PyQt5.QtGui import QIcon
5 |
6 | class init_window_ksrm:
7 | def __init__(self, window: QFrame, ui: Ui_wf_ksrm,x,y,typeText,tpyeKJ,docText):
8 | self.window = window
9 | self.ui = ui
10 | self.x = x
11 | self.y = y
12 | self.typeText=typeText
13 | self.tpyeKJ = tpyeKJ
14 | self.docText=docText
15 | self.set()
16 | def set(self):
17 | # 设置标题
18 | if self.tpyeKJ=='ksrm':
19 | typeTitle="快速入门"
20 | elif self.tpyeKJ=='scbd':
21 | typeTitle = "速查宝典"
22 | self.window.setWindowTitle(self.typeText+typeTitle)
23 | self.window.setWindowIcon(QIcon('logo.ico'))
24 | # 设置窗口无边框,和透明背景
25 | self.window.move(self.x, self.y)
26 | self.window.setWindowFlags(Qt.WindowMaximizeButtonHint | Qt.FramelessWindowHint)
27 | self.window.setAttribute(Qt.WA_TranslucentBackground) # 窗口透明
28 | # 如果设置True,则支持弹出浏览器访问链接 反之则只能调用槽函数
29 | self.ui.lb_doc.setOpenExternalLinks(True)
30 | self.ui.lb_doc.setText(self.docText)
31 | self.window.adjustSize()
32 | self.window.resize(self.window.width()+10,self.window.height())
33 |
34 |
--------------------------------------------------------------------------------
/code_ui/code_main.py:
--------------------------------------------------------------------------------
1 | from PyQt5.QtWidgets import QMainWindow,QFrame,QApplication,qApp
2 | from ui.wf_main import Ui_MainWindow
3 | from PyQt5.QtCore import Qt
4 | from PyQt5.QtGui import QCursor,QIcon
5 | from code_ui.code_ksrm import init_window_ksrm
6 | from ui import wf_ksrm
7 | from PyQt5.QtCore import QUrl
8 | from PyQt5.QtGui import QDesktopServices
9 | import time,os
10 |
11 |
12 | class init_window_main:
13 | def __init__(self, window: QMainWindow, ui: Ui_MainWindow):
14 | self.window = window
15 | self.ui = ui
16 | self.x = -70
17 | self.y = 0
18 |
19 | self.set()
20 | self.path=os.getcwd()
21 |
22 | def set(self):
23 | # 设置标题
24 | self.window.setWindowTitle('python懒人工具www.52pojie.cn')
25 | self.window.setWindowIcon(QIcon('logo.ico'))
26 | # 设置窗口无边框,和透明背景
27 | self.ui.frame_main_hb.setContentsMargins(0, 0, 0, 0)
28 | self.ui.frame_main.setContentsMargins(0, 0, 0, 0)
29 | self.window.move(self.x, self.y)
30 | self.window.setWindowFlags(Qt.WindowMaximizeButtonHint | Qt.WindowStaysOnTopHint | Qt.FramelessWindowHint)
31 | self.window.setAttribute(Qt.WA_TranslucentBackground) # 窗口透明
32 | # 设置鼠标为手型
33 | self.window.setCursor(QCursor(Qt.PointingHandCursor))
34 | # 设置toolTip
35 | self.ui.bt_python.setToolTip("python的基础教程和工具,资料全部来自互联网")
36 | self.ui.bt_spider.setToolTip("python爬虫基础和工具,资料全部来自互联网")
37 | self.ui.bt_pyQt5.setToolTip("pythonGUI中最牛的ui设计库的学习和便民工具,资料全部来自互联网")
38 | self.ui.bt_dm.setToolTip("python开发windows开发脚本必备插件(收费的),资料全部来自互联网")
39 | self.ui.bt_lw.setToolTip("python开发windows开发脚本必备插件(免费的),资料全部来自互联网")
40 | self.ui.bt_win32.setToolTip("python对接windowsAPI必备资料,资料全部来自互联网")
41 | self.ui.bt_webkj.setToolTip("python开发web服务器后端,api接口编写,资料全部来自互联网")
42 |
43 | self.ui.bt_python_scbd.setToolTip('里面有个搜索框,快速搜索,这是官方的中文帮助,没有比这更全面的了,搜索有点慢,慢慢翻一定可以搜到')
44 | self.ui.bt_python_gnhs.setToolTip('收集的一些常用封装好的功能性函数,直接复制粘贴岂不快哉!')
45 | self.ui.bt_spider_jsonjx.setToolTip('超好用的json解析工具')
46 | self.ui.bt_spider_zbgj.setToolTip('全网公认最好用的抓包工具Fiddler,可以抓手机电视等只要联网的设备的包')
47 | self.ui.bt_pyQt5_qssgj.setToolTip('全网公认最好用的QSS可视化编辑神器,不要太好用喔,哈哈')
48 | self.ui.bt_win32_apizs.setToolTip('易语言官方的api中文助手:有一定python win32基础后用这个搜索api功能非常方便!')
49 | self.ui.bt_win32_jyzs.setToolTip('精易编程助手:功能有查看窗口信息,抓包,翻译,取色,正则表达式等都有.稍微代码转换一下到python就行了!')
50 | # 隐藏子功能按钮
51 | self.ui.frame_python.setVisible(False)
52 | self.ui.frame_spider.setVisible(False)
53 | self.ui.frame_pyQt5.setVisible(False)
54 | self.ui.frame_dm.setVisible(False)
55 | self.ui.frame_lw.setVisible(False)
56 | self.ui.frame_win32.setVisible(False)
57 | self.ui.frame_webkj.setVisible(False)
58 |
59 | # 重写事件---主界面的动画效果
60 | self.ui.frame_main.enterEvent = self.enterEvent
61 | self.ui.frame_main.leaveEvent = self.leaveEvent
62 |
63 | #展开和隐藏具体栏目的信号绑定槽
64 | self.ui.bt_python.clicked.connect(self.clicked)
65 | self.ui.bt_spider.clicked.connect(self.clicked)
66 | self.ui.bt_pyQt5.clicked.connect(self.clicked)
67 | self.ui.bt_dm.clicked.connect(self.clicked)
68 | self.ui.bt_lw.clicked.connect(self.clicked)
69 | self.ui.bt_win32.clicked.connect(self.clicked)
70 | self.ui.bt_webkj.clicked.connect(self.clicked)
71 | #关闭按钮
72 |
73 | self.ui.bt_gb.clicked.connect(qApp.exit)
74 | #快速入门具体功能按钮的信号绑定槽 因为 用lambad表达式传参数
75 | self.ui.bt_python_ksrm.clicked.connect(lambda: self.clicked_ksrm(self.ui.frame_python,'python','ksrm'))
76 | self.ui.bt_spider_ksrm.clicked.connect(lambda: self.clicked_ksrm(self.ui.frame_spider,'spider','ksrm'))
77 | self.ui.bt_pyQt5_ksrm.clicked.connect(lambda: self.clicked_ksrm(self.ui.frame_pyQt5,'pyQt5','ksrm'))
78 | self.ui.bt_dm_ksrm.clicked.connect(lambda: self.clicked_ksrm(self.ui.frame_dm,'dm','ksrm'))
79 | self.ui.bt_lw_ksrm.clicked.connect(lambda: self.clicked_ksrm(self.ui.frame_lw,'lw','ksrm'))
80 | self.ui.bt_win32_ksrm.clicked.connect(lambda: self.clicked_ksrm(self.ui.frame_win32,'win32','ksrm'))
81 | self.ui.bt_webkj_ksrm.clicked.connect(lambda: self.clicked_ksrm(self.ui.frame_webkj,'webkj','ksrm'))
82 | #速查宝典start是不等待执行结束
83 | self.ui.bt_lw_scbd.clicked.connect(lambda: os.system(f'start hh {self.path}\html\lw\乐玩插件接口说明.chm'))
84 | self.ui.bt_dm_scbd.clicked.connect(lambda: os.system(f'start hh {self.path}\html\dm\大漠插件接口说明.chm'))
85 | self.ui.bt_win32_scbd.clicked.connect(lambda: os.system(f'start hh {self.path}/html/win32/PyWin32.chm ' ))
86 | self.ui.bt_python_scbd.clicked.connect(lambda: QDesktopServices.openUrl(QUrl("https://docs.python.org/zh-cn/3/")))
87 | self.ui.bt_spider_scbd.clicked.connect(lambda: self.clicked_ksrm(self.ui.frame_spider,'spider', 'scbd'))
88 | self.ui.bt_webkj_scbd.clicked.connect(lambda: self.clicked_ksrm(self.ui.frame_webkj,'webkj', 'scbd'))
89 |
90 | #大漠综合工具
91 | self.ui.bt_dm_zhgj.clicked.connect(lambda: os.system(f'start {self.path}\html\dm\综合工具\大漠综合工具.exe'))
92 | #大漠绑定工具
93 | self.ui.bt_dm_bdgj.clicked.connect(lambda: os.system(f'start {self.path}\html\dm\绑定工具\大漠插件绑定测试工具(VIP专用).exe'))
94 | # 乐玩编程助手
95 | self.ui.bt_lw_lwzs.clicked.connect(lambda: os.system(f'start {self.path}\html\lw\编程助手\乐玩助手.exe'))
96 | #fiddler抓包工具
97 | self.ui.bt_spider_zbgj.clicked.connect(lambda: os.system(f'start {self.path}\html\spider\Fiddler\Fiddler.exe'))
98 | #JSONG解析
99 | self.ui.bt_spider_jsonjx.clicked.connect(lambda: QDesktopServices.openUrl(QUrl("https://www.bejson.com/jsonviewernew/")))
100 | # Qss工具
101 | pythonPath = f'\html\pyQt5\QssStylesheetEditor\libpython\pythonw.exe'
102 | exePath = f'\html\pyQt5\QssStylesheetEditor\scripts\main.pyc'
103 | self.ui.bt_pyQt5_qssgj.clicked.connect(lambda: os.system(f'start {self.path}{pythonPath} {self.path}{exePath}'))
104 | #功能函数
105 | self.ui.bt_python_gnhs.clicked.connect(lambda: QDesktopServices.openUrl(QUrl("http://012.plus/static/pyec/iframe/index.html#/pyec/wangye")))
106 |
107 | # api中文助手
108 | self.ui.bt_win32_apizs.clicked.connect(lambda: os.system(f'start {self.path}\html\win32\\apiZhuShou\API助手.exe'))
109 | #精易编程助手
110 | self.ui.bt_win32_jyzs.clicked.connect(lambda: os.system(f'start {self.path}\html\win32\精易编程助手\精易编程助手.exe'))
111 |
112 |
113 |
114 |
115 | def enterEvent(self, event):
116 | '''
117 | 鼠标进入主界面时触发
118 | :param event:
119 | :return:
120 | '''
121 | if self.window.x() == self.x:
122 | for i in range(abs(self.x )):
123 | self.window.move(self.x + i+1, self.y)
124 | time.sleep(0.0015)
125 | print('进入')
126 | print(self.window.x())
127 | def leaveEvent(self, event):
128 | '''
129 | 鼠标离开主界面时触发
130 | :param event:
131 | :return:
132 | '''
133 | x = 0
134 |
135 | tj = self.ui.frame_python.isVisible() == False and self.ui.frame_spider.isVisible() == False and self.ui.frame_pyQt5.isVisible() == False and self.ui.frame_dm.isVisible() == False and self.ui.frame_lw.isVisible() == False and self.ui.frame_win32.isVisible() == False and self.ui.frame_webkj.isVisible()==False
136 | print(tj )
137 | if self.window.x() == x and tj == True:
138 | for i in range(abs(self.x - x)):
139 | self.window.move(x - i - 1, self.y)
140 | time.sleep(0.0015)
141 | print('离开')
142 | def clicked(self):
143 | '''
144 | 鼠标点击某个栏目时触发
145 | :return:
146 | '''
147 | item=self.window.sender()
148 | #取出目标功能框架
149 | if item.text()=='python':
150 | f =self.ui.frame_python
151 | elif item.text()=='爬虫':
152 | f = self.ui.frame_spider
153 | elif item.text()=='PyQt5':
154 | f=self.ui.frame_pyQt5
155 | elif item.text()=='大漠':
156 | f=self.ui.frame_dm
157 | elif item.text()=='乐玩':
158 | f=self.ui.frame_lw
159 | elif item.text()=='win32':
160 | f=self.ui.frame_win32
161 | elif item.text()=='web框架':
162 | f=self.ui.frame_webkj
163 | #设置显示或者隐藏框架
164 | if f.isVisible()==False:
165 | self.ui.frame_python.setVisible(False)
166 | self.ui.frame_spider.setVisible(False)
167 | self.ui.frame_pyQt5.setVisible(False)
168 | self.ui.frame_dm.setVisible(False)
169 | self.ui.frame_lw.setVisible(False)
170 | self.ui.frame_win32.setVisible(False)
171 | self.ui.frame_webkj.setVisible(False)
172 | f.setVisible(True)
173 |
174 | else:
175 | f.setVisible(False)
176 | print('点击:',item.text())
177 | def clicked_ksrm(self,item_fram,typeText,typeKJ):
178 | '''快速入门窗口的展示'''
179 | #根据返回的类型来创建不一样的窗口
180 | self.window_ksrm = QFrame()
181 | self.ui_ksrm = wf_ksrm.Ui_wf_ksrm()
182 | self.ui_ksrm.setupUi(self.window_ksrm)
183 | with open(f'html/{typeText}/{typeKJ}.html', 'r', encoding='utf-8')as f:
184 | docText = f.read()
185 | init_window_ksrm(self.window_ksrm, self.ui_ksrm, item_fram.x() + item_fram.width() - 8,
186 | self.ui.frame_python.y(), typeText,typeKJ,docText)
187 | self.window_ksrm.show()
188 |
189 |
--------------------------------------------------------------------------------
/html/dm/dm.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/dm/dm.dll
--------------------------------------------------------------------------------
/html/dm/ksrm.html:
--------------------------------------------------------------------------------
1 |
2 |
懒人python调用大漠视频教程
5 |
6 | 懒人python调用大漠文字教程
8 |
9 | 以上都是我个人自己录制和整理的,学完就已经会调用了,具体怎么用就慢慢看速查宝典了
10 | 视频有时间会继续慢慢继续录制
11 |
12 |
13 |
--------------------------------------------------------------------------------
/html/dm/大漠插件接口说明.chm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/dm/大漠插件接口说明.chm
--------------------------------------------------------------------------------
/html/dm/绑定工具/Helper.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/dm/绑定工具/Helper.dll
--------------------------------------------------------------------------------
/html/dm/绑定工具/api.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/dm/绑定工具/api.dll
--------------------------------------------------------------------------------
/html/dm/绑定工具/dm_test.dmq:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/dm/绑定工具/dm_test.dmq
--------------------------------------------------------------------------------
/html/dm/绑定工具/dm_test.ini:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/dm/绑定工具/dm_test.ini
--------------------------------------------------------------------------------
/html/dm/绑定工具/gg.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/dm/绑定工具/gg.dat
--------------------------------------------------------------------------------
/html/dm/绑定工具/大漠插件绑定测试工具(VIP专用).exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/dm/绑定工具/大漠插件绑定测试工具(VIP专用).exe
--------------------------------------------------------------------------------
/html/dm/综合工具/cfg.ini:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/dm/综合工具/cfg.ini
--------------------------------------------------------------------------------
/html/dm/综合工具/大漠综合工具.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/dm/综合工具/大漠综合工具.exe
--------------------------------------------------------------------------------
/html/lw/ksrm.html:
--------------------------------------------------------------------------------
1 |
2 |
4 | 懒人python调用乐玩文字教程
6 |
7 | 以上都是我个人自己整理的,学完就已经会调用了,具体怎么用就慢慢看速查宝典了
8 | 视频有时间会继续慢慢继续录制
9 |
10 |
11 |
--------------------------------------------------------------------------------
/html/lw/lw.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/lw/lw.dll
--------------------------------------------------------------------------------
/html/lw/乐玩插件接口说明.chm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/lw/乐玩插件接口说明.chm
--------------------------------------------------------------------------------
/html/lw/编程助手/data/RegExp.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/lw/编程助手/data/RegExp.txt
--------------------------------------------------------------------------------
/html/lw/编程助手/data/asm.txt:
--------------------------------------------------------------------------------
1 | push 0xff
2 | Call ::Sleep
3 | xor eax,eax
4 | _b
5 | cmp eax,0
6 | jnz _a
7 | add eax,0xff
8 | mov ebx,0x3
9 | imul eax,ebx
10 | jmp _b
11 | _a
--------------------------------------------------------------------------------
/html/lw/编程助手/data/json.txt:
--------------------------------------------------------------------------------
1 | "-\/\/IETF\/\/DTD HTML\/\/EN"
--------------------------------------------------------------------------------
/html/lw/编程助手/test.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/lw/编程助手/test.bmp
--------------------------------------------------------------------------------
/html/lw/编程助手/user.ini:
--------------------------------------------------------------------------------
1 | [win]
2 | dllloadl=
3 | hinge0=
4 | hinge1=
5 | [corlor]
6 | dllload=C:\Users\admin\Desktop\
7 | [capture]
8 | rgb1=FFFFFF
9 | hsv1=0.0.100
10 | point1=1196,314
11 | xianz1=0
12 | drgb1=000000
13 | rgb2=000000
14 | hsv2=0.0.0
15 | point2=0,0
16 | xianz2=0
17 | drgb2=000000
18 | rgb3=000000
19 | hsv3=0.0.0
20 | point3=0,0
21 | xianz3=0
22 | drgb3=000000
23 | rgb4=000000
24 | hsv4=0.0.0
25 | point4=0,0
26 | xianz4=0
27 | drgb4=000000
28 | rgb5=000000
29 | hsv5=0.0.0
30 | point5=0,0
31 | xianz5=0
32 | drgb5=000000
33 | rgb6=000000
34 | hsv6=0.0.0
35 | point6=0,0
36 | xianz6=0
37 | drgb6=000000
38 | rgb7=000000
39 | hsv7=0.0.0
40 | point7=0,0
41 | xianz7=0
42 | drgb7=000000
43 | rgb8=000000
44 | hsv8=0.0.0
45 | point8=0,0
46 | xianz8=0
47 | drgb8=000000
48 | rgb9=000000
49 | hsv9=0.0.0
50 | point9=0,0
51 | xianz9=0
52 | drgb9=000000
53 | rgb10=000000
54 | hsv10=0.0.0
55 | point10=0,0
56 | xianz10=0
57 | drgb10=000000
58 | corlor=#196
59 | dicrload=
60 | sim=0.90
61 | maxh=30
62 | [set]
63 | hotkey0=81
64 | hotkey1=1
65 | normal=0
66 | [bmpcode]
67 | code=
68 | lastpath=
69 | [RegExp]
70 | guiz=provinceName":"(.*?)"
71 | "cityName":"(.*?)"
72 | [pic]
73 | drgb=10
74 | nowcorlor=9
75 |
--------------------------------------------------------------------------------
/html/lw/编程助手/乐玩助手.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/lw/编程助手/乐玩助手.exe
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/AppStartCmd.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/AppStartCmd.bat
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qsci.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qsci.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/bin/Qt5Core.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/bin/Qt5Core.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/bin/Qt5Gui.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/bin/Qt5Gui.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/bin/Qt5PrintSupport.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/bin/Qt5PrintSupport.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/bin/Qt5Widgets.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/bin/Qt5Widgets.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/bin/d3dcompiler_47.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/bin/d3dcompiler_47.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/bin/libEGL.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/bin/libEGL.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/bin/libGLESv2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/bin/libGLESv2.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/bin/opengl32sw.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/bin/opengl32sw.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/iconengines/qsvgicon.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/iconengines/qsvgicon.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/imageformats/qgif.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/imageformats/qgif.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/imageformats/qicns.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/imageformats/qicns.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/imageformats/qico.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/imageformats/qico.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/imageformats/qjpeg.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/imageformats/qjpeg.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/imageformats/qsvg.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/imageformats/qsvg.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/imageformats/qtga.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/imageformats/qtga.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/imageformats/qtiff.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/imageformats/qtiff.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/imageformats/qwbmp.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/imageformats/qwbmp.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/imageformats/qwebp.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/imageformats/qwebp.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/platforms/qwindows.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/platforms/qwindows.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/platformthemes/qxdgdesktopportal.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/platformthemes/qxdgdesktopportal.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/printsupport/windowsprintersupport.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/printsupport/windowsprintersupport.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/styles/qwindowsvistastyle.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/plugins/styles/qwindowsvistastyle.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qscintilla_de.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qscintilla_de.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qscintilla_es.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qscintilla_es.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qscintilla_fr.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qscintilla_fr.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_de.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_de.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_en.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_en.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_es.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_es.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_fr.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_fr.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_cs.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_cs.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_de.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_de.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_en.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_en.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_es.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_es.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_fr.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_fr.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_it.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_it.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_ja.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_ja.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_ko.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_ko.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_ru.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_ru.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_zh_CN.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_zh_CN.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_zh_TW.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_help_zh_TW.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_it.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_it.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_ja.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_ja.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_ko.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_ko.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_ru.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_ru.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_zh_CN.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_zh_CN.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_zh_TW.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qt_zh_TW.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtbase_cs.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtbase_cs.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtbase_de.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtbase_de.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtbase_en.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtbase_en.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtbase_es.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtbase_es.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtbase_fr.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtbase_fr.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtbase_it.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtbase_it.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtbase_ko.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtbase_ko.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtbase_ru.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtbase_ru.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtbase_zh_TW.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtbase_zh_TW.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtwebengine_de.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtwebengine_de.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtwebengine_en.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtwebengine_en.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtwebengine_es.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtwebengine_es.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtwebengine_ko.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtwebengine_ko.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtwebengine_ru.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/Qt/translations/qtwebengine_ru.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/QtCore.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/QtCore.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/QtGui.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/QtGui.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/QtPrintSupport.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/QtPrintSupport.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/QtWidgets.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/QtWidgets.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/__init__.py:
--------------------------------------------------------------------------------
1 | # Copyright (c) 2019 Riverbank Computing Limited
2 | #
3 | # This file is part of PyQt5.
4 | #
5 | # This file may be used under the terms of the GNU General Public License
6 | # version 3.0 as published by the Free Software Foundation and appearing in
7 | # the file LICENSE included in the packaging of this file. Please review the
8 | # following information to ensure the GNU General Public License version 3.0
9 | # requirements will be met: http://www.gnu.org/copyleft/gpl.html.
10 | #
11 | # If you do not wish to use this file under the terms of the GPL version 3.0
12 | # then you may purchase a commercial license. For more information contact
13 | # info@riverbankcomputing.com.
14 | #
15 | # This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16 | # WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
17 |
18 |
19 | def find_qt():
20 | import os, sys
21 |
22 | qtcore_dll = '\\Qt5Core.dll'
23 |
24 | dll_dir = os.path.dirname(sys.executable)
25 | if not os.path.isfile(dll_dir + qtcore_dll):
26 | path = os.environ['PATH']
27 |
28 | dll_dir = os.path.dirname(__file__) + '\\Qt\\bin'
29 | if os.path.isfile(dll_dir + qtcore_dll):
30 | path = dll_dir + ';' + path
31 | os.environ['PATH'] = path
32 | else:
33 | for dll_dir in path.split(';'):
34 | if os.path.isfile(dll_dir + qtcore_dll):
35 | break
36 | else:
37 | return
38 |
39 | try:
40 | os.add_dll_directory(dll_dir)
41 | except AttributeError:
42 | pass
43 |
44 |
45 | find_qt()
46 | del find_qt
47 |
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/sip.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/Lib/PyQt5/sip.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-console-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-console-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-datetime-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-datetime-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-debug-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-debug-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-errorhandling-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-errorhandling-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-file-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-file-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-file-l1-2-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-file-l1-2-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-file-l2-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-file-l2-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-handle-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-handle-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-heap-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-heap-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-interlocked-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-interlocked-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-libraryloader-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-libraryloader-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-localization-l1-2-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-localization-l1-2-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-memory-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-memory-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-namedpipe-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-namedpipe-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-processenvironment-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-processenvironment-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-processthreads-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-processthreads-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-processthreads-l1-1-1.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-processthreads-l1-1-1.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-profile-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-profile-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-rtlsupport-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-rtlsupport-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-string-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-string-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-synch-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-synch-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-synch-l1-2-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-synch-l1-2-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-sysinfo-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-sysinfo-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-timezone-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-timezone-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-core-util-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-core-util-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-conio-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-conio-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-convert-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-convert-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-environment-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-environment-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-filesystem-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-filesystem-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-heap-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-heap-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-locale-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-locale-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-math-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-math-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-multibyte-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-multibyte-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-private-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-private-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-process-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-process-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-runtime-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-runtime-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-stdio-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-stdio-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-string-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-string-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-time-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-time-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-utility-l1-1-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/api-ms-win-crt-utility-l1-1-0.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/LICENSE.txt:
--------------------------------------------------------------------------------
1 | A. HISTORY OF THE SOFTWARE
2 | ==========================
3 |
4 | Python was created in the early 1990s by Guido van Rossum at Stichting
5 | Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands
6 | as a successor of a language called ABC. Guido remains Python's
7 | principal author, although it includes many contributions from others.
8 |
9 | In 1995, Guido continued his work on Python at the Corporation for
10 | National Research Initiatives (CNRI, see http://www.cnri.reston.va.us)
11 | in Reston, Virginia where he released several versions of the
12 | software.
13 |
14 | In May 2000, Guido and the Python core development team moved to
15 | BeOpen.com to form the BeOpen PythonLabs team. In October of the same
16 | year, the PythonLabs team moved to Digital Creations, which became
17 | Zope Corporation. In 2001, the Python Software Foundation (PSF, see
18 | https://www.python.org/psf/) was formed, a non-profit organization
19 | created specifically to own Python-related Intellectual Property.
20 | Zope Corporation was a sponsoring member of the PSF.
21 |
22 | All Python releases are Open Source (see http://www.opensource.org for
23 | the Open Source Definition). Historically, most, but not all, Python
24 | releases have also been GPL-compatible; the table below summarizes
25 | the various releases.
26 |
27 | Release Derived Year Owner GPL-
28 | from compatible? (1)
29 |
30 | 0.9.0 thru 1.2 1991-1995 CWI yes
31 | 1.3 thru 1.5.2 1.2 1995-1999 CNRI yes
32 | 1.6 1.5.2 2000 CNRI no
33 | 2.0 1.6 2000 BeOpen.com no
34 | 1.6.1 1.6 2001 CNRI yes (2)
35 | 2.1 2.0+1.6.1 2001 PSF no
36 | 2.0.1 2.0+1.6.1 2001 PSF yes
37 | 2.1.1 2.1+2.0.1 2001 PSF yes
38 | 2.1.2 2.1.1 2002 PSF yes
39 | 2.1.3 2.1.2 2002 PSF yes
40 | 2.2 and above 2.1.1 2001-now PSF yes
41 |
42 | Footnotes:
43 |
44 | (1) GPL-compatible doesn't mean that we're distributing Python under
45 | the GPL. All Python licenses, unlike the GPL, let you distribute
46 | a modified version without making your changes open source. The
47 | GPL-compatible licenses make it possible to combine Python with
48 | other software that is released under the GPL; the others don't.
49 |
50 | (2) According to Richard Stallman, 1.6.1 is not GPL-compatible,
51 | because its license has a choice of law clause. According to
52 | CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1
53 | is "not incompatible" with the GPL.
54 |
55 | Thanks to the many outside volunteers who have worked under Guido's
56 | direction to make these releases possible.
57 |
58 |
59 | B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON
60 | ===============================================================
61 |
62 | PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
63 | --------------------------------------------
64 |
65 | 1. This LICENSE AGREEMENT is between the Python Software Foundation
66 | ("PSF"), and the Individual or Organization ("Licensee") accessing and
67 | otherwise using this software ("Python") in source or binary form and
68 | its associated documentation.
69 |
70 | 2. Subject to the terms and conditions of this License Agreement, PSF hereby
71 | grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
72 | analyze, test, perform and/or display publicly, prepare derivative works,
73 | distribute, and otherwise use Python alone or in any derivative version,
74 | provided, however, that PSF's License Agreement and PSF's notice of copyright,
75 | i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
76 | 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Python Software Foundation;
77 | All Rights Reserved" are retained in Python alone or in any derivative version
78 | prepared by Licensee.
79 |
80 | 3. In the event Licensee prepares a derivative work that is based on
81 | or incorporates Python or any part thereof, and wants to make
82 | the derivative work available to others as provided herein, then
83 | Licensee hereby agrees to include in any such work a brief summary of
84 | the changes made to Python.
85 |
86 | 4. PSF is making Python available to Licensee on an "AS IS"
87 | basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
88 | IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
89 | DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
90 | FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
91 | INFRINGE ANY THIRD PARTY RIGHTS.
92 |
93 | 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
94 | FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
95 | A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
96 | OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
97 |
98 | 6. This License Agreement will automatically terminate upon a material
99 | breach of its terms and conditions.
100 |
101 | 7. Nothing in this License Agreement shall be deemed to create any
102 | relationship of agency, partnership, or joint venture between PSF and
103 | Licensee. This License Agreement does not grant permission to use PSF
104 | trademarks or trade name in a trademark sense to endorse or promote
105 | products or services of Licensee, or any third party.
106 |
107 | 8. By copying, installing or otherwise using Python, Licensee
108 | agrees to be bound by the terms and conditions of this License
109 | Agreement.
110 |
111 |
112 | BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
113 | -------------------------------------------
114 |
115 | BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
116 |
117 | 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
118 | office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
119 | Individual or Organization ("Licensee") accessing and otherwise using
120 | this software in source or binary form and its associated
121 | documentation ("the Software").
122 |
123 | 2. Subject to the terms and conditions of this BeOpen Python License
124 | Agreement, BeOpen hereby grants Licensee a non-exclusive,
125 | royalty-free, world-wide license to reproduce, analyze, test, perform
126 | and/or display publicly, prepare derivative works, distribute, and
127 | otherwise use the Software alone or in any derivative version,
128 | provided, however, that the BeOpen Python License is retained in the
129 | Software, alone or in any derivative version prepared by Licensee.
130 |
131 | 3. BeOpen is making the Software available to Licensee on an "AS IS"
132 | basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
133 | IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
134 | DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
135 | FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT
136 | INFRINGE ANY THIRD PARTY RIGHTS.
137 |
138 | 4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
139 | SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS
140 | AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY
141 | DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
142 |
143 | 5. This License Agreement will automatically terminate upon a material
144 | breach of its terms and conditions.
145 |
146 | 6. This License Agreement shall be governed by and interpreted in all
147 | respects by the law of the State of California, excluding conflict of
148 | law provisions. Nothing in this License Agreement shall be deemed to
149 | create any relationship of agency, partnership, or joint venture
150 | between BeOpen and Licensee. This License Agreement does not grant
151 | permission to use BeOpen trademarks or trade names in a trademark
152 | sense to endorse or promote products or services of Licensee, or any
153 | third party. As an exception, the "BeOpen Python" logos available at
154 | http://www.pythonlabs.com/logos.html may be used according to the
155 | permissions granted on that web page.
156 |
157 | 7. By copying, installing or otherwise using the software, Licensee
158 | agrees to be bound by the terms and conditions of this License
159 | Agreement.
160 |
161 |
162 | CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1
163 | ---------------------------------------
164 |
165 | 1. This LICENSE AGREEMENT is between the Corporation for National
166 | Research Initiatives, having an office at 1895 Preston White Drive,
167 | Reston, VA 20191 ("CNRI"), and the Individual or Organization
168 | ("Licensee") accessing and otherwise using Python 1.6.1 software in
169 | source or binary form and its associated documentation.
170 |
171 | 2. Subject to the terms and conditions of this License Agreement, CNRI
172 | hereby grants Licensee a nonexclusive, royalty-free, world-wide
173 | license to reproduce, analyze, test, perform and/or display publicly,
174 | prepare derivative works, distribute, and otherwise use Python 1.6.1
175 | alone or in any derivative version, provided, however, that CNRI's
176 | License Agreement and CNRI's notice of copyright, i.e., "Copyright (c)
177 | 1995-2001 Corporation for National Research Initiatives; All Rights
178 | Reserved" are retained in Python 1.6.1 alone or in any derivative
179 | version prepared by Licensee. Alternately, in lieu of CNRI's License
180 | Agreement, Licensee may substitute the following text (omitting the
181 | quotes): "Python 1.6.1 is made available subject to the terms and
182 | conditions in CNRI's License Agreement. This Agreement together with
183 | Python 1.6.1 may be located on the Internet using the following
184 | unique, persistent identifier (known as a handle): 1895.22/1013. This
185 | Agreement may also be obtained from a proxy server on the Internet
186 | using the following URL: http://hdl.handle.net/1895.22/1013".
187 |
188 | 3. In the event Licensee prepares a derivative work that is based on
189 | or incorporates Python 1.6.1 or any part thereof, and wants to make
190 | the derivative work available to others as provided herein, then
191 | Licensee hereby agrees to include in any such work a brief summary of
192 | the changes made to Python 1.6.1.
193 |
194 | 4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS"
195 | basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
196 | IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
197 | DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
198 | FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT
199 | INFRINGE ANY THIRD PARTY RIGHTS.
200 |
201 | 5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
202 | 1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
203 | A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
204 | OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
205 |
206 | 6. This License Agreement will automatically terminate upon a material
207 | breach of its terms and conditions.
208 |
209 | 7. This License Agreement shall be governed by the federal
210 | intellectual property law of the United States, including without
211 | limitation the federal copyright law, and, to the extent such
212 | U.S. federal law does not apply, by the law of the Commonwealth of
213 | Virginia, excluding Virginia's conflict of law provisions.
214 | Notwithstanding the foregoing, with regard to derivative works based
215 | on Python 1.6.1 that incorporate non-separable material that was
216 | previously distributed under the GNU General Public License (GPL), the
217 | law of the Commonwealth of Virginia shall govern this License
218 | Agreement only as to issues arising under or with respect to
219 | Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this
220 | License Agreement shall be deemed to create any relationship of
221 | agency, partnership, or joint venture between CNRI and Licensee. This
222 | License Agreement does not grant permission to use CNRI trademarks or
223 | trade name in a trademark sense to endorse or promote products or
224 | services of Licensee, or any third party.
225 |
226 | 8. By clicking on the "ACCEPT" button where indicated, or by copying,
227 | installing or otherwise using Python 1.6.1, Licensee agrees to be
228 | bound by the terms and conditions of this License Agreement.
229 |
230 | ACCEPT
231 |
232 |
233 | CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2
234 | --------------------------------------------------
235 |
236 | Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
237 | The Netherlands. All rights reserved.
238 |
239 | Permission to use, copy, modify, and distribute this software and its
240 | documentation for any purpose and without fee is hereby granted,
241 | provided that the above copyright notice appear in all copies and that
242 | both that copyright notice and this permission notice appear in
243 | supporting documentation, and that the name of Stichting Mathematisch
244 | Centrum or CWI not be used in advertising or publicity pertaining to
245 | distribution of the software without specific, written prior
246 | permission.
247 |
248 | STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
249 | THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
250 | FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
251 | FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
252 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
253 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
254 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
255 |
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/_asyncio.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/_asyncio.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/_bz2.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/_bz2.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/_ctypes.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/_ctypes.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/_decimal.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/_decimal.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/_elementtree.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/_elementtree.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/_hashlib.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/_hashlib.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/_lzma.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/_lzma.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/_msi.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/_msi.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/_multiprocessing.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/_multiprocessing.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/_overlapped.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/_overlapped.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/_queue.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/_queue.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/_socket.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/_socket.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/_sqlite3.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/_sqlite3.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/_ssl.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/_ssl.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/pyexpat.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/pyexpat.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/python.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/python.exe
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/python.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/python.zip
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/python3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/python3.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/python37._pth:
--------------------------------------------------------------------------------
1 | python37.zip
2 | python.zip
3 | .
4 | Lib
5 | #Lib\OCC\oce\3rdparty
6 | # Uncomment to run site.main() automatically
7 | #import site
8 |
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/python37.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/python37.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/pythonw.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/pythonw.exe
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/select.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/select.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/sqlite3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/sqlite3.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/unicodedata.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/unicodedata.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/libpython/winsound.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/libpython/winsound.pyd
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/msvcp140.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/msvcp140.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/scripts/config/config.toml:
--------------------------------------------------------------------------------
1 | [general]
2 | language = ""
3 |
4 | [file]
5 | recent = []
6 | recentcount = 4
7 |
8 | [CodeEditor]
9 | fontsize = 11
10 |
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/scripts/data/__init__.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | """Qss template files
3 |
4 | Include qss and qss used variables designed by author.
5 |
6 | Copyright (c) 2019 lileilei
7 | """
8 |
9 | # the __init__ file is not needed, it's for setup.py to import data dir
10 |
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/scripts/data/default.qss:
--------------------------------------------------------------------------------
1 | /* ================================================ *
2 | author:lei
3 | lastedited:2019.8
4 | * ================================================ */
5 |
6 |
7 | QWidget
8 | {
9 | color: #222;
10 | background-color: #FFFFFF;
11 | }
12 |
13 | QFrame{
14 | color: #222;
15 | background-color: #FFFFFF;/*不能设置为transparent*/
16 | }
17 | QMainWindow::separator{
18 | border: 1px solid #999999;
19 | border-style: outset;
20 | width: 4px;
21 | height: 4px;
22 | }
23 | QMainWindow::separator:hover{
24 | background: #8BF;
25 | }
26 | QSplitter::handle{
27 | border: 1px solid #999999;
28 | border-style: outset;
29 | width: 4px;
30 | height: 4px;
31 | }
32 | QSplitter::handle:hover{/*splitter->handle(1)->setAttribute(Qt::WA_Hover, true);才生效*/
33 | border-color: #EA2;
34 | }
35 | QSplitter::handle:pressed{
36 | border-color: #59F;
37 | }
38 | QSizeGrip{
39 | background-color: none;
40 | }
41 | /* 一定要记得,用qApp或者QApplication.instance的setStyle,
42 | 用self.setStyle会有很多地方不生效:Menu ToolTip等*/
43 | /* =============================================== */
44 | /* MenuBar Menu */
45 | /* =============================================== */
46 | QMenuBar {
47 | background-color: #FFFFFF;
48 | spacing: 1px;
49 | border-bottom: 1px solid #999999;
50 | }
51 |
52 | QMenuBar::item{
53 | background: transparent;
54 | padding: 1px 8px;
55 | }
56 |
57 | QMenuBar::item:selected{
58 | background: #8BF;
59 | border: 1px solid #8BF;
60 | }
61 |
62 | QMenuBar::item:pressed{
63 | background: #59F;
64 | border: 1px solid #59F;
65 | padding-top: 4px; /*margin-bottom: -4px;*/
66 | }
67 |
68 | QMenu {
69 | background-color: #FFFFFF;
70 | border: 1px solid #999999;
71 | margin: 1px; /* some spacing around the menu */
72 | padding: 1px;
73 | }
74 |
75 | QMenu::item{
76 | padding: 2px 25px 2px 20px;
77 | border: 1px solid transparent;
78 | margin: 1px;
79 | }
80 | QMenu::icon {/*菜单的图标*/
81 | width: 15px;
82 | height: 15px;
83 | padding:5px;
84 | border-right: 1px inset #999999;
85 | }
86 |
87 | QMenu::item:selected {
88 | border-color: #999999;
89 | background: #8BF;
90 | }
91 |
92 | QMenu::separator {
93 | height: 1px;
94 | background: #999999;
95 | margin: 0 5px;
96 | }
97 |
98 | QMenu::indicator {/*checked 的√*/
99 | width: 13px;
100 | height: 13px;
101 | padding:2px;
102 | }
103 | QMenu::icon:checked { /* appearance of a 'checked' icon */
104 | background: #8BF;
105 | border: 1px inset #59F;
106 | border-radius: 3px;
107 | padding: 2px;
108 | /*position: absolute;
109 | top: 0px;
110 | right: 1px;
111 | bottom: 5px;
112 | left: 2px;*/
113 | }
114 |
115 | /* =============================================== */
116 | /* ToolBar StatusBar */
117 | /* =============================================== */
118 | QToolBar {
119 | background: #FFFFFF;
120 | spacing: 1px; /* spacing between items in the tool bar */
121 | padding: 1px;
122 | border-bottom: 1px solid #999999;
123 | }
124 |
125 | QStatusBar{
126 | background: transparent;
127 | border-top:1px solid #999999;
128 | }
129 |
130 | QStatusBar::item {
131 | margin: 2px 0;
132 | border-left: 1px solid #999999;
133 | }
134 |
135 | QStatusBar QLabel{
136 | background: transparent;
137 | margin: 0 2px;
138 | }
139 |
140 | QStatusBar QPushButton{
141 | background: transparent;
142 | margin: 0 2px;
143 | }
144 |
145 | QStatusBar QPushButton:hover{
146 | background: #8BF;
147 | margin: 0 2px;
148 | }
149 |
150 | /* =============================================== */
151 | /* Label */
152 | /* =============================================== */
153 | QLabel {
154 | background: transparent;
155 | border: 1px solid transparent;
156 | padding: 1px;
157 | }
158 |
159 |
160 | /* A QLabel is a QFrame ... */
161 | /* A QToolTip is a QLabel ... */
162 | QToolTip {
163 | border: 1px solid #999999;
164 | padding: 5px;
165 | border-radius: 3px;
166 | opacity:210;
167 | }
168 |
169 | /* =============================================== */
170 | /* TextBox */
171 | /* =============================================== */
172 | QLineEdit {
173 | background: #FFFFFF;/*不建议设为透明,否则table编辑时会字显示*/
174 | selection-background-color: #8BF;
175 | border: 1px solid #999999;
176 | border-radius: 2px;
177 | border-style: inset;
178 | padding: 0 1px;
179 | }
180 |
181 | QLineEdit:hover{
182 | border-color: #8BF;
183 | }
184 | QLineEdit:focus{
185 | border-color: #EA2;
186 | }
187 | /*QLineEdit[readOnly="true"] { color: gray }*/
188 | QLineEdit[echoMode="2"]{
189 | lineedit-password-character: 9679;/*字符的ascii码35 88等 */
190 | }
191 |
192 | QLineEdit:read-only {
193 | color: lightgray;
194 | }
195 |
196 | QLineEdit:disabled{
197 | color: lightgray;
198 | background: lightgray;
199 | }
200 |
201 | QTextEdit{
202 | selection-background-color:#8BF;
203 | border: 1px solid #999999;
204 | border-style: inset;
205 | }
206 | QTextEdit:hover{
207 | border-color: #8BF;
208 | }
209 | QTextEdit:focus{
210 | border-color: #EA2;
211 | }
212 | /* =============================================== */
213 | /* Button */
214 | /* =============================================== */
215 | QPushButton {
216 | border: 1px solid #999999;
217 | border-radius: 2px;
218 | /*background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,
219 | stop: 0 #EEEEEF, stop: 0.05 #DADADF,stop: 0.5 #DADADF,
220 | stop: 0.9 #EEEEEF, stop: 1 #EEEEEF);*/
221 | padding: 1px 4px;
222 | min-width: 50px;
223 | min-height: 16px;
224 | }
225 |
226 | QPushButton:hover{
227 | background-color: #8BF;
228 | border-color: #59F;
229 | }
230 |
231 | QPushButton:pressed
232 | {
233 | border-width: 1px;
234 | background-color: #59F;
235 | border-color: #999999;
236 | }
237 |
238 | QPushButton:focus, QPushButton:default {
239 | border-color: #EA2; /* make the default button prominent */
240 | }
241 |
242 |
243 | QToolButton,QToolButton:unchecked { /* ToolBar里的按钮和带下拉菜单的按钮 */
244 | border: 1px solid transparent;
245 | border-radius: 3px;
246 | background-color: transparent;
247 | margin: 1px;
248 | }
249 | QToolButton:checked{
250 | background-color: #8BF;
251 | border-color: #59F;
252 | }
253 | QToolButton:hover{
254 | background-color: #8BF;
255 | border-color: #59F;
256 | }
257 |
258 | QToolButton:pressed,QToolButton:checked:hover{
259 | background-color: #59F;
260 | border-color: #EA2;
261 | }
262 | QToolButton:checked:pressed{
263 | background-color: #8BF;
264 | }
265 |
266 | /* only for MenuButtonPopup */
267 | QToolButton[popupMode="1"]{
268 | padding-left: 1px;
269 | padding-right: 15px; /* make way for the popup button */
270 | border: 1px solid #999999;
271 | min-height: 15px;
272 | /*background: qlineargradient(x1:0, y1:0 ,x2:0, y2:1
273 | stop: 0 #EEEEEF, stop: 0.05 #DADADF, stop: 0.5 #DADADF
274 | stop: 0.95 #EEEEEF stop: 1#EEEEEF)*/
275 | }
276 | QToolButton[popupMode="1"]:hover{
277 | background-color: #8BF;
278 | border-color: #59F;
279 | }
280 | QToolButton[popupMode="1"]:pressed{
281 | border-width: 1px;
282 | background-color: #59F;
283 | border-color: #999999;
284 | }
285 | QToolButton::menu-button {
286 | border: 1px solid #999999;
287 | border-top-right-radius: 2px;
288 | border-bottom-right-radius: 2px;
289 | width: 16px;
290 | }
291 |
292 | /* =============================================== */
293 | /* ComboBox */
294 | /* =============================================== */
295 | QComboBox{
296 | border: 1px solid #999999;
297 | }
298 | QComboBox:editable{
299 | border-style: inset;
300 | }
301 | QComboBox:hover{
302 | border-color: #8BF;
303 | }
304 | QComboBox:focus{
305 | border-color: #EA2;
306 | }
307 | QComboBox:on { /* shift the text when the popup opens */
308 | padding-top: 2px;
309 | padding-left: 2px;
310 | }
311 | QComboBox QAbstractItemView {
312 | border: 1px solid #999999;
313 | selection-background-color: #8BF;
314 | }
315 | /*QComboBox QAbstractItemView::item {
316 | height: 12px;需要设置comboBox.setView(QListView())否则会使用默认的item样式
317 | }*/
318 | /* =============================================== */
319 | /* SpinBox DateTime */
320 | /* =============================================== */
321 | QSpinBox, QDoubleSpinBox,QDateEdit,QTimeEdit,QDateTimeEdit{
322 | border: 1px solid #999999;
323 | border-style: inset;
324 | }
325 | QSpinBox:hover, QDoubleSpinBox:hover,QDateEdit:hover, QTimeEdit:hover,QDateTimeEdit:hover{
326 | border-color: #8BF;
327 | }
328 | QSpinBox:focus, QDoubleSpinBox:focus,QDateEdit:focus,QTimeEdit:focus,QDateTimeEdit:focus{
329 | border-color: #EA2;
330 | }
331 |
332 | /* =============================================== */
333 | /* Slider ProgressBar */
334 | /* =============================================== */
335 | QProgressBar {
336 | border: 1px solid #999999;
337 | border-radius: 4px;
338 | text-align: center;
339 | }
340 |
341 | QProgressBar::chunk {
342 | background-color: #EA2;
343 | width: 4px;
344 | margin: 1px;
345 | }
346 |
347 | QSlider{
348 | border: 1px solid transparent;
349 | }
350 | QSlider::groove{
351 | border: 1px solid #999999;
352 | background: #FFFFFF;
353 | }
354 | QSlider::handle {/*设置中间的那个滑动的键*/
355 | border: 1px solid #999999;
356 | background: #8BF;
357 | }
358 | QSlider::groove:horizontal {
359 | height: 3px; /* the groove expands to the size of the slider by default. by giving it a height, it has a fixed size */
360 | left:5px; right: 5px;
361 | }
362 | QSlider::groove:vertical{
363 | width: 3px;
364 | top: 5px; bottom: 5px;
365 | }
366 | QSlider::handle:horizontal{
367 | width: 6px;
368 | margin: -7px; /* height */
369 | }
370 | QSlider::handle:vertical{
371 | height: 6px;
372 | margin: -7px; /* height */
373 | }
374 | QSlider::add-page{/*还没有滑上去的地方*/
375 | border: 1px solid #999999;
376 | background:#EEEEEF;
377 | }
378 | QSlider::sub-page{/*已经划过的从地方*/
379 | background: #EA2;
380 | }
381 |
382 | /* =============================================== */
383 | /* ScrollBar */
384 | /* =============================================== */
385 | QScrollBar{
386 | background-color: #FFFFFF;
387 | border: 1px solid #999999;
388 | border-radius: 5px;
389 | padding: 1px;
390 | height: 10px;
391 | width: 10px;
392 | }
393 | QScrollBar:hover{
394 | border-color:#8BF;
395 | }
396 | QScrollBar::handle{
397 | border-radius: 3px;
398 | background: #59F;
399 | min-width: 16px;
400 | min-height: 16px;
401 | }
402 | QScrollBar::handle:hover {
403 | background: #EA2;
404 | }
405 | QScrollBar::add-line, QScrollBar::sub-line,
406 | QScrollBar::add-page, QScrollBar::sub-page {
407 | width: 0px;
408 | background: transparent;
409 | }
410 | QScrollArea{
411 | border: none;
412 | }
413 | /*QScrollArea QAbstractSlider{
414 | border-radius: 0px;
415 | }*/
416 | /* =============================================== */
417 | /* DockWidget */
418 | /* =============================================== */
419 | QDockWidget, QDockWidget > QWidget/*not work*/
420 | {
421 | border-color: #999999;/*qt bug*/
422 | background: transparent;
423 | }
424 | QDockWidget::title {
425 | border-bottom: 1px solid #999999;
426 | border-style: inset;
427 | text-align: left; /* align the text to the left */
428 | padding: 6px;
429 | }
430 |
431 | /* =============================================== */
432 | /* GroupBox */
433 | /* =============================================== */
434 | QGroupBox {
435 | background-color: #FFFFFF;
436 | border: 1px solid #999999;
437 | border-radius: 4px;
438 | margin-top: 0.5em;
439 | }
440 | QGroupBox::title {
441 | subcontrol-origin: margin;
442 | subcontrol-position: top left;
443 | left: 1em;
444 | background-color: #FFFFFF;
445 | }
446 | /* =============================================== */
447 | /* ToolBox */
448 | /* =============================================== */
449 | QToolBox{
450 | border: 1px solid #999999;
451 | }
452 | QToolBox::tab {
453 | background: #EEEEEF;
454 | border: 1px solid #999999;
455 | border-radius: 1px;
456 | }
457 | QToolBox::tab:hover {
458 | background-color: #8BF;
459 | border-color: transparent;
460 | }
461 | QToolBox::tab:pressed {
462 | background-color: #59F;
463 | border-color: transparent;
464 | }
465 | QToolBox::tab:selected {
466 | font-weight: bold;
467 | border-color: #8BF;
468 | }
469 |
470 | /* =============================================== */
471 | /* TabWidget */
472 | /* =============================================== */
473 | QTabWidget{
474 | margin-top:10px;
475 | }
476 | QTabWidget::pane{
477 | border: 1px solid #999999;
478 | }
479 | QTabWidget::tab-bar {
480 | left: 0px;
481 | }
482 | QTabBar::tab {
483 | background: #FFFFFF;
484 | border: 1px solid #999999;
485 | padding: 3px 5px;
486 | }
487 | QTabBar::tab:hover {
488 | background: #8BF;
489 | border-color: transparent;
490 | }
491 | QTabBar::tab:selected {
492 | background: #8BF;
493 | border-color: #59F;
494 | }
495 | QTabBar::tab:pressed {
496 | background: #59F;
497 | border-color: transparent;
498 | }
499 | QTabBar::tab:focus {
500 | border-color: #EA2;
501 | }
502 | QTabBar::tab:top{
503 | margin-top: 3px;
504 | border-bottom: transparent;
505 | margin-right: 1px;
506 | }
507 | QTabBar::tab:bottom{
508 | margin-bottom: 3px;
509 | border-top: transparent;
510 | margin-right: 1px;
511 | }
512 | QTabBar::tab:left{
513 | border-right: transparent;
514 | margin-bottom: 1px;
515 | }
516 | QTabBar::tab:right{
517 | border-left: transparent;
518 | margin-bottom: 1px;
519 | }
520 |
521 | /* =============================================== */
522 | /* QHeaderView for list table */
523 | /* =============================================== */
524 | QHeaderView {
525 | border: none;
526 | margin: 0px;
527 | padding: 0px;
528 | }
529 | QHeaderView::section, QTableCornerButton::section {/*设置表头属性*//*左上角*/
530 | background-color: #EEEEEF;
531 | padding: 0 3px;
532 | border-right: 1px solid #999999;
533 | border-bottom: 1px solid #999999;
534 | border-radius: 0px;
535 | }
536 | QHeaderView::section:hover, QTableCornerButton::section:hover{
537 | background-color: #8BF;
538 | }
539 | QHeaderView::section:pressed{
540 | background-color: #59F;
541 | }
542 | QHeaderView::section:checked {
543 | background-color: #EA2;
544 | }
545 |
546 | /* =============================================== */
547 | /* QTableWidget */
548 | /* =============================================== */
549 | QTableWidget, QTableView
550 | {
551 | gridline-color: #999999; /*表格中的网格线条颜色*/
552 | background: #FFFFFF;
553 | /*设置交替颜色,需要在函数属性中设置:tableWidget->setAlternatingRowColors(true)*/
554 | alternate-background-color: #EEEEEF;
555 | /*selection-color:#FFFFFF; 鼠标选中时前景色:文字颜色*/
556 | selection-background-color:#8BF; /*鼠标选中时背景色*/
557 | border:1px solid #999999; /*边框线的宽度、颜色*/
558 | /*border:none; 去除边界线*/
559 | /*border-radius:5px;*/
560 | /*padding:10px 10px;*/ /*表格与边框的间距*/
561 | }
562 | QTableView::item, QTabWidget::item{
563 | background: transparent;
564 | outline-style: none;
565 | border: none;
566 | }
567 |
568 | QTableView::item:hover {
569 | background: #8BF;
570 | border: 1px solid #EA2;
571 | }
572 |
573 | QTableView::item:selected {
574 | background: #8BF;
575 | color: #EEEEEF;
576 | }
577 |
578 | QTableView::item:selected:active {
579 | background: #59F;
580 | color: #EEEEEF;
581 | }
582 |
583 | QTableWidget QComboBox{
584 | margin: 2px;
585 | border: none;
586 | }
587 |
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/scripts/data/default.qsst:
--------------------------------------------------------------------------------
1 | /* ================================================ *
2 | author:lei
3 | lastedited:2019.8
4 | * ================================================ */
5 | $text = #222;
6 | $background = #FFFFFF;
7 | $border = #999999;
8 | $selected = #8BF; /*hover*/
9 | $pressed = #59F;
10 | $focused = #EA2; /*actived*/
11 | $grad1a = #EEEEEF; /*gradient start*/
12 | $grad1b = #DADADF; /*gradient end*/
13 |
14 | QWidget
15 | {
16 | color: $text;
17 | background-color: $background;
18 | }
19 |
20 | QFrame{
21 | color: $text;
22 | background-color: $background;/*不能设置为transparent*/
23 | }
24 | QMainWindow::separator{
25 | border: 1px solid $border;
26 | border-style: outset;
27 | width: 4px;
28 | height: 4px;
29 | }
30 | QMainWindow::separator:hover{
31 | background: $selected;
32 | }
33 | QSplitter::handle{
34 | border: 1px solid $border;
35 | border-style: outset;
36 | width: 4px;
37 | height: 4px;
38 | }
39 | QSplitter::handle:hover{/*splitter->handle(1)->setAttribute(Qt::WA_Hover, true);才生效*/
40 | border-color: $focused;
41 | }
42 | QSplitter::handle:pressed{
43 | border-color: $pressed;
44 | }
45 | QSizeGrip{
46 | background-color: none;
47 | }
48 | /* 一定要记得,用qApp或者QApplication.instance的setStyle,
49 | 用self.setStyle会有很多地方不生效:Menu ToolTip等*/
50 | /* =============================================== */
51 | /* MenuBar Menu */
52 | /* =============================================== */
53 | QMenuBar {
54 | background-color: $background;
55 | spacing: 1px;
56 | border-bottom: 1px solid $border;
57 | }
58 |
59 | QMenuBar::item{
60 | background: transparent;
61 | padding: 1px 8px;
62 | }
63 |
64 | QMenuBar::item:selected{
65 | background: $selected;
66 | border: 1px solid $selected;
67 | }
68 |
69 | QMenuBar::item:pressed{
70 | background: $pressed;
71 | border: 1px solid $pressed;
72 | padding-top: 4px; /*margin-bottom: -4px;*/
73 | }
74 |
75 | QMenu {
76 | background-color: $background;
77 | border: 1px solid $border;
78 | margin: 1px; /* some spacing around the menu */
79 | padding: 1px;
80 | }
81 |
82 | QMenu::item{
83 | padding: 2px 25px 2px 15px;
84 | border: 1px solid transparent;
85 | margin: 1px;
86 | }
87 | QMenu::icon {/*菜单的图标*/
88 | width: 15px;
89 | height: 15px;
90 | padding:5px;
91 | border-right: 1px inset $border;
92 | }
93 |
94 | QMenu::item:selected {
95 | border-color: $border;
96 | background: $selected;
97 | }
98 |
99 | QMenu::separator {
100 | height: 1px;
101 | background: $border;
102 | margin: 0 5px;
103 | }
104 |
105 | QMenu::indicator {/*checked 的√*/
106 | width: 13px;
107 | height: 13px;
108 | padding:2px;
109 | }
110 | QMenu::icon:checked { /* appearance of a 'checked' icon */
111 | background: $selected;
112 | border: 1px inset $pressed;
113 | border-radius: 3px;
114 | padding: 2px;
115 | /*position: absolute;
116 | top: 0px;
117 | right: 1px;
118 | bottom: 5px;
119 | left: 2px;*/
120 | }
121 |
122 | /* =============================================== */
123 | /* ToolBar StatusBar */
124 | /* =============================================== */
125 | QToolBar {
126 | background: $background;
127 | spacing: 1px; /* spacing between items in the tool bar */
128 | padding: 1px;
129 | border-bottom: 1px solid $border;
130 | }
131 |
132 | QStatusBar{
133 | background: transparent;
134 | border-top:1px solid $border;
135 | }
136 |
137 | QStatusBar::item {
138 | margin: 2px 0;
139 | border-left: 1px solid $border;
140 | }
141 |
142 | QStatusBar QLabel{
143 | background: transparent;
144 | margin: 0 2px;
145 | }
146 |
147 | QStatusBar QPushButton{
148 | background: transparent;
149 | margin: 0 2px;
150 | }
151 |
152 | QStatusBar QPushButton:hover{
153 | background: $selected;
154 | margin: 0 2px;
155 | }
156 |
157 | /* =============================================== */
158 | /* Label */
159 | /* =============================================== */
160 | QLabel {
161 | background: transparent;
162 | border: 1px solid transparent;
163 | padding: 1px;
164 | }
165 |
166 |
167 | /* A QLabel is a QFrame ... */
168 | /* A QToolTip is a QLabel ... */
169 | QToolTip {
170 | border: 1px solid $border;
171 | padding: 5px;
172 | border-radius: 3px;
173 | opacity:210;
174 | }
175 |
176 | /* =============================================== */
177 | /* TextBox */
178 | /* =============================================== */
179 | QLineEdit {
180 | background: $background;/*不建议设为透明,否则table编辑时会字显示*/
181 | selection-background-color: $selected;
182 | border: 1px solid $border;
183 | border-radius: 2px;
184 | border-style: inset;
185 | padding: 0 1px;
186 | }
187 |
188 | QLineEdit:hover{
189 | border-color: $selected;
190 | }
191 | QLineEdit:focus{
192 | border-color: $focused;
193 | }
194 | /*QLineEdit[readOnly="true"] { color: gray }*/
195 | QLineEdit[echoMode="2"]{
196 | lineedit-password-character: 9679;/*字符的ascii码35 88等 */
197 | }
198 |
199 | QLineEdit:read-only {
200 | color: lightgray;
201 | }
202 |
203 | QLineEdit:disabled{
204 | color: lightgray;
205 | background: lightgray;
206 | }
207 |
208 | QTextEdit{
209 | selection-background-color:$selected;
210 | border: 1px solid $border;
211 | border-style: inset;
212 | }
213 | QTextEdit:hover{
214 | border-color: $selected;
215 | }
216 | QTextEdit:focus{
217 | border-color: $focused;
218 | }
219 | /* =============================================== */
220 | /* Button */
221 | /* =============================================== */
222 | QPushButton {
223 | border: 1px solid $border;
224 | border-radius: 2px;
225 | /*background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,
226 | stop: 0 $grad1a, stop: 0.05 $grad1b,stop: 0.5 $grad1b,
227 | stop: 0.9 $grad1a, stop: 1 $grad1a);*/
228 | padding: 1px 4px;
229 | min-width: 50px;
230 | min-height: 16px;
231 | }
232 |
233 | QPushButton:hover{
234 | background-color: $selected;
235 | border-color: $pressed;
236 | }
237 |
238 | QPushButton:pressed
239 | {
240 | border-width: 1px;
241 | background-color: $pressed;
242 | border-color: $border;
243 | }
244 |
245 | QPushButton:focus, QPushButton:default {
246 | border-color: $focused; /* make the default button prominent */
247 | }
248 |
249 |
250 | QToolButton,QToolButton:unchecked { /* ToolBar里的按钮和带下拉菜单的按钮 */
251 | border: 1px solid transparent;
252 | border-radius: 3px;
253 | background-color: transparent;
254 | margin: 1px;
255 | }
256 | QToolButton:checked{
257 | background-color: $selected;
258 | border-color: $pressed;
259 | }
260 | QToolButton:hover{
261 | background-color: $selected;
262 | border-color: $pressed;
263 | }
264 |
265 | QToolButton:pressed,QToolButton:checked:hover{
266 | background-color: $pressed;
267 | border-color: $focused;
268 | }
269 | QToolButton:checked:pressed{
270 | background-color: $selected;
271 | }
272 |
273 | /* only for MenuButtonPopup */
274 | QToolButton[popupMode="1"]{
275 | padding-left: 1px;
276 | padding-right: 15px; /* make way for the popup button */
277 | border: 1px solid $border;
278 | min-height: 15px;
279 | /*background: qlineargradient(x1:0, y1:0 ,x2:0, y2:1
280 | stop: 0 $grad1a, stop: 0.05 $grad1b, stop: 0.5 $grad1b
281 | stop: 0.95 $grad1a stop: 1$grad1a)*/
282 | }
283 | QToolButton[popupMode="1"]:hover{
284 | background-color: $selected;
285 | border-color: $pressed;
286 | }
287 | QToolButton[popupMode="1"]:pressed{
288 | border-width: 1px;
289 | background-color: $pressed;
290 | border-color: $border;
291 | }
292 | QToolButton::menu-button {
293 | border: 1px solid $border;
294 | border-top-right-radius: 2px;
295 | border-bottom-right-radius: 2px;
296 | width: 16px;
297 | }
298 |
299 | /* =============================================== */
300 | /* ComboBox */
301 | /* =============================================== */
302 | QComboBox{
303 | border: 1px solid $border;
304 | }
305 | QComboBox:editable{
306 | border-style: inset;
307 | }
308 | QComboBox:hover{
309 | border-color: $selected;
310 | }
311 | QComboBox:focus{
312 | border-color: $focused;
313 | }
314 | QComboBox:on { /* shift the text when the popup opens */
315 | padding-top: 2px;
316 | padding-left: 2px;
317 | }
318 | QComboBox QAbstractItemView {
319 | border: 1px solid $border;
320 | selection-background-color: $selected;
321 | }
322 | /*QComboBox QAbstractItemView::item {
323 | height: 12px;需要设置comboBox.setView(QListView())否则会使用默认的item样式
324 | }*/
325 | /* =============================================== */
326 | /* SpinBox DateTime */
327 | /* =============================================== */
328 | QSpinBox, QDoubleSpinBox,QDateEdit,QTimeEdit,QDateTimeEdit{
329 | border: 1px solid $border;
330 | border-style: inset;
331 | }
332 | QSpinBox:hover, QDoubleSpinBox:hover,QDateEdit:hover, QTimeEdit:hover,QDateTimeEdit:hover{
333 | border-color: $selected;
334 | }
335 | QSpinBox:focus, QDoubleSpinBox:focus,QDateEdit:focus,QTimeEdit:focus,QDateTimeEdit:focus{
336 | border-color: $focused;
337 | }
338 |
339 | /* =============================================== */
340 | /* Slider ProgressBar */
341 | /* =============================================== */
342 | QProgressBar {
343 | border: 1px solid $border;
344 | border-radius: 4px;
345 | text-align: center;
346 | }
347 |
348 | QProgressBar::chunk {
349 | background-color: $focused;
350 | width: 4px;
351 | margin: 1px;
352 | }
353 |
354 | QSlider{
355 | border: 1px solid transparent;
356 | }
357 | QSlider::groove{
358 | border: 1px solid $border;
359 | background: $background;
360 | }
361 | QSlider::handle {/*设置中间的那个滑动的键*/
362 | border: 1px solid $border;
363 | background: $selected;
364 | }
365 | QSlider::groove:horizontal {
366 | height: 3px; /* the groove expands to the size of the slider by default. by giving it a height, it has a fixed size */
367 | left:5px; right: 5px;
368 | }
369 | QSlider::groove:vertical{
370 | width: 3px;
371 | top: 5px; bottom: 5px;
372 | }
373 | QSlider::handle:horizontal{
374 | width: 6px;
375 | margin: -7px; /* height */
376 | }
377 | QSlider::handle:vertical{
378 | height: 6px;
379 | margin: -7px; /* height */
380 | }
381 | QSlider::add-page{/*还没有滑上去的地方*/
382 | border: 1px solid $border;
383 | background:$grad1a;
384 | }
385 | QSlider::sub-page{/*已经划过的从地方*/
386 | background: $focused;
387 | }
388 |
389 | /* =============================================== */
390 | /* ScrollBar */
391 | /* =============================================== */
392 | QScrollBar{
393 | background-color: $background;
394 | border: 1px solid $border;
395 | border-radius: 5px;
396 | padding: 1px;
397 | height: 10px;
398 | width: 10px;
399 | }
400 | QScrollBar:hover{
401 | border-color:$selected;
402 | }
403 | QScrollBar::handle{
404 | border-radius: 3px;
405 | background: $pressed;
406 | min-width: 16px;
407 | min-height: 16px;
408 | }
409 | QScrollBar::handle:hover {
410 | background: $focused;
411 | }
412 | QScrollBar::add-line, QScrollBar::sub-line,
413 | QScrollBar::add-page, QScrollBar::sub-page {
414 | width: 0px;
415 | background: transparent;
416 | }
417 | QScrollArea{
418 | border: none;
419 | }
420 | /*QScrollArea QAbstractSlider{
421 | border-radius: 0px;
422 | }*/
423 | /* =============================================== */
424 | /* DockWidget */
425 | /* =============================================== */
426 | QDockWidget, QDockWidget > QWidget/*not work*/
427 | {
428 | border-color: $border;/*qt bug*/
429 | background: transparent;
430 | }
431 | QDockWidget::title {
432 | border-bottom: 1px solid $border;
433 | border-style: inset;
434 | text-align: left; /* align the text to the left */
435 | padding: 6px;
436 | }
437 |
438 | /* =============================================== */
439 | /* GroupBox */
440 | /* =============================================== */
441 | QGroupBox {
442 | background-color: $background;
443 | border: 1px solid $border;
444 | border-radius: 4px;
445 | margin-top: 0.5em;
446 | }
447 | QGroupBox::title {
448 | subcontrol-origin: margin;
449 | subcontrol-position: top left;
450 | left: 1em;
451 | background-color: $background;
452 | }
453 | /* =============================================== */
454 | /* ToolBox */
455 | /* =============================================== */
456 | QToolBox{
457 | border: 1px solid $border;
458 | }
459 | QToolBox::tab {
460 | background: $grad1a;
461 | border: 1px solid $border;
462 | border-radius: 1px;
463 | }
464 | QToolBox::tab:hover {
465 | background-color: $selected;
466 | border-color: transparent;
467 | }
468 | QToolBox::tab:pressed {
469 | background-color: $pressed;
470 | border-color: transparent;
471 | }
472 | QToolBox::tab:selected {
473 | font-weight: bold;
474 | border-color: $selected;
475 | }
476 |
477 | /* =============================================== */
478 | /* TabWidget */
479 | /* =============================================== */
480 | QTabWidget{
481 | margin-top:10px;
482 | }
483 | QTabWidget::pane{
484 | border: 1px solid $border;
485 | }
486 | QTabWidget::tab-bar {
487 | left: 0px;
488 | }
489 | QTabBar::tab {
490 | background: $background;
491 | border: 1px solid $border;
492 | padding: 3px 5px;
493 | }
494 | QTabBar::tab:hover {
495 | background: $selected;
496 | border-color: transparent;
497 | }
498 | QTabBar::tab:selected {
499 | background: $selected;
500 | border-color: $pressed;
501 | }
502 | QTabBar::tab:pressed {
503 | background: $pressed;
504 | border-color: transparent;
505 | }
506 | QTabBar::tab:focus {
507 | border-color: $focused;
508 | }
509 | QTabBar::tab:top{
510 | margin-top: 3px;
511 | border-bottom: transparent;
512 | margin-right: 1px;
513 | }
514 | QTabBar::tab:bottom{
515 | margin-bottom: 3px;
516 | border-top: transparent;
517 | margin-right: 1px;
518 | }
519 | QTabBar::tab:left{
520 | border-right: transparent;
521 | margin-bottom: 1px;
522 | }
523 | QTabBar::tab:right{
524 | border-left: transparent;
525 | margin-bottom: 1px;
526 | }
527 |
528 | /* =============================================== */
529 | /* QHeaderView for list table */
530 | /* =============================================== */
531 | QHeaderView {
532 | border: none;
533 | margin: 0px;
534 | padding: 0px;
535 | }
536 | QHeaderView::section, QTableCornerButton::section {/*设置表头属性*//*左上角*/
537 | background-color: $grad1a;
538 | padding: 0 3px;
539 | border-right: 1px solid $border;
540 | border-bottom: 1px solid $border;
541 | border-radius: 0px;
542 | }
543 | QHeaderView::section:hover, QTableCornerButton::section:hover{
544 | background-color: $selected;
545 | }
546 | QHeaderView::section:pressed{
547 | background-color: $pressed;
548 | }
549 | QHeaderView::section:checked {
550 | background-color: $focused;
551 | }
552 |
553 | /* =============================================== */
554 | /* QTableWidget */
555 | /* =============================================== */
556 | QTableWidget, QTableView
557 | {
558 | gridline-color: $border; /*表格中的网格线条颜色*/
559 | background: $background;
560 | /*设置交替颜色,需要在函数属性中设置:tableWidget->setAlternatingRowColors(true)*/
561 | alternate-background-color: $grad1a;
562 | /*selection-color:$background; 鼠标选中时前景色:文字颜色*/
563 | selection-background-color:$selected; /*鼠标选中时背景色*/
564 | border:1px solid $border; /*边框线的宽度、颜色*/
565 | /*border:none; 去除边界线*/
566 | /*border-radius:5px;*/
567 | /*padding:10px 10px;*/ /*表格与边框的间距*/
568 | }
569 | QTableView::item, QTabWidget::item{
570 | background: transparent;
571 | outline-style: none;
572 | border: none;
573 | }
574 |
575 | QTableView::item:hover {
576 | background: $selected;
577 | border: 1px solid $focused;
578 | }
579 |
580 | QTableView::item:selected {
581 | background: $selected;
582 | color: $grad1a;
583 | }
584 |
585 | QTableView::item:selected:active {
586 | background: $pressed;
587 | color: $grad1a;
588 | }
589 |
590 | QTableWidget QComboBox{
591 | margin: 2px;
592 | border: none;
593 | }
594 |
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/scripts/i18n/i18n_zh.qm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/scripts/i18n/i18n_zh.qm
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/scripts/i18n/list.toml:
--------------------------------------------------------------------------------
1 | [languages]
2 | English =["en", "", "English"] #英语
3 | Chinese =["zh-CN", "i18n_zh.qm", "简体中文"] #汉语
4 | French =["fr", "i18n-fr.qm", "Fran?ais"] #法语
5 | Russian =["ru", "i18_ru.qm", "Русский"] #俄语
6 | spanish =["es", "i18_es.qm", "Español"] #西班牙语
7 | Japanese=["ja", "i18_ja.qm", "日本語", ] #日语
8 | Korean =["ko", "i18_ko.qm", "한국어", ] #韩语
9 | German =["de", "i18_de.qm", "Deutsch" ] #德语
10 | Italian =["it", "i18_it.qm", "Italiano"] #意大利语
11 |
12 | #englishname=[QLocale().name(),qmfile,nativename(can be "")]
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/scripts/res/app.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/scripts/res/app.ico
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/scripts/res/qss.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/scripts/res/qss.ico
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/scripts/res/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/scripts/res/splash.png
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/ucrtbase.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/ucrtbase.dll
--------------------------------------------------------------------------------
/html/pyQt5/QssStylesheetEditor/vcruntime140.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/pyQt5/QssStylesheetEditor/vcruntime140.dll
--------------------------------------------------------------------------------
/html/pyQt5/ksrm.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | PyQt5基础文字教程
5 | PyQt5基础视频教程
7 |
8 | pyqt5学会了非常有用,并且我个人认为是python中最强大的跨平台UI,这个甚至可以设计手机界面
10 |
11 | 因此请认真学,看不懂,记不住都是没关系的,只要跟着做,把这些笔记当做你以后查询的字典.就算你会了.
13 |
14 |
15 | 精通技巧:
16 | 1.自己做一个项目,根据自己的兴趣爱好来.
17 | 2.在做的过程中,界面首先单调点无所谓.
18 | 3.当能够把功能写全后,开始研究QSS
19 | Qss我没找到视频教程只有一个国外的查询网站(可以看CSS教程,大概看看,这样就更容易理解QSS)
20 | 文字版QSS速查宝典(英文)后面我会整理一份中文的出来
22 |
23 | 小甲鱼CSS基础视频教程
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/html/python/ksrm.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | 小甲鱼python基础视频教程
5 |
6 | 马士兵python 基础 视频教程
12 | 廖雪峰pyhhon基础文字教程
14 |
15 | 学习技巧:(有事没事就百度,然后建立自己的字典)
16 | 以上教程选择性的观看觉得哪个适合你就看哪个,正常人只需要看过一遍,然后自己跟着写一遍即可,
17 | 没记住关键字和单词无所谓,只需要记住常用的比如print for if try这些其它的只需要有印象,记住首字母然后用有道笔记把单词填进去,
18 | 每天过一遍就好. 切记把自己跟着写的代码都存好,备注写的越详细越好,方便以后忘记了翻看,有了这些加上你脑子里的印象,
19 | 然后就开始写一个自己擅长,符合自己兴趣的项目,比如喜欢游戏就可以尝试写一个辅助工具,喜欢音乐,
20 | 可以写一个听歌软件(有人会说,我好像没学过这些,搞不定吧.实际上你已经学了,有了上面的学习你已经有能力遇到问题就去百度了,
21 | 百度之后你也大部分能够慢慢理解了.)
22 |
23 | 为了保护版权,我就不直接爬取内容了,直接跳转网页方便点.
24 |
--------------------------------------------------------------------------------
/html/spider/Fiddler/Analytics.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Analytics.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Analytics.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Analytics.pdb
--------------------------------------------------------------------------------
/html/spider/Fiddler/App.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/App.ico
--------------------------------------------------------------------------------
/html/spider/Fiddler/Be.Windows.Forms.HexBox.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Be.Windows.Forms.HexBox.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Countdown.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Countdown.wav
--------------------------------------------------------------------------------
/html/spider/Fiddler/EnableLoopback.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/EnableLoopback.exe
--------------------------------------------------------------------------------
/html/spider/Fiddler/EnableLoopback.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/EnableLoopback.pdb
--------------------------------------------------------------------------------
/html/spider/Fiddler/ExecAction.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/ExecAction.exe
--------------------------------------------------------------------------------
/html/spider/Fiddler/FSE2.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/FSE2.exe
--------------------------------------------------------------------------------
/html/spider/Fiddler/Fiddler.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Fiddler.exe
--------------------------------------------------------------------------------
/html/spider/Fiddler/Fiddler.exe.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/html/spider/Fiddler/Fiddler.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Fiddler.pdb
--------------------------------------------------------------------------------
/html/spider/Fiddler/ForceCPU.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/ForceCPU.exe
--------------------------------------------------------------------------------
/html/spider/Fiddler/GA.Analytics.Monitor.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/GA.Analytics.Monitor.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/GA.Analytics.Monitor.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/GA.Analytics.Monitor.pdb
--------------------------------------------------------------------------------
/html/spider/Fiddler/Help.url:
--------------------------------------------------------------------------------
1 | [{000214A0-0000-0000-C000-000000000046}]
2 | Prop3=19,2
3 | [InternetShortcut]
4 | URL=http://www.dayanzai.me/
5 | IDList=
6 |
--------------------------------------------------------------------------------
/html/spider/Fiddler/ImportExport/BasicFormats.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/ImportExport/BasicFormats.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/ImportExport/BasicFormats.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/ImportExport/BasicFormats.pdb
--------------------------------------------------------------------------------
/html/spider/Fiddler/ImportExport/VSWebTestExport.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/ImportExport/VSWebTestExport.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/ImportExport/VSWebTestExport.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/ImportExport/VSWebTestExport.pdb
--------------------------------------------------------------------------------
/html/spider/Fiddler/Inspectors/QWhale.Common.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Inspectors/QWhale.Common.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Inspectors/QWhale.Editor.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Inspectors/QWhale.Editor.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Inspectors/QWhale.Syntax.Schemes.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Inspectors/QWhale.Syntax.Schemes.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Inspectors/QWhale.Syntax.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Inspectors/QWhale.Syntax.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Inspectors/Standard.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Inspectors/Standard.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Inspectors/SyntaxView.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Inspectors/SyntaxView.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/LoadScript.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/LoadScript.wav
--------------------------------------------------------------------------------
/html/spider/Fiddler/LoadScriptError.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/LoadScriptError.wav
--------------------------------------------------------------------------------
/html/spider/Fiddler/Newtonsoft.Json.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Newtonsoft.Json.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Plugins/NetworkConnections/Telerik.NetworkConnections.Windows.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Plugins/NetworkConnections/Telerik.NetworkConnections.Windows.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/ResponseTemplates/200_FiddlerGif.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/ResponseTemplates/200_FiddlerGif.dat
--------------------------------------------------------------------------------
/html/spider/Fiddler/ResponseTemplates/200_SimpleHTML.dat:
--------------------------------------------------------------------------------
1 | HTTP/1.1 200 OK
2 | FiddlerTemplate: True
3 | Date: Fri, 25 Jan 2013 16:49:29 GMT
4 | Content-Length: 51
5 |
6 | This is a simple Fiddler-returned HTML page.
--------------------------------------------------------------------------------
/html/spider/Fiddler/ResponseTemplates/200_TransPixel.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/ResponseTemplates/200_TransPixel.dat
--------------------------------------------------------------------------------
/html/spider/Fiddler/ResponseTemplates/204_NoContent.dat:
--------------------------------------------------------------------------------
1 | HTTP/1.1 204 No Content
2 | FiddlerTemplate: True
3 | Date: Fri, 25 Jan 2013 16:49:29 GMT
4 | Content-Length: 0
5 |
6 |
--------------------------------------------------------------------------------
/html/spider/Fiddler/ResponseTemplates/302_Redirect.dat:
--------------------------------------------------------------------------------
1 | HTTP/1.1 302 Redirect
2 | FiddlerTemplate: True
3 | Date: Fri, 25 Jan 2013 16:49:29 GMT
4 | Location: http://www.fiddler2.com/sandbox/FormAndCookie.asp
5 | Content-Length: 0
6 |
7 |
--------------------------------------------------------------------------------
/html/spider/Fiddler/ResponseTemplates/303_RedirectWithGet.dat:
--------------------------------------------------------------------------------
1 | HTTP/1.1 303 Redirect Using GET
2 | FiddlerTemplate: True
3 | Date: Fri, 25 Jan 2013 16:49:29 GMT
4 | Location: http://www.fiddler2.com/sandbox/FormAndCookie.asp
5 | Content-Length: 0
6 |
7 |
--------------------------------------------------------------------------------
/html/spider/Fiddler/ResponseTemplates/304_NotModified.dat:
--------------------------------------------------------------------------------
1 | HTTP/1.1 304 Not Modified
2 | FiddlerTemplate: True
3 | Date: Fri, 25 Jan 2013 16:49:29 GMT
4 | Content-Length: 0
5 |
6 |
--------------------------------------------------------------------------------
/html/spider/Fiddler/ResponseTemplates/307_RedirectWithMethod.dat:
--------------------------------------------------------------------------------
1 | HTTP/1.1 307 Redirect using same Method
2 | FiddlerTemplate: True
3 | Date: Fri, 25 Jan 2013 16:49:29 GMT
4 | Location: http://www.fiddler2.com/sandbox/FormAndCookie.asp
5 | Content-Length: 0
6 |
7 |
--------------------------------------------------------------------------------
/html/spider/Fiddler/ResponseTemplates/401_AuthBasic.dat:
--------------------------------------------------------------------------------
1 | HTTP/1.1 401 Authentication Required
2 | FiddlerTemplate: True
3 | Date: Fri, 25 Jan 2013 16:49:29 GMT
4 | WWW-Authenticate: Basic realm="Fiddler"
5 | Content-Type: text/html
6 | Content-Length: 520
7 |
8 | Fiddler: HTTP/401 Basic Server Auth Required.
--------------------------------------------------------------------------------
/html/spider/Fiddler/ResponseTemplates/401_AuthDigest.dat:
--------------------------------------------------------------------------------
1 | HTTP/1.1 401 Authentication Required
2 | FiddlerTemplate: True
3 | Date: Fri, 25 Jan 2013 16:49:29 GMT
4 | WWW-Authenticate: Digest realm="realm@example.com",qop="auth,auth-int",nonce="dcd98b7102dd2f0e8b11d0f600bfb0c093",opaque="5ccc069c403ebaf9f0171e9517f40e41"
5 | Content-Type: text/html
6 | Content-Length: 520
7 |
8 | Fiddler: HTTP/401 Digest Server Auth Required.
--------------------------------------------------------------------------------
/html/spider/Fiddler/ResponseTemplates/403_AuthDeny.dat:
--------------------------------------------------------------------------------
1 | HTTP/1.1 403 Access Denied
2 | FiddlerTemplate: True
3 | Date: Fri, 25 Jan 2013 16:49:29 GMT
4 | Content-Length: 520
5 |
6 | Fiddler: HTTP/403 Access Denied.
--------------------------------------------------------------------------------
/html/spider/Fiddler/ResponseTemplates/404_Plain.dat:
--------------------------------------------------------------------------------
1 | HTTP/1.1 404 Not Found
2 | FiddlerTemplate: True
3 | Date: Fri, 25 Jan 2013 16:49:29 GMT
4 | Content-Type: text/html
5 | Content-Length: 520
6 |
7 | Fiddler: HTTP/404 Not Found
--------------------------------------------------------------------------------
/html/spider/Fiddler/ResponseTemplates/407_ProxyAuthBasic.dat:
--------------------------------------------------------------------------------
1 | HTTP/1.1 407 Proxy Auth Required
2 | FiddlerTemplate: True
3 | Date: Fri, 25 Jan 2013 16:49:29 GMT
4 | Proxy-Authenticate: Basic realm="Fiddler (just hit Ok)"
5 | Content-Type: text/html
6 | Content-Length: 520
7 |
8 | Fiddler: HTTP/407 Proxy Auth Required.
--------------------------------------------------------------------------------
/html/spider/Fiddler/ResponseTemplates/502_Unreachable.dat:
--------------------------------------------------------------------------------
1 | HTTP/1.1 502 Unreachable Server
2 | Date: Fri, 25 Jan 2013 16:49:29 GMT
3 | FiddlerTemplate: True
4 | Content-Type: text/html
5 | Content-Length: 520
6 |
7 | Fiddler: HTTP/502 unreachable server.
--------------------------------------------------------------------------------
/html/spider/Fiddler/RunNsisUninstallers.bat:
--------------------------------------------------------------------------------
1 | @ECHO OFF
2 | SETLOCAL EnableDelayedExpansion
3 | FOR %%G IN (%*) DO (
4 | SET uninstaller=%%G
5 | SET uninstaller_dir=%%~dpG
6 | SET uninstaller_dir_trimmed=!uninstaller_dir:~0,-1!
7 | !uninstaller! /S _?=!uninstaller_dir_trimmed!
8 | IF !ERRORLEVEL! NEQ 0 (
9 | EXIT /B 1
10 | ) ELSE (
11 | DEL /F /Q !uninstaller!
12 | )
13 | )
--------------------------------------------------------------------------------
/html/spider/Fiddler/Screenshot.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Screenshot.wav
--------------------------------------------------------------------------------
/html/spider/Fiddler/ScriptEditor/Analytics.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/ScriptEditor/Analytics.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/ScriptEditor/Analytics.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/ScriptEditor/Analytics.pdb
--------------------------------------------------------------------------------
/html/spider/Fiddler/ScriptEditor/FSE2.exe.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/html/spider/Fiddler/ScriptEditor/GA.Analytics.Monitor.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/ScriptEditor/GA.Analytics.Monitor.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/ScriptEditor/GA.Analytics.Monitor.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/ScriptEditor/GA.Analytics.Monitor.pdb
--------------------------------------------------------------------------------
/html/spider/Fiddler/ScriptEditor/QWhale.Common.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/ScriptEditor/QWhale.Common.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/ScriptEditor/QWhale.Editor.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/ScriptEditor/QWhale.Editor.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/ScriptEditor/QWhale.Syntax.Parsers.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/ScriptEditor/QWhale.Syntax.Parsers.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/ScriptEditor/QWhale.Syntax.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/ScriptEditor/QWhale.Syntax.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Scripts/FiddlerOrchestra.Addon.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Scripts/FiddlerOrchestra.Addon.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Scripts/FiddlerOrchestra.Addon.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Scripts/FiddlerOrchestra.Addon.pdb
--------------------------------------------------------------------------------
/html/spider/Fiddler/Scripts/FiddlerOrchestra.Connection.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Scripts/FiddlerOrchestra.Connection.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Scripts/FiddlerOrchestra.Protocol.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Scripts/FiddlerOrchestra.Protocol.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Scripts/FiddlerOrchestra.Utilities.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Scripts/FiddlerOrchestra.Utilities.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Scripts/QWhale.Common.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Scripts/QWhale.Common.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Scripts/QWhale.Editor.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Scripts/QWhale.Editor.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Scripts/QWhale.Syntax.Parsers.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Scripts/QWhale.Syntax.Parsers.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Scripts/QWhale.Syntax.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Scripts/QWhale.Syntax.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Scripts/RulesTab2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Scripts/RulesTab2.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Scripts/SimpleFilter.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Scripts/SimpleFilter.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Scripts/SimpleFilter.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Scripts/SimpleFilter.pdb
--------------------------------------------------------------------------------
/html/spider/Fiddler/Scripts/Timeline.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Scripts/Timeline.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Scripts/Timeline.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Scripts/Timeline.pdb
--------------------------------------------------------------------------------
/html/spider/Fiddler/Scripts/netstandard.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Scripts/netstandard.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/SetupHelper:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/SetupHelper
--------------------------------------------------------------------------------
/html/spider/Fiddler/Telerik.NetworkConnections.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Telerik.NetworkConnections.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Tools/Brotli.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Tools/Brotli.exe
--------------------------------------------------------------------------------
/html/spider/Fiddler/Tools/JXR2PNG.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Tools/JXR2PNG.exe
--------------------------------------------------------------------------------
/html/spider/Fiddler/Tools/JXR2PNG.exe.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/html/spider/Fiddler/Tools/PngDistill.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Tools/PngDistill.exe
--------------------------------------------------------------------------------
/html/spider/Fiddler/Tools/PngDistill.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Tools/PngDistill.pdb
--------------------------------------------------------------------------------
/html/spider/Fiddler/Tools/Zopfli.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Tools/Zopfli.exe
--------------------------------------------------------------------------------
/html/spider/Fiddler/Tools/dwebp.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Tools/dwebp.exe
--------------------------------------------------------------------------------
/html/spider/Fiddler/TrustCert.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/TrustCert.exe
--------------------------------------------------------------------------------
/html/spider/Fiddler/TrustCert.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/TrustCert.pdb
--------------------------------------------------------------------------------
/html/spider/Fiddler/Xceed.Compression.Formats.v5.4.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Xceed.Compression.Formats.v5.4.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Xceed.Compression.v5.4.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Xceed.Compression.v5.4.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Xceed.FileSystem.v5.4.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Xceed.FileSystem.v5.4.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/Xceed.Zip.v5.4.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/Xceed.Zip.v5.4.dll
--------------------------------------------------------------------------------
/html/spider/Fiddler/credits.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/credits.txt
--------------------------------------------------------------------------------
/html/spider/Fiddler/license.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/license.txt
--------------------------------------------------------------------------------
/html/spider/Fiddler/makecert.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/makecert.exe
--------------------------------------------------------------------------------
/html/spider/Fiddler/saz.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/spider/Fiddler/saz.ico
--------------------------------------------------------------------------------
/html/spider/ksrm.html:
--------------------------------------------------------------------------------
1 |
2 | 小甲鱼python爬虫基础视频
5 |
6 | 成都工业大学python爬虫基础视频
8 |
9 |
10 | 爬虫这东西 关系到一些具体操作,文字教程比较鸡肋
11 |
12 | 精通技巧:
13 | 1.跟着学,跟着操作 是肯定的了.然后自己想办法写一个爬虫应用,这个最好是自己感兴趣的网站,比如lol云顶的卡组,lol英雄头像资料等,遇到难题再去论坛或者百度找答案
14 |
15 | 2.多多研究浏览器的F12开发调试工具.非常感兴趣想学精的话需要学习JavaScript语言
16 |
17 | JavaScript学习资料:
18 | 尚硅谷JavaScript视频教程
20 |
21 | 黑马程序员JavaScript视频教程
23 |
24 | 廖雪峰JavaScript文字教程
26 |
27 |
28 |
--------------------------------------------------------------------------------
/html/spider/scbd.html:
--------------------------------------------------------------------------------
1 |
2 | Requests中文手册
5 | Requests 是一个简单的 Python HTTP 库。功能十分之强大,python爬虫必备神器,有了它发送请求就是轻轻松松的事了
6 |
7 | Beautiful Soup 4 中文手册
9 |
10 | Beautiful Soup 是一个可以从HTML或XML文件中提取数据的Python库.它是非常优秀的HTML/XML的解析器,是开发爬虫必不可少的工具,会帮你节省数小时甚至数天的工作时间.
11 |
12 | Scrapy爬虫框架中文手册
14 |
15 | Python开发的一个快速,高层次的屏幕抓取和web抓取的成熟框架,用于抓取web站点并从页面中提取结构化的数据。Scrapy用途广泛,可以用于数据挖掘、监测和自动化测试...
16 |
17 | Selenium中文手册
19 |
20 | Selenium是一个用于测试网站的自动化测试工具,支持各种浏览器包括Chrome、Firefox、Safari等主流界面浏览器,同时也支持phantomJS无界面浏览器,就像真正的用户在操作一样.所以只要是用户能看到的内容它就能操作
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/html/webkj/ksrm.html:
--------------------------------------------------------------------------------
1 |
2 | 老男孩Flask框架视频教程
5 |
6 | 老男孩Django框架视频教程
8 |
9 | 精通技巧:
11 | 1.跟着敲是肯定的了(不要指望自己能听完就记住,这是几乎不可能的事,所以不要介意这个事情)
12 | 2.租一个腾讯学生机服务器(用来搭建网站10块钱一个月120一年,淘宝搜)
13 | 3.有了上面的基础后,自己搭建和模仿一个网站(找个稍微简单点的),学会使用F12浏览器的调试器去复制网页的代码,然后修改成模板(有爬虫和框架基础后能懂 我啥意思)css和js文件直接复制别人网站的就可以了(因为你还不懂这些知识...直接复制吧)
14 |
15 | 4.当你成功搭建起来之后,就会有成就感了,接下来就需要自己查速查宝典,正真的做一个自己的网站了.
16 |
--------------------------------------------------------------------------------
/html/webkj/scbd.html:
--------------------------------------------------------------------------------
1 |
2 | Flask Web框架中文手册
6 | Flask是一个轻量级的Web应用框架, 使用Python编写。基于 WerkzeugWSGI工具箱和 Jinja2模板引擎。Flask保留了扩增的弹性,可以用Flask-extension加入这些功能:ORM、窗体验证工具..
7 |
8 |
9 | Django Web框架中文手册
11 |
12 | Django是Python的Web框架中的重要一员,是使用最广泛的Python web框架之一。Django的主要目的是简便、快速的开发数据库驱动的网站。使用Django可以非常快速的开发出完整的网站。
13 |
14 |
15 | Jinja2中文手册
17 | Jinja2是Python下一个被广泛应用的web模版引擎,他的设计思想来源于Django的模板引擎,并扩展了其语法和一系列强大的功能。增加了沙箱执行功能和自动转义功能,这对应用的安全性来说是非常重要的
18 |
19 |
--------------------------------------------------------------------------------
/html/win32/PyWin32.chm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/PyWin32.chm
--------------------------------------------------------------------------------
/html/win32/PyWin32.chw:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/PyWin32.chw
--------------------------------------------------------------------------------
/html/win32/WinApi.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/WinApi.txt
--------------------------------------------------------------------------------
/html/win32/apiZhuShou/API助手.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/apiZhuShou/API助手.exe
--------------------------------------------------------------------------------
/html/win32/ksrm.html:
--------------------------------------------------------------------------------
1 |
2 | 博客:可爱的黑精灵win32入门基础文字教程
5 |
6 | pywin32实现windows模拟鼠标及键盘动作
8 |
9 |
10 | 看完上方的资料后,简单的调用应该是会了,如果想要做出功能还是得多百度
11 |
12 | pywin32非常复杂,我找了很久确实是没找到全面的中文文档和教程,只有零散的博客文章
13 | 和一个官方的纯英文的手册,因为个人时间和能力有限,就帮忙整理一下零散的东西出来,尽量拼出一个入门的教程来 .有时间我会自己录一个调用的例子
15 |
16 | (pywin32属于要慢慢吸收的知识,用到了再去查,想要快速看完学会几乎是一个不可能的事情,现在有很多高级库,实现起来方法容易的多,所以这是比较底层的知识.慢慢来!)
17 |
18 |
19 |
--------------------------------------------------------------------------------
/html/win32/精易编程助手/Data/Config.ini:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/Data/Config.ini
--------------------------------------------------------------------------------
/html/win32/精易编程助手/Data/ControlIoc.ini:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/Data/ControlIoc.ini
--------------------------------------------------------------------------------
/html/win32/精易编程助手/Data/Edbug.ini:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/Data/Edbug.ini
--------------------------------------------------------------------------------
/html/win32/精易编程助手/Data/Json.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/Data/Json.txt
--------------------------------------------------------------------------------
/html/win32/精易编程助手/Data/List_UA.ini:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/Data/List_UA.ini
--------------------------------------------------------------------------------
/html/win32/精易编程助手/Data/Reg.ini:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/Data/Reg.ini
--------------------------------------------------------------------------------
/html/win32/精易编程助手/Data/db.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/Data/db.db
--------------------------------------------------------------------------------
/html/win32/精易编程助手/Data/log_url.ini:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/Data/log_url.ini
--------------------------------------------------------------------------------
/html/win32/精易编程助手/Data/web.ini:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/Data/web.ini
--------------------------------------------------------------------------------
/html/win32/精易编程助手/Data/正则源文本.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/Data/正则源文本.txt
--------------------------------------------------------------------------------
/html/win32/精易编程助手/Data/鼠标文件.cur:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/Data/鼠标文件.cur
--------------------------------------------------------------------------------
/html/win32/精易编程助手/Edbug.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/Edbug.exe
--------------------------------------------------------------------------------
/html/win32/精易编程助手/Important/DiDaGrid.ocx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/Important/DiDaGrid.ocx
--------------------------------------------------------------------------------
/html/win32/精易编程助手/Important/SkinH_EL.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/Important/SkinH_EL.dll
--------------------------------------------------------------------------------
/html/win32/精易编程助手/Important/sqlite3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/Important/sqlite3.dll
--------------------------------------------------------------------------------
/html/win32/精易编程助手/UP.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/UP.exe
--------------------------------------------------------------------------------
/html/win32/精易编程助手/WebBrowser.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/WebBrowser.exe
--------------------------------------------------------------------------------
/html/win32/精易编程助手/bootstrap/dist/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/bootstrap/dist/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/html/win32/精易编程助手/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/html/win32/精易编程助手/bootstrap/dist/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/bootstrap/dist/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/html/win32/精易编程助手/bootstrap/dist/js/npm.js:
--------------------------------------------------------------------------------
1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.
2 | require('../../js/transition.js')
3 | require('../../js/alert.js')
4 | require('../../js/button.js')
5 | require('../../js/carousel.js')
6 | require('../../js/collapse.js')
7 | require('../../js/dropdown.js')
8 | require('../../js/modal.js')
9 | require('../../js/tooltip.js')
10 | require('../../js/popover.js')
11 | require('../../js/scrollspy.js')
12 | require('../../js/tab.js')
13 | require('../../js/affix.js')
--------------------------------------------------------------------------------
/html/win32/精易编程助手/bootstrap/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/bootstrap/logo.png
--------------------------------------------------------------------------------
/html/win32/精易编程助手/gzip.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/gzip.dll
--------------------------------------------------------------------------------
/html/win32/精易编程助手/plugin/data.ini:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/plugin/data.ini
--------------------------------------------------------------------------------
/html/win32/精易编程助手/plugin/抓包修复.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/plugin/抓包修复.dll
--------------------------------------------------------------------------------
/html/win32/精易编程助手/scintilla.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/scintilla.dll
--------------------------------------------------------------------------------
/html/win32/精易编程助手/更新记录.txt:
--------------------------------------------------------------------------------
1 | _________________[V3.97 2020年1月17日]_________________
2 | 精易编程助手v3.97
3 | 一、屏幕取色
4 | 1、新增10进制和RGB互转并且支持预览;
5 | 二、工具箱
6 | 1、进制转换结果支持只复制结果;
7 | 三、编码转换
8 | 1、增加拖放文件,支持文件编码转换;
9 | 2、增加base64解码为图片;
10 | 四、网页分析
11 | 1、由原来的精易VIP模块调用转为VIP模块支持库;
12 |
13 | 精易网页助手v2.63
14 | 一、JSON解析
15 | 1、修复解析的json属性名前面有空格导致程序无响应的问题;
16 | 2、粘贴JSON原来默认自动对数据进行USC-2转码,现修改为弹窗手动选择;
17 | 二、网页调试
18 | 1、修复粘贴协议头时提交Cookie值含请求头的问题;
19 | 2、键值编辑支持URL编码、URL解码;
20 | 3、启用了自动解码时当返回的协议头标识是ISO-88509-1默认用utf8转换;
21 | 4、修复了日志记录中请求数据到调试中没有自主切换提交方式的问题;
22 | 5、设置UA信息增加新增菜单;
23 | 三、JS调试
24 | 1、修复函数定位问题;
25 | 2、修复双字节字符乱码的问题;
26 | 3、修复保存代码后无法读取的问题;
27 | _________________[V3.95 2019年10月10日]_________________
28 | 精易编程助手v3.95
29 | 1、修复调整窗口到最小限制时位置会移动的问题;
30 | 2、网页探测
31 | 2-1、元素信息,支持复制功能;
32 | 2-2、修复更改窗口大小位置问题;
33 | 2-3、修复探测边框和悬浮窗口在切换皮肤时会导致图标消失的问题;
34 | 3、正则调试
35 | 3-1、原文本中的关键字查找增加快捷键F3(寻找下一个);
36 | 3-2、新增历史记录;
37 |
38 | 网页调试助手v2.62
39 | 1、日志记录
40 | 1-1、修复了双击列表信息到请求地址中只有主机地址没有URL地址的问题;
41 | 1-2、修复了右键菜单生成代码窗口直接无响应的问题;
42 | 1-3、修复了右键菜单删除无效的问题;
43 | 2、批量发送增加了发送方式和间隔时间的功能,可在设置里的其他设置里设置;
44 | 3、提交数据、提交Cookie、提交协议头和双击时弹出的编辑框支持增删同步;
45 | _________________[V3.92 2019年8月15日]_________________
46 | 精易编程助手 v3.92
47 | 1、正则调试 - 新增“调试模式”选择,可选“精易模块、核心支持库、正则表达式支持库(Deelx版)”模式调试正则,并生成对应的易代码;
48 | 2、窗口探测 - 新增“窗口相对位置”,控件相对父窗口的位置;
49 | 3、窗口探测 - “更改”位置修改为相对父窗口;
50 | 4、窗口探测 - 修复发送SendMessageA消息返回显示;
51 | 5、UI探测 - 修复提示数组错误;
52 | 6、屏幕取色 - 修复颜色值复制失效的问题;
53 | 7、屏幕取色 - 新增RGB颜色预览;
54 |
55 |
56 | 网页调试助手 v2.61
57 | 1、优化对提交地址的判断与处理;
58 | 2、修复双击解析窗口的键名键值显示异常的BUG;
59 | 3、优化双击编辑框显示可选默认文本显示与解析窗口显示;
60 | 4、代码编辑框新增暗黑主题,自定义字体字号以及字体是否加粗
61 | 5、优化网页调试与JS调试界面布局;
62 | 6、强化“网页调试 - 提交协议头” 鼠标右键菜单功能;
63 | 7、新增“设置UA信息”窗口,自由选择PC与移动端UA信息,支持增加、编辑、删除;
64 | 8、设置UA信息自动记录以便下次访问操作,自动补全提交协议头中的UA信息;
65 | _________________[V3.9 2019年5月7日]_________________
66 | 精易编程助手v3.9
67 | 1、修复“窗口探测”更改窗口位置和大小参数颠倒的BUG;
68 | 2、修复"图标提取"单文件保存异常的BUG;
69 | 3、优化程序主窗口大小,使其正常显示组件;
70 | 4、新增“悬浮窗口”,可悬浮控制助手显示和隐藏;感谢【@福仔 】建议;
71 |
72 | 网页调试助手v2.6
73 | 1、优化“网页_访问s”访问,支持字节集返回,字节集提交,优化Gzip解压时卡死的问题
74 | 2、优化提交请求时空值自定义协议头提交丢失或报错的问题(注意:提交自定义协议头有键值为空的时候,请使用“网页_访问s”提交)
75 | 3、优化生成易代码在生成鱼刺类相关代码时的结果;
76 | 4、优化生成易代码“网页_访问s”相关代码;
77 | 5、优化网页数据Gzip压缩生成代码;
78 | 6、优化“生成易代码”生成协议头部分的代码;
79 | 7、优化“XML解析”生成树型结构图的层次;感谢【@创世魂 】反馈;
80 | 8、优化请求地址判断与补全;
81 | 9、新增“悬浮窗口”,可悬浮控制助手显示和隐藏;感谢【@福仔 】建议;
82 |
83 |
84 | _________________[V3.8 2019年3月7日]_________________
85 | 精易编程助手v3.8
86 | 一、窗口探测
87 | 1、优化窗口加载闪烁问题;
88 | 整体
89 | 1、新增“主题_经典XP”,经典是一种回忆;
90 | 2、替换更新程序,解决win10默认文件名自动设置为管理员启动的问题;
91 |
92 |
93 | 网页调试助手v2.52
94 | 一、网页调试
95 | 1、优化网页访问提交协议头的处理;
96 | 2、优化网页访问提交Cookie的处理;
97 | 3、优化易代码生成逻辑;
98 | 4、优化“网页_访问s”访问,支持字节集返回,字节集提交,优化Gzip解压时卡死的问题
99 | 5、优化提交请求时空值自定义协议头提交丢失或报错的问题(注意:提交自定义协议头有键值为空的时候,请使用“网页_访问s”提交)
100 | 6、优化生成易代码在生成鱼刺类相关代码时的结果;
101 | 整体
102 | 1、新增“主题_经典XP”,经典是一种回忆;
103 | 2、替换更新程序,解决win10默认文件名自动设置为管理员启动的问题;
104 |
105 | _________________[V3.7 2019年1月4日]_________________
106 | 精易编程助手
107 | 一、窗口探测
108 | 1、UI解析 优化窗口最小化时标记组件的显示;
109 | 2、优化解析部分组件异常崩溃的问题;
110 | 3、修复窗口探测是否只探测可视窗口的BUG;
111 | 4、优化UI解析模式,增加只解析当前鼠标位置控件;
112 | 二、屏幕取色
113 | 1、修复取色转换错误的BUG;
114 | 三、网页功能
115 | 1、优化网页调试助手运行的判断;
116 | 整体
117 | 1、优化更新提示逻辑;
118 |
119 | 网页调试助手
120 | 一、网页调试
121 | 1、新增返回协议头状态码释义,解释返回数字状态码短语、代表的含义、HTTP版本;
122 | 2、调整部分组件细节;
123 | 3、优化双击显示修改窗口的修改逻辑;
124 | 4、新增 提交协议头 鼠标右键菜单 处理协议头 将协议头中的键名首字母转换为大写;
125 | 5、优化日记窗口列表显示内容,直观查找发送日记;
126 | 6、新增“网页_访问S”超时时间设置;
127 | 7、修正“文件提交”为“文件上传”,“提交方法”为“提交方式”
128 | 8、优化“提交方式”切换提交类型时帮助提示的显示问题;
129 | 9、优化“提交地址”头部协议大小写的问题;
130 | 二、JSON解析
131 | 1、优化解析时对关键词的判断;
132 | 2、优化解析时对首路径的判断;
133 |
134 | 整体
135 | 1、优化窗口载入闪烁问题;
136 | 2、修复多开助手最小化后点击任务栏无响应的问题;
137 |
138 | _________________[V3.6 2018年10月15日]_________________
139 | 精易编程助手
140 | 一、窗口探测
141 | 1、优化生成代码窗口自适应窗口;
142 | 二、网页分析
143 | 1、修正部分组件显示异常的BUG;
144 | 三、屏幕取色
145 | 1、修复取色后转html值的错误;
146 | 2、修复因系统DPI调整导致的屏幕取色偏移问题;
147 | 四、编码转换
148 | 1、增加编码转换耗时提示;
149 | 五、其他
150 | 1、优化部分内部命令;
151 |
152 | 网页调试助手
153 | 一、网页调试
154 | 1、强化双击载入的查看修改操作窗口;
155 | ①、解析数据到编辑框与列表里,列表显示参数的数量,键名,键值,键值长度信息;
156 | ②、双击列表框可修改对应列表里的值;
157 | ③、编辑框与列表框支持实时互动编辑同步;
158 | ④、修改后关闭修改窗口即可将修改后的数据同步到被双击的编辑框;
159 | ⑤、支持带参数的请求地址,带参数的提交数据,提交cookie,提交协议头,返回cookie,返回协议头;
160 | ⑥、如果提交数据为标准的JSON格式数据将自动跳转到JSON解析;
161 | ⑦、支持鼠标右键复制键名,键值,完整一条参数,删除完整一条参数;
162 | 2、强化生成易代码;
163 | ①、支持对鱼刺系模块网页访问的代码生成,支持“WinHttpW”,“WinHttpR”,“WinInet”;
164 | ②、升级原有单文本显示为浏览器表格显示与文本显示;
165 | ③、调整生成易代码窗口的大小,控件自适应调整;
166 | 3、增加发送请求耗时提示;
167 | 二、JS调试
168 | 1、新增代码区域快捷键F5运行代码操作;
169 | 2、修复美化代码导致JS代码错误的BUG;
170 | 3、增加操作耗时提示;
171 | 三、JSON解析
172 | 1、修复美化显示导致正常JSON数据解析失败的BUG;
173 | 2、增加操作耗时提示;
174 | 四、XML解析
175 | 1、增加操作耗时提示;
176 |
177 | _________________[V3.5 2018年7月30日]_________________
178 | 精易编程助手
179 | 一、正则调试
180 | 1、新增“正则表达式支持库(Deelx版)”代码生成
181 | 二、进程管理
182 | 1、优化进程总数显示;
183 | 三、窗口探测
184 | 1、优化窗口探测与UI解析之间的切换操作;
185 | 2、优化UI解析的速度与响应;
186 |
187 | 网页调试助手
188 | [双击显示更多部分调整为可放大并修改后回置数据到源双击窗口]
189 | 一、网页调试
190 | 1、新增返回数据“URL解码”;
191 | 2、优化数据返回解析结果;
192 | 3、优化返回选项的提示;
193 | 4、优化易代码生成;
194 | 5、修复“收藏记录”“发送此封包”错误提示的BUG;
195 | 6、增加 请求耗时 与 解码耗时 显示;
196 |
197 | _________________[V3.3 2018年6月15日]_________________
198 | 编程助手
199 | 一、网页分析
200 | 1、修复操作“网页树”命令导致测试界面按钮的错误显示;
201 | 2、优化网页树解析操作,修复部分失效功能;
202 | 二、编码转换
203 | 1、优化部分编码转换速度;
204 | 三、进程管理
205 | 1、优化进程功能加载时的策略;
206 | 其他
207 | 1、优化更新模块,有更新时提示发现新版本但不更新,更人性化提示更新;
208 | 2、解决部分系统权限原因导致无法正常取出文件MD5导致更新出错的问题;
209 |
210 |
211 | Edbug
212 | 一、网页调试
213 | 1、优化图片获取功能的文字提示;
214 | 2、优化请求是请求地址的智能判断,解决误输入导致访问异常的问题;
215 | 3、优化功能信息显示,更直观的显示功能;
216 | 4、优化Gzip自动解压功能;
217 | 5、新增在 网页_访问_对象 命令下附加超时参数的功能;
218 | 6、修复日记记录窗口跟随无法停止的BUG;
219 | 7、修复“网页_访问S”下选择字节集返回时的错误提示;
220 | 8、细微调整日记记录窗口大小与跟随;
221 | 二、JSON调试
222 | 1、优化JSON数据路径解析,支持更多路径解析;
223 | 2、优化代码生成部分细节;
224 | 3、修复没有数据的情况下复制路径报错的BUG;
225 | 其他
226 | 1、优化更新模块,有更新时提示发现新版本但不更新,更人性化提示更新;
227 | 2、解决部分系统权限原因导致无法正常取出文件MD5导致更新出错的问题;
228 |
229 | _________________[V3.2 2018年4月30日]_________________
230 | 编程助手
231 | 精易编程助手
232 | 一、工具箱
233 | 1、增加“中英翻译”,支持中翻英,多语翻中;
234 | 2、修正“JSON测试”窗口自适应错误的BUG;
235 | 二、正则调试
236 | 1、新增网络URL自动编码中文;
237 |
238 | 精易网页助手
239 | 一、网页调试
240 | 1、修正提交数据自动删除空行的BUG;
241 | 2、优化表单上传文件的数据提交功能,支持表单方式的数据提交;
242 | 3、优化自动解压勾选提示;
243 | 4、返回信息 新增鼠标右键菜单“JS调试”,方便返回信息直接JS调试;
244 | 5、界面小幅调整,人性化显示功能组件;
245 | 二、JS调试
246 | 1、升级JS格式化,更好的格式化JS代码;
247 | 三、其他
248 | 1、更换火花代码编辑框插件调用方式,解决部分电脑兼容问题;
249 | 2、升级支持窗口拖动大小,记忆上次窗口使用大小和位置;
250 |
251 | 软件更新托管系统:
252 | <魔淘软件管理系统>
253 | http://www.motao.la/
254 |
255 | _________________[V3.1 2018年3月20日]_________________
256 | 编程助手
257 | 一、窗口探测
258 | 1、优化窗口探测启动速度,解决因假死窗口响应问题导致的助手加载缓慢;
259 | 二、UI探测
260 | 1、新增右键菜单“展开全部”“收缩全部”,快速展开与收缩项目以便查看项目数据;
261 | 三、正则调试
262 | 1、增加正则耗时显示,方便调试修改正则语句;
263 | 四、其他
264 | 1、优化更新检测与提示,解决部分电脑无法正常比对文件导致重复提示更新的BUG;
265 | 软件更新托管系统:http://www.motao.la/
266 | 邀请码,联系论坛 【项目部002】
267 | Edbug
268 | 一、网页调试
269 | 1、调整网页调试-批量发送-的信息提示;
270 | 2、修复网页调试-批量发送-线程池模式下的逻辑错误;
271 | 3、修复易代码生成返回错误代码的BUG;
272 | 4、优化易代码生成逻辑,修正代码生成与返回编码的错误;
273 | 5、调整基本提示为默认显示,提示基本区域的组件作用;
274 | 二、JS调试
275 | 1、增加代码区域展开的功能,鼠标移动至代码框左侧中部位置即可展开与缩放;
276 | 三、JSON调试
277 | 1、增加代码区域展开的功能,鼠标移动至代码框右侧中部位置即可展开与缩放;
278 | 2、优化对JSON数据的解析;
279 | 四、XML调试
280 | 1、增加代码区域展开的功能,鼠标移动至代码框右侧中部位置即可展开与缩放;
281 | 五、其他
282 | 1、优化部分信息提示与显示位置;
283 | 2、优化更新检测与提示,解决部分电脑无法正常比对文件导致重复提示更新的BUG;
--------------------------------------------------------------------------------
/html/win32/精易编程助手/窗口探测新功能详注.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/窗口探测新功能详注.txt
--------------------------------------------------------------------------------
/html/win32/精易编程助手/精易编程助手.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/html/win32/精易编程助手/精易编程助手.exe
--------------------------------------------------------------------------------
/logo.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/logo.ico
--------------------------------------------------------------------------------
/main.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/main.exe
--------------------------------------------------------------------------------
/main.py:
--------------------------------------------------------------------------------
1 | from PyQt5.QtWidgets import QApplication,QMainWindow
2 | from ui import wf_main
3 | from code_ui.code_main import init_window_main
4 | import sys,subprocess
5 |
6 | if __name__ == '__main__':
7 | app=QApplication(sys.argv)
8 | window_main = QMainWindow() # 主界面
9 | ui_main=wf_main.Ui_MainWindow()#实例化
10 | ui_main.setupUi(window_main)#运行里面的代码
11 | init_window_main(window_main,ui_main)#初始化和对接代码功能
12 | window_main.show()
13 | sys.exit(app.exec_())
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/main.spec:
--------------------------------------------------------------------------------
1 | # -*- mode: python ; coding: utf-8 -*-
2 |
3 | block_cipher = None
4 |
5 |
6 | a = Analysis(['main.py'],
7 | pathex=['D:\\pythonProjects\\pythonZhuShou'],
8 | binaries=[],
9 | datas=[],
10 | hiddenimports=[],
11 | hookspath=[],
12 | runtime_hooks=[],
13 | excludes=[],
14 | win_no_prefer_redirects=False,
15 | win_private_assemblies=False,
16 | cipher=block_cipher,
17 | noarchive=False)
18 | pyz = PYZ(a.pure, a.zipped_data,
19 | cipher=block_cipher)
20 | exe = EXE(pyz,
21 | a.scripts,
22 | a.binaries,
23 | a.zipfiles,
24 | a.datas,
25 | [],
26 | name='main',
27 | debug=False,
28 | bootloader_ignore_signals=False,
29 | strip=False,
30 | upx=True,
31 | upx_exclude=[],
32 | runtime_tmpdir=None,
33 | console=False , icon='logo.ico')
34 |
--------------------------------------------------------------------------------
/mainpy.spec:
--------------------------------------------------------------------------------
1 | # -*- mode: python ; coding: utf-8 -*-
2 |
3 | block_cipher = None
4 |
5 |
6 | a = Analysis(['mainpy'],
7 | pathex=['D:\\pythonProjects\\python编程助手'],
8 | binaries=[],
9 | datas=[],
10 | hiddenimports=[],
11 | hookspath=[],
12 | runtime_hooks=[],
13 | excludes=[],
14 | win_no_prefer_redirects=False,
15 | win_private_assemblies=False,
16 | cipher=block_cipher,
17 | noarchive=False)
18 | pyz = PYZ(a.pure, a.zipped_data,
19 | cipher=block_cipher)
20 | exe = EXE(pyz,
21 | a.scripts,
22 | [],
23 | exclude_binaries=True,
24 | name='mainpy',
25 | debug=False,
26 | bootloader_ignore_signals=False,
27 | strip=False,
28 | upx=True,
29 | console=False )
30 | coll = COLLECT(exe,
31 | a.binaries,
32 | a.zipfiles,
33 | a.datas,
34 | strip=False,
35 | upx=True,
36 | upx_exclude=[],
37 | name='mainpy')
38 |
--------------------------------------------------------------------------------
/ui/wf_ksrm.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 |
3 | # Form implementation generated from reading ui file 'ui/wf_ksrm.ui'
4 | #
5 | # Created by: PyQt5 UI code generator 5.15.1
6 | #
7 | # WARNING: Any manual changes made to this file will be lost when pyuic5 is
8 | # run again. Do not edit this file unless you know what you are doing.
9 |
10 |
11 | from PyQt5 import QtCore, QtGui, QtWidgets
12 |
13 |
14 | class Ui_wf_ksrm(object):
15 | def setupUi(self, wf_ksrm):
16 | wf_ksrm.setObjectName("wf_ksrm")
17 | wf_ksrm.resize(738, 398)
18 | wf_ksrm.setMinimumSize(QtCore.QSize(0, 0))
19 | wf_ksrm.setStyleSheet("QLabel{\n"
20 | "border-radius: 10px; \n"
21 | " \n"
22 | " background-color: rgba(0, 0, 0, 200);\n"
23 | "}\n"
24 | "QPushButton{\n"
25 | " border-radius: 12px; \n"
26 | " \n"
27 | " background-color: rgba(0, 0, 0, 200);\n"
28 | "}\n"
29 | "QPushButton:hover{\n"
30 | " \n"
31 | " background-color: rgba(255, 255, 127,200);\n"
32 | "}\n"
33 | "QPushButton:pressed{\n"
34 | " \n"
35 | " \n"
36 | " background-color: rgba(0, 0, 255, 200);\n"
37 | "}\n"
38 | "\n"
39 | "#bt_gb{\n"
40 | " color: rgb(255, 0, 0);\n"
41 | " \n"
42 | " font: 75 14pt \"微软雅黑\";\n"
43 | "}\n"
44 | "#bt_zxh{\n"
45 | " color: rgb(0, 170, 0);\n"
46 | " \n"
47 | " font: 75 14pt \"微软雅黑\";\n"
48 | "}")
49 | self.gridLayout = QtWidgets.QGridLayout(wf_ksrm)
50 | self.gridLayout.setContentsMargins(0, 0, 0, 0)
51 | self.gridLayout.setSpacing(0)
52 | self.gridLayout.setObjectName("gridLayout")
53 | self.horizontalLayout = QtWidgets.QHBoxLayout()
54 | self.horizontalLayout.setSpacing(0)
55 | self.horizontalLayout.setObjectName("horizontalLayout")
56 | self.lb_doc = QtWidgets.QLabel(wf_ksrm)
57 | self.lb_doc.setMinimumSize(QtCore.QSize(700, 0))
58 | self.lb_doc.setWordWrap(True)
59 | self.lb_doc.setObjectName("lb_doc")
60 | self.horizontalLayout.addWidget(self.lb_doc)
61 | self.verticalLayout = QtWidgets.QVBoxLayout()
62 | self.verticalLayout.setSpacing(0)
63 | self.verticalLayout.setObjectName("verticalLayout")
64 | self.bt_gb = QtWidgets.QPushButton(wf_ksrm)
65 | self.bt_gb.setMaximumSize(QtCore.QSize(28, 28))
66 | font = QtGui.QFont()
67 | font.setFamily("微软雅黑")
68 | font.setPointSize(14)
69 | font.setBold(False)
70 | font.setItalic(False)
71 | font.setWeight(9)
72 | self.bt_gb.setFont(font)
73 | self.bt_gb.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
74 | self.bt_gb.setObjectName("bt_gb")
75 | self.verticalLayout.addWidget(self.bt_gb)
76 | spacerItem = QtWidgets.QSpacerItem(20, 5, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Maximum)
77 | self.verticalLayout.addItem(spacerItem)
78 | self.bt_zxh = QtWidgets.QPushButton(wf_ksrm)
79 | self.bt_zxh.setMinimumSize(QtCore.QSize(28, 28))
80 | self.bt_zxh.setMaximumSize(QtCore.QSize(28, 28))
81 | self.bt_zxh.setSizeIncrement(QtCore.QSize(28, 28))
82 | font = QtGui.QFont()
83 | font.setFamily("微软雅黑")
84 | font.setPointSize(14)
85 | font.setBold(False)
86 | font.setItalic(False)
87 | font.setWeight(9)
88 | self.bt_zxh.setFont(font)
89 | self.bt_zxh.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
90 | self.bt_zxh.setObjectName("bt_zxh")
91 | self.verticalLayout.addWidget(self.bt_zxh)
92 | spacerItem1 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
93 | self.verticalLayout.addItem(spacerItem1)
94 | self.horizontalLayout.addLayout(self.verticalLayout)
95 | self.gridLayout.addLayout(self.horizontalLayout, 0, 0, 1, 1)
96 |
97 | self.retranslateUi(wf_ksrm)
98 | self.bt_gb.clicked.connect(wf_ksrm.close)
99 | self.bt_zxh.clicked.connect(wf_ksrm.showMinimized)
100 | QtCore.QMetaObject.connectSlotsByName(wf_ksrm)
101 |
102 | def retranslateUi(self, wf_ksrm):
103 | _translate = QtCore.QCoreApplication.translate
104 | wf_ksrm.setWindowTitle(_translate("wf_ksrm", "Form"))
105 | self.lb_doc.setText(_translate("wf_ksrm", "小甲鱼python基础视频教程
马士兵python 基础 视频教程
廖雪峰pyhhon基础文字教程
学习技巧:(有事没事就百度,然后建立自己的字典)
以上教程选择性的观看觉得哪个适合你就看哪个,正常人只需要看过一遍,然后自己跟着写一遍即可,没记住关键字和单词无所谓,只需要记住常用的比如print for if try这些其它的只需要有印象,记住首字母然后用有道笔记把单词填进去,每天过一遍就好. 切记把自己跟着写的代码都存好,备注写的越详细越好,方便以后忘记了翻看,有了这些加上你脑子里的印象,然后就开始写一个自己擅长,符合自己兴趣的项目,比如喜欢游戏就可以尝试写一个辅助工具,喜欢音乐,可以写一个听歌软件(有人会说,我好像没学过这些,搞不定吧.实际上你已经学了,有了上面的学习你已经有能力遇到问题就去百度了,百度之后你也大部分能够慢慢理解了.)
为了保护版权,我就不直接爬取内容了,直接跳转网页方便点.
"))
106 | self.bt_gb.setText(_translate("wf_ksrm", "X"))
107 | self.bt_zxh.setText(_translate("wf_ksrm", "━"))
108 |
--------------------------------------------------------------------------------
/ui/wf_ksrm.ui:
--------------------------------------------------------------------------------
1 |
2 |
3 | wf_ksrm
4 |
5 |
6 |
7 | 0
8 | 0
9 | 788
10 | 561
11 |
12 |
13 |
14 |
15 | 0
16 | 0
17 |
18 |
19 |
20 | Form
21 |
22 |
23 | QLabel{
24 | border-radius: 10px;
25 |
26 | background-color: rgba(0, 0, 0, 200);
27 | }
28 | QPushButton{
29 | border-radius: 12px;
30 |
31 | background-color: rgba(0, 0, 0, 200);
32 | }
33 | QPushButton:hover{
34 |
35 | background-color: rgba(255, 255, 127,200);
36 | }
37 | QPushButton:pressed{
38 |
39 |
40 | background-color: rgba(0, 0, 255, 200);
41 | }
42 |
43 | #bt_gb{
44 | color: rgb(255, 0, 0);
45 |
46 | font: 75 14pt "微软雅黑";
47 | }
48 | #bt_zxh{
49 | color: rgb(0, 170, 0);
50 |
51 | font: 75 14pt "微软雅黑";
52 | }
53 |
54 |
55 |
56 | 0
57 |
58 |
59 | 0
60 |
61 |
62 | 0
63 |
64 |
65 | 0
66 |
67 |
68 | 0
69 |
70 | -
71 |
72 |
73 | 0
74 |
75 | -
76 |
77 |
78 |
79 | 700
80 | 0
81 |
82 |
83 |
84 | <html><head/><body><p><a href="https://www.cnblogs.com/chenjy1225/p/12174889.html"><span style=" font-size:16pt; font-weight:600; text-decoration: underline; color:#ffff00;">博客:可爱的黑精灵win32入门基础文字教程</span></a></p><p><a href="https://www.php.cn/python-tutorials-227086.html"><span style=" font-size:16pt; font-weight:600; text-decoration: underline; color:#ffff00;">pywin32实现windows模拟鼠标及键盘动作</span></a></p><p><br/></p><p><span style=" color:#ff0000;">看完上方的资料后,简单的调用应该是会了,如果想要做出功能还是得多百度</span></p><p><br/></p><p><span style=" font-size:16pt; color:#ffffff;">pywin32非常复杂,我找了很久确实是没找到全面的中文文档和教程,只有零散的博客文章</span></p><p><span style=" font-size:16pt; color:#ffffff;">和一个官方的纯英文的手册,因为个人时间和能力有限,就帮忙整理一下零散的东西出来,尽量拼出一个入门的教程来 .有时间我会自己录一个调用的例子</span></p><p><span style=" font-size:16pt; color:#ffffff;">(pywin32属于要慢慢吸收的知识,用到了再去查,想要快速看完学会几乎是一个不可能的事情,现在有很多高级库,实现起来方法容易的多,所以这是比较底层的知识.慢慢来!)</span></p><p><br/></p><p><a href=".\html\win32\WinApi.txt"><span style=" font-size:16pt; font-weight:600; text-decoration: underline; color:#ffff00;">这里有一份win32Api中文名 可以用它帮助搜索</span></a></p><p><br/></p><p><br/></p></body></html>
85 |
86 |
87 | true
88 |
89 |
90 |
91 | -
92 |
93 |
94 | 0
95 |
96 | -
97 |
98 |
99 |
100 | 28
101 | 28
102 |
103 |
104 |
105 |
106 | 微软雅黑
107 | 14
108 | 9
109 | false
110 | false
111 |
112 |
113 |
114 | PointingHandCursor
115 |
116 |
117 | X
118 |
119 |
120 |
121 | -
122 |
123 |
124 | Qt::Vertical
125 |
126 |
127 | QSizePolicy::Maximum
128 |
129 |
130 |
131 | 20
132 | 5
133 |
134 |
135 |
136 |
137 | -
138 |
139 |
140 |
141 | 28
142 | 28
143 |
144 |
145 |
146 |
147 | 28
148 | 28
149 |
150 |
151 |
152 |
153 | 28
154 | 28
155 |
156 |
157 |
158 |
159 | 微软雅黑
160 | 14
161 | 9
162 | false
163 | false
164 |
165 |
166 |
167 | PointingHandCursor
168 |
169 |
170 | ━
171 |
172 |
173 |
174 | -
175 |
176 |
177 | Qt::Vertical
178 |
179 |
180 |
181 | 20
182 | 40
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 | bt_gb
197 | clicked()
198 | wf_ksrm
199 | close()
200 |
201 |
202 | 722
203 | 19
204 |
205 |
206 | 688
207 | 0
208 |
209 |
210 |
211 |
212 | bt_zxh
213 | clicked()
214 | wf_ksrm
215 | showMinimized()
216 |
217 |
218 | 716
219 | 55
220 |
221 |
222 | 701
223 | 0
224 |
225 |
226 |
227 |
228 |
229 |
--------------------------------------------------------------------------------
/说明.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luxiaolan6373/ProgrammingAssistant/9da5fae237f0137fa9678423de8f0e8d17c95eb5/说明.txt
--------------------------------------------------------------------------------