├── .gitignore ├── Designer ├── Linux │ └── plugins │ │ └── designer │ │ ├── CustomWidgets │ │ ├── PyQt Plugin Dir │ │ ├── analogclockplugin.py │ │ ├── bubbleswidgetplugin.py │ │ ├── counterlabelplugin.py │ │ ├── datetimeeditplugin.py │ │ ├── multipagewidgetplugin.py │ │ ├── pluginwidgets │ │ │ ├── __init__.py │ │ │ ├── analogclock.py │ │ │ ├── bubbleswidget.py │ │ │ ├── counterlabel.py │ │ │ ├── datetimeedit.py │ │ │ ├── multipagewidget.py │ │ │ ├── polygonwidget.py │ │ │ ├── pydemo.py │ │ │ └── pythonconsolewidget.py │ │ ├── polygonwidgetplugin.py │ │ ├── pydemoplugin.py │ │ └── pythonconsoleplugin.py │ │ ├── WebSocket Plugin Demo │ │ ├── RemoteWindow.py │ │ ├── TestUi.ui │ │ ├── WebSocketTest.ui │ │ └── WebSocketWindow.py │ │ ├── data │ │ ├── beautify-css.js │ │ ├── beautify-css.json │ │ ├── consola.ttf │ │ ├── csslint.js │ │ ├── csslint.json │ │ └── qsseditor.json │ │ ├── liblogplugin5.so │ │ ├── libmenusplugin5.so │ │ ├── libpyqtplugin5.so │ │ ├── libqsseditorplugin5.so │ │ ├── libwebsocketplugin5.so │ │ └── libworkspaceplugin5.so └── Windows │ └── plugins │ └── designer │ ├── CustomWidgets │ ├── PyQt Plugin Dir │ ├── analogclockplugin.py │ ├── bubbleswidgetplugin.py │ ├── counterlabelplugin.py │ ├── datetimeeditplugin.py │ ├── multipagewidgetplugin.py │ ├── pluginwidgets │ │ ├── __init__.py │ │ ├── analogclock.py │ │ ├── bubbleswidget.py │ │ ├── counterlabel.py │ │ ├── datetimeedit.py │ │ ├── multipagewidget.py │ │ ├── polygonwidget.py │ │ ├── pydemo.py │ │ └── pythonconsolewidget.py │ ├── polygonwidgetplugin.py │ ├── pydemoplugin.py │ └── pythonconsoleplugin.py │ ├── WebSocket Plugin Demo │ ├── RemoteWindow.py │ ├── TestUi.ui │ ├── WebSocketTest.ui │ └── WebSocketWindow.py │ ├── data │ ├── beautify-css.js │ ├── beautify-css.json │ ├── consola.ttf │ ├── csslint.js │ ├── csslint.json │ └── qsseditor.json │ ├── logplugin5.dll │ ├── menusplugin5.dll │ ├── pyqtplugin5.dll │ ├── qsseditorplugin5.dll │ ├── websocketplugin5.dll │ └── workspaceplugin5.dll ├── Python ├── Linux │ ├── local │ │ ├── bin │ │ │ ├── css-beautify │ │ │ ├── easy_install │ │ │ ├── pip3 │ │ │ ├── pylupdate5 │ │ │ ├── pyrcc5 │ │ │ ├── python3 │ │ │ ├── python3m │ │ │ ├── pyuic5 │ │ │ └── qt.conf │ │ ├── lib │ │ │ └── python3.6 │ │ │ │ ├── __future__.py │ │ │ │ ├── __phello__.foo.py │ │ │ │ ├── _bootlocale.py │ │ │ │ ├── _collections_abc.py │ │ │ │ ├── _compat_pickle.py │ │ │ │ ├── _compression.py │ │ │ │ ├── _dummy_thread.py │ │ │ │ ├── _markupbase.py │ │ │ │ ├── _osx_support.py │ │ │ │ ├── _pydecimal.py │ │ │ │ ├── _pyio.py │ │ │ │ ├── _sitebuiltins.py │ │ │ │ ├── _strptime.py │ │ │ │ ├── _sysconfigdata_dm_linux_x86_64-linux-gnu.py │ │ │ │ ├── _sysconfigdata_m_linux_x86_64-linux-gnu.py │ │ │ │ ├── _threading_local.py │ │ │ │ ├── _weakrefset.py │ │ │ │ ├── abc.py │ │ │ │ ├── aifc.py │ │ │ │ ├── antigravity.py │ │ │ │ ├── argparse.py │ │ │ │ ├── ast.py │ │ │ │ ├── asynchat.py │ │ │ │ ├── asyncio │ │ │ │ ├── __init__.py │ │ │ │ ├── base_events.py │ │ │ │ ├── base_futures.py │ │ │ │ ├── base_subprocess.py │ │ │ │ ├── base_tasks.py │ │ │ │ ├── compat.py │ │ │ │ ├── constants.py │ │ │ │ ├── coroutines.py │ │ │ │ ├── events.py │ │ │ │ ├── futures.py │ │ │ │ ├── locks.py │ │ │ │ ├── log.py │ │ │ │ ├── proactor_events.py │ │ │ │ ├── protocols.py │ │ │ │ ├── queues.py │ │ │ │ ├── selector_events.py │ │ │ │ ├── sslproto.py │ │ │ │ ├── streams.py │ │ │ │ ├── subprocess.py │ │ │ │ ├── tasks.py │ │ │ │ ├── test_utils.py │ │ │ │ ├── transports.py │ │ │ │ ├── unix_events.py │ │ │ │ ├── windows_events.py │ │ │ │ └── windows_utils.py │ │ │ │ ├── asyncore.py │ │ │ │ ├── base64.py │ │ │ │ ├── bdb.py │ │ │ │ ├── binhex.py │ │ │ │ ├── bisect.py │ │ │ │ ├── bz2.py │ │ │ │ ├── cProfile.py │ │ │ │ ├── calendar.py │ │ │ │ ├── cgi.py │ │ │ │ ├── cgitb.py │ │ │ │ ├── chunk.py │ │ │ │ ├── cmd.py │ │ │ │ ├── code.py │ │ │ │ ├── codecs.py │ │ │ │ ├── codeop.py │ │ │ │ ├── collections │ │ │ │ ├── __init__.py │ │ │ │ └── abc.py │ │ │ │ ├── colorsys.py │ │ │ │ ├── compileall.py │ │ │ │ ├── concurrent │ │ │ │ ├── __init__.py │ │ │ │ └── futures │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _base.py │ │ │ │ │ ├── process.py │ │ │ │ │ └── thread.py │ │ │ │ ├── config-3.6m-x86_64-linux-gnu │ │ │ │ ├── Makefile │ │ │ │ ├── Setup │ │ │ │ ├── Setup.config │ │ │ │ ├── Setup.local │ │ │ │ ├── config.c │ │ │ │ ├── config.c.in │ │ │ │ ├── install-sh │ │ │ │ ├── makesetup │ │ │ │ ├── python-config.py │ │ │ │ └── python.o │ │ │ │ ├── configparser.py │ │ │ │ ├── contextlib.py │ │ │ │ ├── copy.py │ │ │ │ ├── copyreg.py │ │ │ │ ├── crypt.py │ │ │ │ ├── csv.py │ │ │ │ ├── ctypes │ │ │ │ ├── __init__.py │ │ │ │ ├── _endian.py │ │ │ │ ├── macholib │ │ │ │ │ ├── README.ctypes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── dyld.py │ │ │ │ │ ├── dylib.py │ │ │ │ │ ├── fetch_macholib │ │ │ │ │ └── framework.py │ │ │ │ ├── util.py │ │ │ │ └── wintypes.py │ │ │ │ ├── curses │ │ │ │ ├── __init__.py │ │ │ │ ├── ascii.py │ │ │ │ ├── has_key.py │ │ │ │ ├── panel.py │ │ │ │ └── textpad.py │ │ │ │ ├── datetime.py │ │ │ │ ├── dbm │ │ │ │ ├── __init__.py │ │ │ │ ├── dumb.py │ │ │ │ ├── gnu.py │ │ │ │ └── ndbm.py │ │ │ │ ├── decimal.py │ │ │ │ ├── difflib.py │ │ │ │ ├── dis.py │ │ │ │ ├── distutils │ │ │ │ ├── README │ │ │ │ ├── __init__.py │ │ │ │ ├── _msvccompiler.py │ │ │ │ ├── archive_util.py │ │ │ │ ├── bcppcompiler.py │ │ │ │ ├── ccompiler.py │ │ │ │ ├── cmd.py │ │ │ │ ├── command │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bdist.py │ │ │ │ │ ├── bdist_dumb.py │ │ │ │ │ ├── bdist_msi.py │ │ │ │ │ ├── bdist_rpm.py │ │ │ │ │ ├── bdist_wininst.py │ │ │ │ │ ├── build.py │ │ │ │ │ ├── build_clib.py │ │ │ │ │ ├── build_ext.py │ │ │ │ │ ├── build_py.py │ │ │ │ │ ├── build_scripts.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── clean.py │ │ │ │ │ ├── command_template │ │ │ │ │ ├── config.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── install_data.py │ │ │ │ │ ├── install_egg_info.py │ │ │ │ │ ├── install_headers.py │ │ │ │ │ ├── install_lib.py │ │ │ │ │ ├── install_scripts.py │ │ │ │ │ ├── register.py │ │ │ │ │ ├── sdist.py │ │ │ │ │ └── upload.py │ │ │ │ ├── config.py │ │ │ │ ├── core.py │ │ │ │ ├── cygwinccompiler.py │ │ │ │ ├── debug.py │ │ │ │ ├── dep_util.py │ │ │ │ ├── dir_util.py │ │ │ │ ├── dist.py │ │ │ │ ├── errors.py │ │ │ │ ├── extension.py │ │ │ │ ├── fancy_getopt.py │ │ │ │ ├── file_util.py │ │ │ │ ├── filelist.py │ │ │ │ ├── log.py │ │ │ │ ├── msvc9compiler.py │ │ │ │ ├── msvccompiler.py │ │ │ │ ├── spawn.py │ │ │ │ ├── sysconfig.py │ │ │ │ ├── text_file.py │ │ │ │ ├── unixccompiler.py │ │ │ │ ├── util.py │ │ │ │ ├── version.py │ │ │ │ └── versionpredicate.py │ │ │ │ ├── doctest.py │ │ │ │ ├── dummy_threading.py │ │ │ │ ├── email │ │ │ │ ├── __init__.py │ │ │ │ ├── _encoded_words.py │ │ │ │ ├── _header_value_parser.py │ │ │ │ ├── _parseaddr.py │ │ │ │ ├── _policybase.py │ │ │ │ ├── architecture.rst │ │ │ │ ├── base64mime.py │ │ │ │ ├── charset.py │ │ │ │ ├── contentmanager.py │ │ │ │ ├── encoders.py │ │ │ │ ├── errors.py │ │ │ │ ├── feedparser.py │ │ │ │ ├── generator.py │ │ │ │ ├── header.py │ │ │ │ ├── headerregistry.py │ │ │ │ ├── iterators.py │ │ │ │ ├── message.py │ │ │ │ ├── mime │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── application.py │ │ │ │ │ ├── audio.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── image.py │ │ │ │ │ ├── message.py │ │ │ │ │ ├── multipart.py │ │ │ │ │ ├── nonmultipart.py │ │ │ │ │ └── text.py │ │ │ │ ├── parser.py │ │ │ │ ├── policy.py │ │ │ │ ├── quoprimime.py │ │ │ │ └── utils.py │ │ │ │ ├── encodings │ │ │ │ ├── __init__.py │ │ │ │ ├── aliases.py │ │ │ │ ├── ascii.py │ │ │ │ ├── base64_codec.py │ │ │ │ ├── big5.py │ │ │ │ ├── big5hkscs.py │ │ │ │ ├── bz2_codec.py │ │ │ │ ├── charmap.py │ │ │ │ ├── cp037.py │ │ │ │ ├── cp1006.py │ │ │ │ ├── cp1026.py │ │ │ │ ├── cp1125.py │ │ │ │ ├── cp1140.py │ │ │ │ ├── cp1250.py │ │ │ │ ├── cp1251.py │ │ │ │ ├── cp1252.py │ │ │ │ ├── cp1253.py │ │ │ │ ├── cp1254.py │ │ │ │ ├── cp1255.py │ │ │ │ ├── cp1256.py │ │ │ │ ├── cp1257.py │ │ │ │ ├── cp1258.py │ │ │ │ ├── cp273.py │ │ │ │ ├── cp424.py │ │ │ │ ├── cp437.py │ │ │ │ ├── cp500.py │ │ │ │ ├── cp65001.py │ │ │ │ ├── cp720.py │ │ │ │ ├── cp737.py │ │ │ │ ├── cp775.py │ │ │ │ ├── cp850.py │ │ │ │ ├── cp852.py │ │ │ │ ├── cp855.py │ │ │ │ ├── cp856.py │ │ │ │ ├── cp857.py │ │ │ │ ├── cp858.py │ │ │ │ ├── cp860.py │ │ │ │ ├── cp861.py │ │ │ │ ├── cp862.py │ │ │ │ ├── cp863.py │ │ │ │ ├── cp864.py │ │ │ │ ├── cp865.py │ │ │ │ ├── cp866.py │ │ │ │ ├── cp869.py │ │ │ │ ├── cp874.py │ │ │ │ ├── cp875.py │ │ │ │ ├── cp932.py │ │ │ │ ├── cp949.py │ │ │ │ ├── cp950.py │ │ │ │ ├── euc_jis_2004.py │ │ │ │ ├── euc_jisx0213.py │ │ │ │ ├── euc_jp.py │ │ │ │ ├── euc_kr.py │ │ │ │ ├── gb18030.py │ │ │ │ ├── gb2312.py │ │ │ │ ├── gbk.py │ │ │ │ ├── hex_codec.py │ │ │ │ ├── hp_roman8.py │ │ │ │ ├── hz.py │ │ │ │ ├── idna.py │ │ │ │ ├── iso2022_jp.py │ │ │ │ ├── iso2022_jp_1.py │ │ │ │ ├── iso2022_jp_2.py │ │ │ │ ├── iso2022_jp_2004.py │ │ │ │ ├── iso2022_jp_3.py │ │ │ │ ├── iso2022_jp_ext.py │ │ │ │ ├── iso2022_kr.py │ │ │ │ ├── iso8859_1.py │ │ │ │ ├── iso8859_10.py │ │ │ │ ├── iso8859_11.py │ │ │ │ ├── iso8859_13.py │ │ │ │ ├── iso8859_14.py │ │ │ │ ├── iso8859_15.py │ │ │ │ ├── iso8859_16.py │ │ │ │ ├── iso8859_2.py │ │ │ │ ├── iso8859_3.py │ │ │ │ ├── iso8859_4.py │ │ │ │ ├── iso8859_5.py │ │ │ │ ├── iso8859_6.py │ │ │ │ ├── iso8859_7.py │ │ │ │ ├── iso8859_8.py │ │ │ │ ├── iso8859_9.py │ │ │ │ ├── johab.py │ │ │ │ ├── koi8_r.py │ │ │ │ ├── koi8_t.py │ │ │ │ ├── koi8_u.py │ │ │ │ ├── kz1048.py │ │ │ │ ├── latin_1.py │ │ │ │ ├── mac_arabic.py │ │ │ │ ├── mac_centeuro.py │ │ │ │ ├── mac_croatian.py │ │ │ │ ├── mac_cyrillic.py │ │ │ │ ├── mac_farsi.py │ │ │ │ ├── mac_greek.py │ │ │ │ ├── mac_iceland.py │ │ │ │ ├── mac_latin2.py │ │ │ │ ├── mac_roman.py │ │ │ │ ├── mac_romanian.py │ │ │ │ ├── mac_turkish.py │ │ │ │ ├── mbcs.py │ │ │ │ ├── oem.py │ │ │ │ ├── palmos.py │ │ │ │ ├── ptcp154.py │ │ │ │ ├── punycode.py │ │ │ │ ├── quopri_codec.py │ │ │ │ ├── raw_unicode_escape.py │ │ │ │ ├── rot_13.py │ │ │ │ ├── shift_jis.py │ │ │ │ ├── shift_jis_2004.py │ │ │ │ ├── shift_jisx0213.py │ │ │ │ ├── tis_620.py │ │ │ │ ├── undefined.py │ │ │ │ ├── unicode_escape.py │ │ │ │ ├── unicode_internal.py │ │ │ │ ├── utf_16.py │ │ │ │ ├── utf_16_be.py │ │ │ │ ├── utf_16_le.py │ │ │ │ ├── utf_32.py │ │ │ │ ├── utf_32_be.py │ │ │ │ ├── utf_32_le.py │ │ │ │ ├── utf_7.py │ │ │ │ ├── utf_8.py │ │ │ │ ├── utf_8_sig.py │ │ │ │ ├── uu_codec.py │ │ │ │ └── zlib_codec.py │ │ │ │ ├── ensurepip │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── _uninstall.py │ │ │ │ └── rewheel │ │ │ │ │ └── __init__.py │ │ │ │ ├── enum.py │ │ │ │ ├── filecmp.py │ │ │ │ ├── fileinput.py │ │ │ │ ├── fnmatch.py │ │ │ │ ├── formatter.py │ │ │ │ ├── fractions.py │ │ │ │ ├── ftplib.py │ │ │ │ ├── functools.py │ │ │ │ ├── genericpath.py │ │ │ │ ├── getopt.py │ │ │ │ ├── getpass.py │ │ │ │ ├── gettext.py │ │ │ │ ├── glob.py │ │ │ │ ├── gzip.py │ │ │ │ ├── hashlib.py │ │ │ │ ├── heapq.py │ │ │ │ ├── hmac.py │ │ │ │ ├── html │ │ │ │ ├── __init__.py │ │ │ │ ├── entities.py │ │ │ │ └── parser.py │ │ │ │ ├── http │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── cookiejar.py │ │ │ │ ├── cookies.py │ │ │ │ └── server.py │ │ │ │ ├── imaplib.py │ │ │ │ ├── imghdr.py │ │ │ │ ├── imp.py │ │ │ │ ├── importlib │ │ │ │ ├── __init__.py │ │ │ │ ├── _bootstrap.py │ │ │ │ ├── _bootstrap_external.py │ │ │ │ ├── abc.py │ │ │ │ ├── machinery.py │ │ │ │ └── util.py │ │ │ │ ├── inspect.py │ │ │ │ ├── io.py │ │ │ │ ├── ipaddress.py │ │ │ │ ├── json │ │ │ │ ├── __init__.py │ │ │ │ ├── decoder.py │ │ │ │ ├── encoder.py │ │ │ │ ├── scanner.py │ │ │ │ └── tool.py │ │ │ │ ├── keyword.py │ │ │ │ ├── lib-dynload │ │ │ │ ├── _asyncio.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _bisect.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _blake2.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _bz2.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _codecs_cn.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _codecs_hk.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _codecs_iso2022.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _codecs_jp.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _codecs_kr.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _codecs_tw.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _crypt.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _csv.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _ctypes.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _curses.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _curses_panel.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _datetime.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _dbm.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _decimal.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _elementtree.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _gdbm.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _hashlib.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _heapq.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _json.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _lsprof.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _lzma.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _md5.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _multibytecodec.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _multiprocessing.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _opcode.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _pickle.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _posixsubprocess.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _random.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _sha1.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _sha256.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _sha3.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _sha512.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _socket.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _sqlite3.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _ssl.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _struct.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── _testmultiphase.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── array.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── audioop.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── binascii.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── cmath.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── fcntl.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── grp.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── math.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── mmap.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── nis.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── ossaudiodev.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── parser.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── pyexpat.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── readline.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── resource.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── select.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── spwd.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── syslog.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── termios.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── unicodedata.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── xxlimited.cpython-36m-x86_64-linux-gnu.so │ │ │ │ └── zlib.cpython-36m-x86_64-linux-gnu.so │ │ │ │ ├── lib2to3 │ │ │ │ ├── Grammar.txt │ │ │ │ ├── Grammar3.6.8.final.0.pickle │ │ │ │ ├── PatternGrammar.txt │ │ │ │ ├── PatternGrammar3.6.8.final.0.pickle │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── btm_matcher.py │ │ │ │ ├── btm_utils.py │ │ │ │ ├── fixer_base.py │ │ │ │ ├── fixer_util.py │ │ │ │ ├── fixes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── fix_apply.py │ │ │ │ │ ├── fix_asserts.py │ │ │ │ │ ├── fix_basestring.py │ │ │ │ │ ├── fix_buffer.py │ │ │ │ │ ├── fix_dict.py │ │ │ │ │ ├── fix_except.py │ │ │ │ │ ├── fix_exec.py │ │ │ │ │ ├── fix_execfile.py │ │ │ │ │ ├── fix_exitfunc.py │ │ │ │ │ ├── fix_filter.py │ │ │ │ │ ├── fix_funcattrs.py │ │ │ │ │ ├── fix_future.py │ │ │ │ │ ├── fix_getcwdu.py │ │ │ │ │ ├── fix_has_key.py │ │ │ │ │ ├── fix_idioms.py │ │ │ │ │ ├── fix_import.py │ │ │ │ │ ├── fix_imports.py │ │ │ │ │ ├── fix_imports2.py │ │ │ │ │ ├── fix_input.py │ │ │ │ │ ├── fix_intern.py │ │ │ │ │ ├── fix_isinstance.py │ │ │ │ │ ├── fix_itertools.py │ │ │ │ │ ├── fix_itertools_imports.py │ │ │ │ │ ├── fix_long.py │ │ │ │ │ ├── fix_map.py │ │ │ │ │ ├── fix_metaclass.py │ │ │ │ │ ├── fix_methodattrs.py │ │ │ │ │ ├── fix_ne.py │ │ │ │ │ ├── fix_next.py │ │ │ │ │ ├── fix_nonzero.py │ │ │ │ │ ├── fix_numliterals.py │ │ │ │ │ ├── fix_operator.py │ │ │ │ │ ├── fix_paren.py │ │ │ │ │ ├── fix_print.py │ │ │ │ │ ├── fix_raise.py │ │ │ │ │ ├── fix_raw_input.py │ │ │ │ │ ├── fix_reduce.py │ │ │ │ │ ├── fix_reload.py │ │ │ │ │ ├── fix_renames.py │ │ │ │ │ ├── fix_repr.py │ │ │ │ │ ├── fix_set_literal.py │ │ │ │ │ ├── fix_standarderror.py │ │ │ │ │ ├── fix_sys_exc.py │ │ │ │ │ ├── fix_throw.py │ │ │ │ │ ├── fix_tuple_params.py │ │ │ │ │ ├── fix_types.py │ │ │ │ │ ├── fix_unicode.py │ │ │ │ │ ├── fix_urllib.py │ │ │ │ │ ├── fix_ws_comma.py │ │ │ │ │ ├── fix_xrange.py │ │ │ │ │ ├── fix_xreadlines.py │ │ │ │ │ └── fix_zip.py │ │ │ │ ├── main.py │ │ │ │ ├── patcomp.py │ │ │ │ ├── pgen2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── conv.py │ │ │ │ │ ├── driver.py │ │ │ │ │ ├── grammar.py │ │ │ │ │ ├── literals.py │ │ │ │ │ ├── parse.py │ │ │ │ │ ├── pgen.py │ │ │ │ │ ├── token.py │ │ │ │ │ └── tokenize.py │ │ │ │ ├── pygram.py │ │ │ │ ├── pytree.py │ │ │ │ └── refactor.py │ │ │ │ ├── linecache.py │ │ │ │ ├── locale.py │ │ │ │ ├── logging │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ └── handlers.py │ │ │ │ ├── lzma.py │ │ │ │ ├── macpath.py │ │ │ │ ├── macurl2path.py │ │ │ │ ├── mailbox.py │ │ │ │ ├── mailcap.py │ │ │ │ ├── mimetypes.py │ │ │ │ ├── modulefinder.py │ │ │ │ ├── multiprocessing │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── context.py │ │ │ │ ├── dummy │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── connection.py │ │ │ │ ├── forkserver.py │ │ │ │ ├── heap.py │ │ │ │ ├── managers.py │ │ │ │ ├── pool.py │ │ │ │ ├── popen_fork.py │ │ │ │ ├── popen_forkserver.py │ │ │ │ ├── popen_spawn_posix.py │ │ │ │ ├── popen_spawn_win32.py │ │ │ │ ├── process.py │ │ │ │ ├── queues.py │ │ │ │ ├── reduction.py │ │ │ │ ├── resource_sharer.py │ │ │ │ ├── semaphore_tracker.py │ │ │ │ ├── sharedctypes.py │ │ │ │ ├── spawn.py │ │ │ │ ├── synchronize.py │ │ │ │ └── util.py │ │ │ │ ├── netrc.py │ │ │ │ ├── nntplib.py │ │ │ │ ├── ntpath.py │ │ │ │ ├── nturl2path.py │ │ │ │ ├── numbers.py │ │ │ │ ├── opcode.py │ │ │ │ ├── operator.py │ │ │ │ ├── optparse.py │ │ │ │ ├── os.py │ │ │ │ ├── pathlib.py │ │ │ │ ├── pdb.py │ │ │ │ ├── pickle.py │ │ │ │ ├── pickletools.py │ │ │ │ ├── pipes.py │ │ │ │ ├── pkgutil.py │ │ │ │ ├── platform.py │ │ │ │ ├── plistlib.py │ │ │ │ ├── poplib.py │ │ │ │ ├── posixpath.py │ │ │ │ ├── pprint.py │ │ │ │ ├── profile.py │ │ │ │ ├── pstats.py │ │ │ │ ├── pty.py │ │ │ │ ├── py_compile.py │ │ │ │ ├── pyclbr.py │ │ │ │ ├── pydoc.py │ │ │ │ ├── pydoc_data │ │ │ │ ├── __init__.py │ │ │ │ ├── _pydoc.css │ │ │ │ └── topics.py │ │ │ │ ├── queue.py │ │ │ │ ├── quopri.py │ │ │ │ ├── random.py │ │ │ │ ├── re.py │ │ │ │ ├── reprlib.py │ │ │ │ ├── rlcompleter.py │ │ │ │ ├── runpy.py │ │ │ │ ├── sched.py │ │ │ │ ├── secrets.py │ │ │ │ ├── selectors.py │ │ │ │ ├── shelve.py │ │ │ │ ├── shlex.py │ │ │ │ ├── shutil.py │ │ │ │ ├── signal.py │ │ │ │ ├── site-packages │ │ │ │ ├── Pygments-2.7.1.dist-info │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── INSTALLER │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── METADATA │ │ │ │ │ ├── RECORD │ │ │ │ │ ├── REQUESTED │ │ │ │ │ ├── WHEEL │ │ │ │ │ ├── entry_points.txt │ │ │ │ │ └── top_level.txt │ │ │ │ ├── README.txt │ │ │ │ ├── _distutils_hack │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── override.py │ │ │ │ ├── css_beautify-1.10.3.dist-info │ │ │ │ │ ├── INSTALLER │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── METADATA │ │ │ │ │ ├── RECORD │ │ │ │ │ ├── REQUESTED │ │ │ │ │ ├── WHEEL │ │ │ │ │ ├── entry_points.txt │ │ │ │ │ └── top_level.txt │ │ │ │ ├── cssbeautifier │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __version__.py │ │ │ │ │ ├── beautifier.py │ │ │ │ │ ├── directives.py │ │ │ │ │ ├── inputscanner.py │ │ │ │ │ ├── options.py │ │ │ │ │ └── output.py │ │ │ │ ├── distutils-precedence.pth │ │ │ │ ├── easy_install.py │ │ │ │ ├── pip-20.2.2.dist-info │ │ │ │ │ ├── INSTALLER │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── METADATA │ │ │ │ │ ├── RECORD │ │ │ │ │ ├── WHEEL │ │ │ │ │ ├── entry_points.txt │ │ │ │ │ └── top_level.txt │ │ │ │ ├── pip │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── _internal │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── build_env.py │ │ │ │ │ │ ├── cache.py │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ │ │ ├── base_command.py │ │ │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ │ │ ├── command_context.py │ │ │ │ │ │ │ ├── main.py │ │ │ │ │ │ │ ├── main_parser.py │ │ │ │ │ │ │ ├── parser.py │ │ │ │ │ │ │ ├── progress_bars.py │ │ │ │ │ │ │ ├── req_command.py │ │ │ │ │ │ │ ├── spinners.py │ │ │ │ │ │ │ └── status_codes.py │ │ │ │ │ │ ├── commands │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── cache.py │ │ │ │ │ │ │ ├── check.py │ │ │ │ │ │ │ ├── completion.py │ │ │ │ │ │ │ ├── configuration.py │ │ │ │ │ │ │ ├── debug.py │ │ │ │ │ │ │ ├── download.py │ │ │ │ │ │ │ ├── freeze.py │ │ │ │ │ │ │ ├── hash.py │ │ │ │ │ │ │ ├── help.py │ │ │ │ │ │ │ ├── install.py │ │ │ │ │ │ │ ├── list.py │ │ │ │ │ │ │ ├── search.py │ │ │ │ │ │ │ ├── show.py │ │ │ │ │ │ │ ├── uninstall.py │ │ │ │ │ │ │ └── wheel.py │ │ │ │ │ │ ├── configuration.py │ │ │ │ │ │ ├── distributions │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── installed.py │ │ │ │ │ │ │ ├── sdist.py │ │ │ │ │ │ │ └── wheel.py │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ ├── index │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── collector.py │ │ │ │ │ │ │ └── package_finder.py │ │ │ │ │ │ ├── legacy_resolve.py │ │ │ │ │ │ ├── locations.py │ │ │ │ │ │ ├── main.py │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── candidate.py │ │ │ │ │ │ │ ├── direct_url.py │ │ │ │ │ │ │ ├── format_control.py │ │ │ │ │ │ │ ├── index.py │ │ │ │ │ │ │ ├── link.py │ │ │ │ │ │ │ ├── scheme.py │ │ │ │ │ │ │ ├── search_scope.py │ │ │ │ │ │ │ ├── selection_prefs.py │ │ │ │ │ │ │ ├── target_python.py │ │ │ │ │ │ │ └── wheel.py │ │ │ │ │ │ ├── network │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── auth.py │ │ │ │ │ │ │ ├── cache.py │ │ │ │ │ │ │ ├── download.py │ │ │ │ │ │ │ ├── lazy_wheel.py │ │ │ │ │ │ │ ├── session.py │ │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ │ └── xmlrpc.py │ │ │ │ │ │ ├── operations │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ │ │ ├── metadata_legacy.py │ │ │ │ │ │ │ │ ├── wheel.py │ │ │ │ │ │ │ │ └── wheel_legacy.py │ │ │ │ │ │ │ ├── check.py │ │ │ │ │ │ │ ├── freeze.py │ │ │ │ │ │ │ ├── install │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ │ │ │ ├── legacy.py │ │ │ │ │ │ │ │ └── wheel.py │ │ │ │ │ │ │ └── prepare.py │ │ │ │ │ │ ├── pep425tags.py │ │ │ │ │ │ ├── pyproject.py │ │ │ │ │ │ ├── req │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── constructors.py │ │ │ │ │ │ │ ├── req_file.py │ │ │ │ │ │ │ ├── req_install.py │ │ │ │ │ │ │ ├── req_set.py │ │ │ │ │ │ │ ├── req_tracker.py │ │ │ │ │ │ │ └── req_uninstall.py │ │ │ │ │ │ ├── resolution │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── legacy │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ └── resolver.py │ │ │ │ │ │ │ └── resolvelib │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ │ ├── candidates.py │ │ │ │ │ │ │ │ ├── factory.py │ │ │ │ │ │ │ │ ├── provider.py │ │ │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ │ │ └── resolver.py │ │ │ │ │ │ ├── self_outdated_check.py │ │ │ │ │ │ ├── utils │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── appdirs.py │ │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ │ ├── compatibility_tags.py │ │ │ │ │ │ │ ├── datetime.py │ │ │ │ │ │ │ ├── deprecation.py │ │ │ │ │ │ │ ├── direct_url_helpers.py │ │ │ │ │ │ │ ├── distutils_args.py │ │ │ │ │ │ │ ├── encoding.py │ │ │ │ │ │ │ ├── entrypoints.py │ │ │ │ │ │ │ ├── filesystem.py │ │ │ │ │ │ │ ├── filetypes.py │ │ │ │ │ │ │ ├── glibc.py │ │ │ │ │ │ │ ├── hashes.py │ │ │ │ │ │ │ ├── inject_securetransport.py │ │ │ │ │ │ │ ├── logging.py │ │ │ │ │ │ │ ├── marker_files.py │ │ │ │ │ │ │ ├── misc.py │ │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ │ ├── packaging.py │ │ │ │ │ │ │ ├── parallel.py │ │ │ │ │ │ │ ├── pkg_resources.py │ │ │ │ │ │ │ ├── setuptools_build.py │ │ │ │ │ │ │ ├── subprocess.py │ │ │ │ │ │ │ ├── temp_dir.py │ │ │ │ │ │ │ ├── typing.py │ │ │ │ │ │ │ ├── ui.py │ │ │ │ │ │ │ ├── unpacking.py │ │ │ │ │ │ │ ├── urls.py │ │ │ │ │ │ │ ├── virtualenv.py │ │ │ │ │ │ │ └── wheel.py │ │ │ │ │ │ ├── vcs │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── bazaar.py │ │ │ │ │ │ │ ├── git.py │ │ │ │ │ │ │ ├── mercurial.py │ │ │ │ │ │ │ ├── subversion.py │ │ │ │ │ │ │ └── versioncontrol.py │ │ │ │ │ │ └── wheel_builder.py │ │ │ │ │ └── _vendor │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── appdirs.py │ │ │ │ │ │ ├── cachecontrol │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _cmd.py │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ ├── cache.py │ │ │ │ │ │ ├── caches │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── file_cache.py │ │ │ │ │ │ │ └── redis_cache.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── controller.py │ │ │ │ │ │ ├── filewrapper.py │ │ │ │ │ │ ├── heuristics.py │ │ │ │ │ │ ├── serialize.py │ │ │ │ │ │ └── wrapper.py │ │ │ │ │ │ ├── certifi │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __main__.py │ │ │ │ │ │ ├── cacert.pem │ │ │ │ │ │ └── core.py │ │ │ │ │ │ ├── chardet │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── big5freq.py │ │ │ │ │ │ ├── big5prober.py │ │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── chardetect.py │ │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── cp949prober.py │ │ │ │ │ │ ├── enums.py │ │ │ │ │ │ ├── escprober.py │ │ │ │ │ │ ├── escsm.py │ │ │ │ │ │ ├── eucjpprober.py │ │ │ │ │ │ ├── euckrfreq.py │ │ │ │ │ │ ├── euckrprober.py │ │ │ │ │ │ ├── euctwfreq.py │ │ │ │ │ │ ├── euctwprober.py │ │ │ │ │ │ ├── gb2312freq.py │ │ │ │ │ │ ├── gb2312prober.py │ │ │ │ │ │ ├── hebrewprober.py │ │ │ │ │ │ ├── jisfreq.py │ │ │ │ │ │ ├── jpcntx.py │ │ │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ │ │ ├── langgreekmodel.py │ │ │ │ │ │ ├── langhebrewmodel.py │ │ │ │ │ │ ├── langhungarianmodel.py │ │ │ │ │ │ ├── langthaimodel.py │ │ │ │ │ │ ├── langturkishmodel.py │ │ │ │ │ │ ├── latin1prober.py │ │ │ │ │ │ ├── mbcharsetprober.py │ │ │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ │ │ ├── mbcssm.py │ │ │ │ │ │ ├── sbcharsetprober.py │ │ │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ │ │ ├── sjisprober.py │ │ │ │ │ │ ├── universaldetector.py │ │ │ │ │ │ ├── utf8prober.py │ │ │ │ │ │ └── version.py │ │ │ │ │ │ ├── colorama │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── ansi.py │ │ │ │ │ │ ├── ansitowin32.py │ │ │ │ │ │ ├── initialise.py │ │ │ │ │ │ ├── win32.py │ │ │ │ │ │ └── winterm.py │ │ │ │ │ │ ├── contextlib2.py │ │ │ │ │ │ ├── distlib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _backport │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── misc.py │ │ │ │ │ │ │ ├── shutil.py │ │ │ │ │ │ │ ├── sysconfig.cfg │ │ │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ │ │ └── tarfile.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── database.py │ │ │ │ │ │ ├── index.py │ │ │ │ │ │ ├── locators.py │ │ │ │ │ │ ├── manifest.py │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ ├── resources.py │ │ │ │ │ │ ├── scripts.py │ │ │ │ │ │ ├── t32.exe │ │ │ │ │ │ ├── t64.exe │ │ │ │ │ │ ├── util.py │ │ │ │ │ │ ├── version.py │ │ │ │ │ │ ├── w32.exe │ │ │ │ │ │ ├── w64.exe │ │ │ │ │ │ └── wheel.py │ │ │ │ │ │ ├── distro.py │ │ │ │ │ │ ├── html5lib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _ihatexml.py │ │ │ │ │ │ ├── _inputstream.py │ │ │ │ │ │ ├── _tokenizer.py │ │ │ │ │ │ ├── _trie │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ │ └── py.py │ │ │ │ │ │ ├── _utils.py │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ │ │ ├── lint.py │ │ │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ │ │ └── whitespace.py │ │ │ │ │ │ ├── html5parser.py │ │ │ │ │ │ ├── serializer.py │ │ │ │ │ │ ├── treeadapters │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── genshi.py │ │ │ │ │ │ │ └── sax.py │ │ │ │ │ │ ├── treebuilders │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ │ └── etree_lxml.py │ │ │ │ │ │ └── treewalkers │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ │ │ └── genshi.py │ │ │ │ │ │ ├── idna │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── codec.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── core.py │ │ │ │ │ │ ├── idnadata.py │ │ │ │ │ │ ├── intranges.py │ │ │ │ │ │ ├── package_data.py │ │ │ │ │ │ └── uts46data.py │ │ │ │ │ │ ├── ipaddress.py │ │ │ │ │ │ ├── msgpack │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _version.py │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ ├── ext.py │ │ │ │ │ │ └── fallback.py │ │ │ │ │ │ ├── packaging │ │ │ │ │ │ ├── __about__.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ ├── _structures.py │ │ │ │ │ │ ├── _typing.py │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ ├── specifiers.py │ │ │ │ │ │ ├── tags.py │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ └── version.py │ │ │ │ │ │ ├── pep517 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _in_process.py │ │ │ │ │ │ ├── build.py │ │ │ │ │ │ ├── check.py │ │ │ │ │ │ ├── colorlog.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── dirtools.py │ │ │ │ │ │ ├── envbuild.py │ │ │ │ │ │ ├── meta.py │ │ │ │ │ │ └── wrappers.py │ │ │ │ │ │ ├── pkg_resources │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── py31compat.py │ │ │ │ │ │ ├── progress │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── bar.py │ │ │ │ │ │ ├── counter.py │ │ │ │ │ │ └── spinner.py │ │ │ │ │ │ ├── pyparsing.py │ │ │ │ │ │ ├── pytoml │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── core.py │ │ │ │ │ │ ├── parser.py │ │ │ │ │ │ ├── test.py │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ └── writer.py │ │ │ │ │ │ ├── requests │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __version__.py │ │ │ │ │ │ ├── _internal_utils.py │ │ │ │ │ │ ├── adapters.py │ │ │ │ │ │ ├── api.py │ │ │ │ │ │ ├── auth.py │ │ │ │ │ │ ├── certs.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── cookies.py │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ ├── help.py │ │ │ │ │ │ ├── hooks.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── packages.py │ │ │ │ │ │ ├── sessions.py │ │ │ │ │ │ ├── status_codes.py │ │ │ │ │ │ ├── structures.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ │ ├── resolvelib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── compat │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── collections_abc.py │ │ │ │ │ │ ├── providers.py │ │ │ │ │ │ ├── reporters.py │ │ │ │ │ │ ├── resolvers.py │ │ │ │ │ │ └── structs.py │ │ │ │ │ │ ├── retrying.py │ │ │ │ │ │ ├── six.py │ │ │ │ │ │ ├── toml │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── common.py │ │ │ │ │ │ ├── decoder.py │ │ │ │ │ │ ├── encoder.py │ │ │ │ │ │ ├── ordered.py │ │ │ │ │ │ └── tz.py │ │ │ │ │ │ ├── urllib3 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _collections.py │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ │ ├── contrib │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ │ │ └── low_level.py │ │ │ │ │ │ │ ├── appengine.py │ │ │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ │ │ ├── securetransport.py │ │ │ │ │ │ │ └── socks.py │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ ├── filepost.py │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── backports │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ └── makefile.py │ │ │ │ │ │ │ ├── six.py │ │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ └── _implementation.py │ │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ │ ├── queue.py │ │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ │ ├── retry.py │ │ │ │ │ │ │ ├── ssl_.py │ │ │ │ │ │ │ ├── timeout.py │ │ │ │ │ │ │ ├── url.py │ │ │ │ │ │ │ └── wait.py │ │ │ │ │ │ ├── vendor.txt │ │ │ │ │ │ └── webencodings │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── labels.py │ │ │ │ │ │ ├── mklabels.py │ │ │ │ │ │ ├── tests.py │ │ │ │ │ │ └── x_user_defined.py │ │ │ │ ├── pkg_resources │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _vendor │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── appdirs.py │ │ │ │ │ │ ├── packaging │ │ │ │ │ │ │ ├── __about__.py │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ │ ├── _structures.py │ │ │ │ │ │ │ ├── _typing.py │ │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ │ ├── specifiers.py │ │ │ │ │ │ │ ├── tags.py │ │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ │ └── version.py │ │ │ │ │ │ └── pyparsing.py │ │ │ │ │ ├── extern │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── py31compat.py │ │ │ │ ├── pygments │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── cmdline.py │ │ │ │ │ ├── console.py │ │ │ │ │ ├── filter.py │ │ │ │ │ ├── filters │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── formatters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _mapping.py │ │ │ │ │ │ ├── bbcode.py │ │ │ │ │ │ ├── html.py │ │ │ │ │ │ ├── img.py │ │ │ │ │ │ ├── irc.py │ │ │ │ │ │ ├── latex.py │ │ │ │ │ │ ├── other.py │ │ │ │ │ │ ├── rtf.py │ │ │ │ │ │ ├── svg.py │ │ │ │ │ │ ├── terminal.py │ │ │ │ │ │ └── terminal256.py │ │ │ │ │ ├── lexer.py │ │ │ │ │ ├── lexers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _asy_builtins.py │ │ │ │ │ │ ├── _cl_builtins.py │ │ │ │ │ │ ├── _cocoa_builtins.py │ │ │ │ │ │ ├── _csound_builtins.py │ │ │ │ │ │ ├── _lasso_builtins.py │ │ │ │ │ │ ├── _lua_builtins.py │ │ │ │ │ │ ├── _mapping.py │ │ │ │ │ │ ├── _mql_builtins.py │ │ │ │ │ │ ├── _mysql_builtins.py │ │ │ │ │ │ ├── _openedge_builtins.py │ │ │ │ │ │ ├── _php_builtins.py │ │ │ │ │ │ ├── _postgres_builtins.py │ │ │ │ │ │ ├── _scilab_builtins.py │ │ │ │ │ │ ├── _sourcemod_builtins.py │ │ │ │ │ │ ├── _stan_builtins.py │ │ │ │ │ │ ├── _stata_builtins.py │ │ │ │ │ │ ├── _tsql_builtins.py │ │ │ │ │ │ ├── _usd_builtins.py │ │ │ │ │ │ ├── _vbscript_builtins.py │ │ │ │ │ │ ├── _vim_builtins.py │ │ │ │ │ │ ├── actionscript.py │ │ │ │ │ │ ├── agile.py │ │ │ │ │ │ ├── algebra.py │ │ │ │ │ │ ├── ambient.py │ │ │ │ │ │ ├── ampl.py │ │ │ │ │ │ ├── apl.py │ │ │ │ │ │ ├── archetype.py │ │ │ │ │ │ ├── arrow.py │ │ │ │ │ │ ├── asm.py │ │ │ │ │ │ ├── automation.py │ │ │ │ │ │ ├── bare.py │ │ │ │ │ │ ├── basic.py │ │ │ │ │ │ ├── bibtex.py │ │ │ │ │ │ ├── boa.py │ │ │ │ │ │ ├── business.py │ │ │ │ │ │ ├── c_cpp.py │ │ │ │ │ │ ├── c_like.py │ │ │ │ │ │ ├── capnproto.py │ │ │ │ │ │ ├── chapel.py │ │ │ │ │ │ ├── clean.py │ │ │ │ │ │ ├── compiled.py │ │ │ │ │ │ ├── configs.py │ │ │ │ │ │ ├── console.py │ │ │ │ │ │ ├── crystal.py │ │ │ │ │ │ ├── csound.py │ │ │ │ │ │ ├── css.py │ │ │ │ │ │ ├── d.py │ │ │ │ │ │ ├── dalvik.py │ │ │ │ │ │ ├── data.py │ │ │ │ │ │ ├── devicetree.py │ │ │ │ │ │ ├── diff.py │ │ │ │ │ │ ├── dotnet.py │ │ │ │ │ │ ├── dsls.py │ │ │ │ │ │ ├── dylan.py │ │ │ │ │ │ ├── ecl.py │ │ │ │ │ │ ├── eiffel.py │ │ │ │ │ │ ├── elm.py │ │ │ │ │ │ ├── email.py │ │ │ │ │ │ ├── erlang.py │ │ │ │ │ │ ├── esoteric.py │ │ │ │ │ │ ├── ezhil.py │ │ │ │ │ │ ├── factor.py │ │ │ │ │ │ ├── fantom.py │ │ │ │ │ │ ├── felix.py │ │ │ │ │ │ ├── floscript.py │ │ │ │ │ │ ├── forth.py │ │ │ │ │ │ ├── fortran.py │ │ │ │ │ │ ├── foxpro.py │ │ │ │ │ │ ├── freefem.py │ │ │ │ │ │ ├── functional.py │ │ │ │ │ │ ├── gdscript.py │ │ │ │ │ │ ├── go.py │ │ │ │ │ │ ├── grammar_notation.py │ │ │ │ │ │ ├── graph.py │ │ │ │ │ │ ├── graphics.py │ │ │ │ │ │ ├── haskell.py │ │ │ │ │ │ ├── haxe.py │ │ │ │ │ │ ├── hdl.py │ │ │ │ │ │ ├── hexdump.py │ │ │ │ │ │ ├── html.py │ │ │ │ │ │ ├── idl.py │ │ │ │ │ │ ├── igor.py │ │ │ │ │ │ ├── inferno.py │ │ │ │ │ │ ├── installers.py │ │ │ │ │ │ ├── int_fiction.py │ │ │ │ │ │ ├── iolang.py │ │ │ │ │ │ ├── j.py │ │ │ │ │ │ ├── javascript.py │ │ │ │ │ │ ├── julia.py │ │ │ │ │ │ ├── jvm.py │ │ │ │ │ │ ├── lisp.py │ │ │ │ │ │ ├── make.py │ │ │ │ │ │ ├── markup.py │ │ │ │ │ │ ├── math.py │ │ │ │ │ │ ├── matlab.py │ │ │ │ │ │ ├── mime.py │ │ │ │ │ │ ├── ml.py │ │ │ │ │ │ ├── modeling.py │ │ │ │ │ │ ├── modula2.py │ │ │ │ │ │ ├── monte.py │ │ │ │ │ │ ├── mosel.py │ │ │ │ │ │ ├── ncl.py │ │ │ │ │ │ ├── nimrod.py │ │ │ │ │ │ ├── nit.py │ │ │ │ │ │ ├── nix.py │ │ │ │ │ │ ├── oberon.py │ │ │ │ │ │ ├── objective.py │ │ │ │ │ │ ├── ooc.py │ │ │ │ │ │ ├── other.py │ │ │ │ │ │ ├── parasail.py │ │ │ │ │ │ ├── parsers.py │ │ │ │ │ │ ├── pascal.py │ │ │ │ │ │ ├── pawn.py │ │ │ │ │ │ ├── perl.py │ │ │ │ │ │ ├── php.py │ │ │ │ │ │ ├── pointless.py │ │ │ │ │ │ ├── pony.py │ │ │ │ │ │ ├── praat.py │ │ │ │ │ │ ├── prolog.py │ │ │ │ │ │ ├── promql.py │ │ │ │ │ │ ├── python.py │ │ │ │ │ │ ├── qvt.py │ │ │ │ │ │ ├── r.py │ │ │ │ │ │ ├── rdf.py │ │ │ │ │ │ ├── rebol.py │ │ │ │ │ │ ├── resource.py │ │ │ │ │ │ ├── ride.py │ │ │ │ │ │ ├── rnc.py │ │ │ │ │ │ ├── roboconf.py │ │ │ │ │ │ ├── robotframework.py │ │ │ │ │ │ ├── ruby.py │ │ │ │ │ │ ├── rust.py │ │ │ │ │ │ ├── sas.py │ │ │ │ │ │ ├── scdoc.py │ │ │ │ │ │ ├── scripting.py │ │ │ │ │ │ ├── sgf.py │ │ │ │ │ │ ├── shell.py │ │ │ │ │ │ ├── sieve.py │ │ │ │ │ │ ├── slash.py │ │ │ │ │ │ ├── smalltalk.py │ │ │ │ │ │ ├── smv.py │ │ │ │ │ │ ├── snobol.py │ │ │ │ │ │ ├── solidity.py │ │ │ │ │ │ ├── special.py │ │ │ │ │ │ ├── sql.py │ │ │ │ │ │ ├── stata.py │ │ │ │ │ │ ├── supercollider.py │ │ │ │ │ │ ├── tcl.py │ │ │ │ │ │ ├── templates.py │ │ │ │ │ │ ├── teraterm.py │ │ │ │ │ │ ├── testing.py │ │ │ │ │ │ ├── text.py │ │ │ │ │ │ ├── textedit.py │ │ │ │ │ │ ├── textfmts.py │ │ │ │ │ │ ├── theorem.py │ │ │ │ │ │ ├── tnt.py │ │ │ │ │ │ ├── trafficscript.py │ │ │ │ │ │ ├── typoscript.py │ │ │ │ │ │ ├── unicon.py │ │ │ │ │ │ ├── urbi.py │ │ │ │ │ │ ├── usd.py │ │ │ │ │ │ ├── varnish.py │ │ │ │ │ │ ├── verification.py │ │ │ │ │ │ ├── web.py │ │ │ │ │ │ ├── webidl.py │ │ │ │ │ │ ├── webmisc.py │ │ │ │ │ │ ├── whiley.py │ │ │ │ │ │ ├── x10.py │ │ │ │ │ │ ├── xorg.py │ │ │ │ │ │ ├── yang.py │ │ │ │ │ │ └── zig.py │ │ │ │ │ ├── modeline.py │ │ │ │ │ ├── plugin.py │ │ │ │ │ ├── regexopt.py │ │ │ │ │ ├── scanner.py │ │ │ │ │ ├── sphinxext.py │ │ │ │ │ ├── style.py │ │ │ │ │ ├── styles │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── abap.py │ │ │ │ │ │ ├── algol.py │ │ │ │ │ │ ├── algol_nu.py │ │ │ │ │ │ ├── arduino.py │ │ │ │ │ │ ├── autumn.py │ │ │ │ │ │ ├── borland.py │ │ │ │ │ │ ├── bw.py │ │ │ │ │ │ ├── colorful.py │ │ │ │ │ │ ├── default.py │ │ │ │ │ │ ├── emacs.py │ │ │ │ │ │ ├── friendly.py │ │ │ │ │ │ ├── fruity.py │ │ │ │ │ │ ├── igor.py │ │ │ │ │ │ ├── inkpot.py │ │ │ │ │ │ ├── lovelace.py │ │ │ │ │ │ ├── manni.py │ │ │ │ │ │ ├── monokai.py │ │ │ │ │ │ ├── murphy.py │ │ │ │ │ │ ├── native.py │ │ │ │ │ │ ├── paraiso_dark.py │ │ │ │ │ │ ├── paraiso_light.py │ │ │ │ │ │ ├── pastie.py │ │ │ │ │ │ ├── perldoc.py │ │ │ │ │ │ ├── rainbow_dash.py │ │ │ │ │ │ ├── rrt.py │ │ │ │ │ │ ├── sas.py │ │ │ │ │ │ ├── solarized.py │ │ │ │ │ │ ├── stata_dark.py │ │ │ │ │ │ ├── stata_light.py │ │ │ │ │ │ ├── tango.py │ │ │ │ │ │ ├── trac.py │ │ │ │ │ │ ├── vim.py │ │ │ │ │ │ ├── vs.py │ │ │ │ │ │ └── xcode.py │ │ │ │ │ ├── token.py │ │ │ │ │ ├── unistring.py │ │ │ │ │ └── util.py │ │ │ │ ├── setuptools-50.3.0.dist-info │ │ │ │ │ ├── INSTALLER │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── METADATA │ │ │ │ │ ├── RECORD │ │ │ │ │ ├── REQUESTED │ │ │ │ │ ├── WHEEL │ │ │ │ │ ├── dependency_links.txt │ │ │ │ │ ├── entry_points.txt │ │ │ │ │ ├── top_level.txt │ │ │ │ │ └── zip-safe │ │ │ │ ├── setuptools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _deprecation_warning.py │ │ │ │ │ ├── _distutils │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _msvccompiler.py │ │ │ │ │ │ ├── archive_util.py │ │ │ │ │ │ ├── bcppcompiler.py │ │ │ │ │ │ ├── ccompiler.py │ │ │ │ │ │ ├── cmd.py │ │ │ │ │ │ ├── command │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── bdist.py │ │ │ │ │ │ │ ├── bdist_dumb.py │ │ │ │ │ │ │ ├── bdist_msi.py │ │ │ │ │ │ │ ├── bdist_rpm.py │ │ │ │ │ │ │ ├── bdist_wininst.py │ │ │ │ │ │ │ ├── build.py │ │ │ │ │ │ │ ├── build_clib.py │ │ │ │ │ │ │ ├── build_ext.py │ │ │ │ │ │ │ ├── build_py.py │ │ │ │ │ │ │ ├── build_scripts.py │ │ │ │ │ │ │ ├── check.py │ │ │ │ │ │ │ ├── clean.py │ │ │ │ │ │ │ ├── config.py │ │ │ │ │ │ │ ├── install.py │ │ │ │ │ │ │ ├── install_data.py │ │ │ │ │ │ │ ├── install_egg_info.py │ │ │ │ │ │ │ ├── install_headers.py │ │ │ │ │ │ │ ├── install_lib.py │ │ │ │ │ │ │ ├── install_scripts.py │ │ │ │ │ │ │ ├── py37compat.py │ │ │ │ │ │ │ ├── register.py │ │ │ │ │ │ │ ├── sdist.py │ │ │ │ │ │ │ └── upload.py │ │ │ │ │ │ ├── config.py │ │ │ │ │ │ ├── core.py │ │ │ │ │ │ ├── cygwinccompiler.py │ │ │ │ │ │ ├── debug.py │ │ │ │ │ │ ├── dep_util.py │ │ │ │ │ │ ├── dir_util.py │ │ │ │ │ │ ├── dist.py │ │ │ │ │ │ ├── errors.py │ │ │ │ │ │ ├── extension.py │ │ │ │ │ │ ├── fancy_getopt.py │ │ │ │ │ │ ├── file_util.py │ │ │ │ │ │ ├── filelist.py │ │ │ │ │ │ ├── log.py │ │ │ │ │ │ ├── msvc9compiler.py │ │ │ │ │ │ ├── msvccompiler.py │ │ │ │ │ │ ├── py35compat.py │ │ │ │ │ │ ├── py38compat.py │ │ │ │ │ │ ├── spawn.py │ │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ │ ├── text_file.py │ │ │ │ │ │ ├── unixccompiler.py │ │ │ │ │ │ ├── util.py │ │ │ │ │ │ ├── version.py │ │ │ │ │ │ └── versionpredicate.py │ │ │ │ │ ├── _imp.py │ │ │ │ │ ├── _vendor │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── ordered_set.py │ │ │ │ │ │ ├── packaging │ │ │ │ │ │ │ ├── __about__.py │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ │ ├── _structures.py │ │ │ │ │ │ │ ├── _typing.py │ │ │ │ │ │ │ ├── markers.py │ │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ │ ├── specifiers.py │ │ │ │ │ │ │ ├── tags.py │ │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ │ └── version.py │ │ │ │ │ │ └── pyparsing.py │ │ │ │ │ ├── archive_util.py │ │ │ │ │ ├── build_meta.py │ │ │ │ │ ├── cli-32.exe │ │ │ │ │ ├── cli-64.exe │ │ │ │ │ ├── cli.exe │ │ │ │ │ ├── command │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── alias.py │ │ │ │ │ │ ├── bdist_egg.py │ │ │ │ │ │ ├── bdist_rpm.py │ │ │ │ │ │ ├── bdist_wininst.py │ │ │ │ │ │ ├── build_clib.py │ │ │ │ │ │ ├── build_ext.py │ │ │ │ │ │ ├── build_py.py │ │ │ │ │ │ ├── develop.py │ │ │ │ │ │ ├── dist_info.py │ │ │ │ │ │ ├── easy_install.py │ │ │ │ │ │ ├── egg_info.py │ │ │ │ │ │ ├── install.py │ │ │ │ │ │ ├── install_egg_info.py │ │ │ │ │ │ ├── install_lib.py │ │ │ │ │ │ ├── install_scripts.py │ │ │ │ │ │ ├── launcher manifest.xml │ │ │ │ │ │ ├── py36compat.py │ │ │ │ │ │ ├── register.py │ │ │ │ │ │ ├── rotate.py │ │ │ │ │ │ ├── saveopts.py │ │ │ │ │ │ ├── sdist.py │ │ │ │ │ │ ├── setopt.py │ │ │ │ │ │ ├── test.py │ │ │ │ │ │ ├── upload.py │ │ │ │ │ │ └── upload_docs.py │ │ │ │ │ ├── config.py │ │ │ │ │ ├── dep_util.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── dist.py │ │ │ │ │ ├── errors.py │ │ │ │ │ ├── extension.py │ │ │ │ │ ├── extern │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── glibc.py │ │ │ │ │ ├── glob.py │ │ │ │ │ ├── gui-32.exe │ │ │ │ │ ├── gui-64.exe │ │ │ │ │ ├── gui.exe │ │ │ │ │ ├── installer.py │ │ │ │ │ ├── launch.py │ │ │ │ │ ├── lib2to3_ex.py │ │ │ │ │ ├── monkey.py │ │ │ │ │ ├── msvc.py │ │ │ │ │ ├── namespaces.py │ │ │ │ │ ├── package_index.py │ │ │ │ │ ├── pep425tags.py │ │ │ │ │ ├── py34compat.py │ │ │ │ │ ├── sandbox.py │ │ │ │ │ ├── script (dev).tmpl │ │ │ │ │ ├── script.tmpl │ │ │ │ │ ├── site-patch.py │ │ │ │ │ ├── ssl_support.py │ │ │ │ │ ├── unicode_utils.py │ │ │ │ │ ├── version.py │ │ │ │ │ ├── wheel.py │ │ │ │ │ └── windows_support.py │ │ │ │ ├── six-1.15.0.dist-info │ │ │ │ │ ├── INSTALLER │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── METADATA │ │ │ │ │ ├── RECORD │ │ │ │ │ ├── WHEEL │ │ │ │ │ └── top_level.txt │ │ │ │ └── six.py │ │ │ │ ├── site.py │ │ │ │ ├── smtpd.py │ │ │ │ ├── smtplib.py │ │ │ │ ├── sndhdr.py │ │ │ │ ├── socket.py │ │ │ │ ├── socketserver.py │ │ │ │ ├── sqlite3 │ │ │ │ ├── __init__.py │ │ │ │ ├── dbapi2.py │ │ │ │ └── dump.py │ │ │ │ ├── sre_compile.py │ │ │ │ ├── sre_constants.py │ │ │ │ ├── sre_parse.py │ │ │ │ ├── ssl.py │ │ │ │ ├── stat.py │ │ │ │ ├── statistics.py │ │ │ │ ├── string.py │ │ │ │ ├── stringprep.py │ │ │ │ ├── struct.py │ │ │ │ ├── subprocess.py │ │ │ │ ├── sunau.py │ │ │ │ ├── symbol.py │ │ │ │ ├── symtable.py │ │ │ │ ├── sysconfig.py │ │ │ │ ├── tabnanny.py │ │ │ │ ├── tarfile.py │ │ │ │ ├── telnetlib.py │ │ │ │ ├── tempfile.py │ │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ └── support │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── script_helper.py │ │ │ │ │ └── testresult.py │ │ │ │ ├── textwrap.py │ │ │ │ ├── this.py │ │ │ │ ├── threading.py │ │ │ │ ├── timeit.py │ │ │ │ ├── token.py │ │ │ │ ├── tokenize.py │ │ │ │ ├── trace.py │ │ │ │ ├── traceback.py │ │ │ │ ├── tracemalloc.py │ │ │ │ ├── tty.py │ │ │ │ ├── types.py │ │ │ │ ├── typing.py │ │ │ │ ├── unittest │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── case.py │ │ │ │ ├── loader.py │ │ │ │ ├── main.py │ │ │ │ ├── mock.py │ │ │ │ ├── result.py │ │ │ │ ├── runner.py │ │ │ │ ├── signals.py │ │ │ │ ├── suite.py │ │ │ │ └── util.py │ │ │ │ ├── urllib │ │ │ │ ├── __init__.py │ │ │ │ ├── error.py │ │ │ │ ├── parse.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── robotparser.py │ │ │ │ ├── uu.py │ │ │ │ ├── uuid.py │ │ │ │ ├── venv │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── scripts │ │ │ │ │ ├── common │ │ │ │ │ └── activate │ │ │ │ │ └── posix │ │ │ │ │ ├── activate.csh │ │ │ │ │ └── activate.fish │ │ │ │ ├── warnings.py │ │ │ │ ├── wave.py │ │ │ │ ├── weakref.py │ │ │ │ ├── webbrowser.py │ │ │ │ ├── wsgiref │ │ │ │ ├── __init__.py │ │ │ │ ├── handlers.py │ │ │ │ ├── headers.py │ │ │ │ ├── simple_server.py │ │ │ │ ├── util.py │ │ │ │ └── validate.py │ │ │ │ ├── xdrlib.py │ │ │ │ ├── xml │ │ │ │ ├── __init__.py │ │ │ │ ├── dom │ │ │ │ │ ├── NodeFilter.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── domreg.py │ │ │ │ │ ├── expatbuilder.py │ │ │ │ │ ├── minicompat.py │ │ │ │ │ ├── minidom.py │ │ │ │ │ ├── pulldom.py │ │ │ │ │ └── xmlbuilder.py │ │ │ │ ├── etree │ │ │ │ │ ├── ElementInclude.py │ │ │ │ │ ├── ElementPath.py │ │ │ │ │ ├── ElementTree.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── cElementTree.py │ │ │ │ ├── parsers │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── expat.py │ │ │ │ └── sax │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _exceptions.py │ │ │ │ │ ├── expatreader.py │ │ │ │ │ ├── handler.py │ │ │ │ │ ├── saxutils.py │ │ │ │ │ └── xmlreader.py │ │ │ │ ├── xmlrpc │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── server.py │ │ │ │ ├── zipapp.py │ │ │ │ └── zipfile.py │ │ └── lib64 │ │ │ ├── libcrypto.so.10 │ │ │ ├── libfontconfig.so.1 │ │ │ ├── libpython3.6m.so.1.0 │ │ │ ├── libpython3.so │ │ │ ├── libssl.so.10 │ │ │ └── python3.6 │ │ │ └── site-packages │ │ │ ├── PyQt3D-5.15.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ └── WHEEL │ │ │ ├── PyQt5-5.15.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ ├── WHEEL │ │ │ └── entry_points.txt │ │ │ ├── PyQt5 │ │ │ ├── Qsci.abi3.so │ │ │ ├── Qsci.pyi │ │ │ ├── Qt.abi3.so │ │ │ ├── Qt3DAnimation.abi3.so │ │ │ ├── Qt3DAnimation.pyi │ │ │ ├── Qt3DCore.abi3.so │ │ │ ├── Qt3DCore.pyi │ │ │ ├── Qt3DExtras.abi3.so │ │ │ ├── Qt3DExtras.pyi │ │ │ ├── Qt3DInput.abi3.so │ │ │ ├── Qt3DInput.pyi │ │ │ ├── Qt3DLogic.abi3.so │ │ │ ├── Qt3DLogic.pyi │ │ │ ├── Qt3DRender.abi3.so │ │ │ ├── Qt3DRender.pyi │ │ │ ├── QtBluetooth.abi3.so │ │ │ ├── QtBluetooth.pyi │ │ │ ├── QtChart.abi3.so │ │ │ ├── QtChart.pyi │ │ │ ├── QtCore.abi3.so │ │ │ ├── QtCore.pyi │ │ │ ├── QtDBus.abi3.so │ │ │ ├── QtDBus.pyi │ │ │ ├── QtDataVisualization.abi3.so │ │ │ ├── QtDataVisualization.pyi │ │ │ ├── QtDesigner.abi3.so │ │ │ ├── QtDesigner.pyi │ │ │ ├── QtGui.abi3.so │ │ │ ├── QtGui.pyi │ │ │ ├── QtHelp.abi3.so │ │ │ ├── QtHelp.pyi │ │ │ ├── QtLocation.abi3.so │ │ │ ├── QtLocation.pyi │ │ │ ├── QtMultimedia.abi3.so │ │ │ ├── QtMultimedia.pyi │ │ │ ├── QtMultimediaWidgets.abi3.so │ │ │ ├── QtMultimediaWidgets.pyi │ │ │ ├── QtNetwork.abi3.so │ │ │ ├── QtNetwork.pyi │ │ │ ├── QtNetworkAuth.abi3.so │ │ │ ├── QtNetworkAuth.pyi │ │ │ ├── QtNfc.abi3.so │ │ │ ├── QtNfc.pyi │ │ │ ├── QtOpenGL.abi3.so │ │ │ ├── QtOpenGL.pyi │ │ │ ├── QtPositioning.abi3.so │ │ │ ├── QtPositioning.pyi │ │ │ ├── QtPrintSupport.abi3.so │ │ │ ├── QtPrintSupport.pyi │ │ │ ├── QtPurchasing.abi3.so │ │ │ ├── QtPurchasing.pyi │ │ │ ├── QtQml.abi3.so │ │ │ ├── QtQml.pyi │ │ │ ├── QtQuick.abi3.so │ │ │ ├── QtQuick.pyi │ │ │ ├── QtQuick3D.abi3.so │ │ │ ├── QtQuick3D.pyi │ │ │ ├── QtQuickWidgets.abi3.so │ │ │ ├── QtQuickWidgets.pyi │ │ │ ├── QtRemoteObjects.abi3.so │ │ │ ├── QtRemoteObjects.pyi │ │ │ ├── QtSensors.abi3.so │ │ │ ├── QtSensors.pyi │ │ │ ├── QtSerialPort.abi3.so │ │ │ ├── QtSerialPort.pyi │ │ │ ├── QtSql.abi3.so │ │ │ ├── QtSql.pyi │ │ │ ├── QtSvg.abi3.so │ │ │ ├── QtSvg.pyi │ │ │ ├── QtTest.abi3.so │ │ │ ├── QtTest.pyi │ │ │ ├── QtWebChannel.abi3.so │ │ │ ├── QtWebChannel.pyi │ │ │ ├── QtWebEngine.abi3.so │ │ │ ├── QtWebEngine.pyi │ │ │ ├── QtWebEngineCore.abi3.so │ │ │ ├── QtWebEngineCore.pyi │ │ │ ├── QtWebEngineWidgets.abi3.so │ │ │ ├── QtWebEngineWidgets.pyi │ │ │ ├── QtWebSockets.abi3.so │ │ │ ├── QtWebSockets.pyi │ │ │ ├── QtWidgets.abi3.so │ │ │ ├── QtWidgets.pyi │ │ │ ├── QtX11Extras.abi3.so │ │ │ ├── QtX11Extras.pyi │ │ │ ├── QtXml.abi3.so │ │ │ ├── QtXml.pyi │ │ │ ├── QtXmlPatterns.abi3.so │ │ │ ├── QtXmlPatterns.pyi │ │ │ ├── _QOpenGLFunctions_2_0.abi3.so │ │ │ ├── _QOpenGLFunctions_2_1.abi3.so │ │ │ ├── _QOpenGLFunctions_4_1_Core.abi3.so │ │ │ ├── __init__.py │ │ │ ├── pylupdate.abi3.so │ │ │ ├── pylupdate_main.py │ │ │ ├── pyrcc.abi3.so │ │ │ ├── pyrcc_main.py │ │ │ ├── sip.cpython-36m-x86_64-linux-gnu.so │ │ │ └── uic │ │ │ │ ├── Compiler │ │ │ │ ├── __init__.py │ │ │ │ ├── compiler.py │ │ │ │ ├── indenter.py │ │ │ │ ├── misc.py │ │ │ │ ├── proxy_metaclass.py │ │ │ │ ├── qobjectcreator.py │ │ │ │ └── qtproxies.py │ │ │ │ ├── Loader │ │ │ │ ├── __init__.py │ │ │ │ ├── loader.py │ │ │ │ └── qobjectcreator.py │ │ │ │ ├── __init__.py │ │ │ │ ├── driver.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── icon_cache.py │ │ │ │ ├── objcreator.py │ │ │ │ ├── port_v2 │ │ │ │ ├── __init__.py │ │ │ │ ├── as_string.py │ │ │ │ ├── ascii_upper.py │ │ │ │ ├── proxy_base.py │ │ │ │ └── string_io.py │ │ │ │ ├── port_v3 │ │ │ │ ├── __init__.py │ │ │ │ ├── as_string.py │ │ │ │ ├── ascii_upper.py │ │ │ │ ├── proxy_base.py │ │ │ │ └── string_io.py │ │ │ │ ├── properties.py │ │ │ │ ├── pyuic.py │ │ │ │ ├── uiparser.py │ │ │ │ └── widget-plugins │ │ │ │ ├── qaxcontainer.py │ │ │ │ ├── qscintilla.py │ │ │ │ ├── qtcharts.py │ │ │ │ ├── qtprintsupport.py │ │ │ │ ├── qtquickwidgets.py │ │ │ │ ├── qtwebenginewidgets.py │ │ │ │ └── qtwebkit.py │ │ │ ├── PyQt5_sip-12.8.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ │ ├── PyQtChart-5.15.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ └── WHEEL │ │ │ ├── PyQtDataVisualization-5.15.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ └── WHEEL │ │ │ ├── PyQtPurchasing-5.15.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ └── WHEEL │ │ │ ├── PyQtWebEngine-5.15.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ └── WHEEL │ │ │ └── QScintilla-2.11.5.dist-info │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ └── WHEEL │ ├── pip │ └── python └── Windows │ └── bin │ ├── DLLs │ ├── _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 │ ├── libcrypto-1_1.dll │ ├── libssl-1_1.dll │ ├── py.ico │ ├── pyc.ico │ ├── pyd.ico │ ├── pyexpat.pyd │ ├── python_lib.cat │ ├── python_tools.cat │ ├── select.pyd │ ├── sqlite3.dll │ ├── unicodedata.pyd │ └── winsound.pyd │ ├── Lib │ └── site-packages │ │ ├── PyQt3D-5.15.0.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ └── WHEEL │ │ ├── PyQt5-5.15.0.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── entry_points.txt │ │ ├── PyQt5 │ │ ├── QAxContainer.pyd │ │ ├── Qsci.pyd │ │ ├── Qt.pyd │ │ ├── Qt3DAnimation.pyd │ │ ├── Qt3DCore.pyd │ │ ├── Qt3DExtras.pyd │ │ ├── Qt3DInput.pyd │ │ ├── Qt3DLogic.pyd │ │ ├── Qt3DRender.pyd │ │ ├── QtBluetooth.pyd │ │ ├── QtChart.pyd │ │ ├── QtCore.pyd │ │ ├── QtDBus.pyd │ │ ├── QtDataVisualization.pyd │ │ ├── QtDesigner.pyd │ │ ├── QtGui.pyd │ │ ├── QtHelp.pyd │ │ ├── QtLocation.pyd │ │ ├── QtMultimedia.pyd │ │ ├── QtMultimediaWidgets.pyd │ │ ├── QtNetwork.pyd │ │ ├── QtNetworkAuth.pyd │ │ ├── QtNfc.pyd │ │ ├── QtOpenGL.pyd │ │ ├── QtPositioning.pyd │ │ ├── QtPrintSupport.pyd │ │ ├── QtPurchasing.pyd │ │ ├── QtQml.pyd │ │ ├── QtQuick.pyd │ │ ├── QtQuick3D.pyd │ │ ├── QtQuickWidgets.pyd │ │ ├── QtRemoteObjects.pyd │ │ ├── QtSensors.pyd │ │ ├── QtSerialPort.pyd │ │ ├── QtSql.pyd │ │ ├── QtSvg.pyd │ │ ├── QtTest.pyd │ │ ├── QtWebChannel.pyd │ │ ├── QtWebEngine.pyd │ │ ├── QtWebEngineCore.pyd │ │ ├── QtWebEngineWidgets.pyd │ │ ├── QtWebSockets.pyd │ │ ├── QtWidgets.pyd │ │ ├── QtWinExtras.pyd │ │ ├── QtXml.pyd │ │ ├── QtXmlPatterns.pyd │ │ ├── _QOpenGLFunctions_2_0.pyd │ │ ├── _QOpenGLFunctions_2_1.pyd │ │ ├── _QOpenGLFunctions_4_1_Core.pyd │ │ ├── __init__.py │ │ ├── pylupdate.pyd │ │ ├── pylupdate_main.py │ │ ├── pyrcc.pyd │ │ ├── pyrcc_main.py │ │ ├── sip.cp37-win32.pyd │ │ └── uic │ │ │ ├── Compiler │ │ │ ├── __init__.py │ │ │ ├── compiler.py │ │ │ ├── indenter.py │ │ │ ├── misc.py │ │ │ ├── proxy_metaclass.py │ │ │ ├── qobjectcreator.py │ │ │ └── qtproxies.py │ │ │ ├── Loader │ │ │ ├── __init__.py │ │ │ ├── loader.py │ │ │ └── qobjectcreator.py │ │ │ ├── __init__.py │ │ │ ├── driver.py │ │ │ ├── exceptions.py │ │ │ ├── icon_cache.py │ │ │ ├── objcreator.py │ │ │ ├── port_v2 │ │ │ ├── __init__.py │ │ │ ├── as_string.py │ │ │ ├── ascii_upper.py │ │ │ ├── proxy_base.py │ │ │ └── string_io.py │ │ │ ├── port_v3 │ │ │ ├── __init__.py │ │ │ ├── as_string.py │ │ │ ├── ascii_upper.py │ │ │ ├── proxy_base.py │ │ │ └── string_io.py │ │ │ ├── properties.py │ │ │ ├── pyuic.py │ │ │ ├── uiparser.py │ │ │ └── widget-plugins │ │ │ ├── qaxcontainer.py │ │ │ ├── qscintilla.py │ │ │ ├── qtcharts.py │ │ │ ├── qtprintsupport.py │ │ │ ├── qtquickwidgets.py │ │ │ ├── qtwebenginewidgets.py │ │ │ └── qtwebkit.py │ │ ├── PyQt5_sip-12.8.0.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── PyQtChart-5.15.0.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ └── WHEEL │ │ ├── PyQtDataVisualization-5.15.0.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ └── WHEEL │ │ ├── PyQtPurchasing-5.15.0.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ └── WHEEL │ │ ├── PyQtWebEngine-5.15.0.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ └── WHEEL │ │ ├── Pygments-2.7.1.dist-info │ │ ├── AUTHORS │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── QScintilla-2.11.5.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ └── WHEEL │ │ ├── README.txt │ │ ├── _distutils_hack │ │ ├── __init__.py │ │ └── override.py │ │ ├── css_beautify-1.10.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── cssbeautifier │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __version__.py │ │ ├── beautifier.py │ │ ├── directives.py │ │ ├── inputscanner.py │ │ ├── options.py │ │ └── output.py │ │ ├── distutils-precedence.pth │ │ ├── easy_install.py │ │ ├── pip-20.2.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── pip │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _internal │ │ │ ├── __init__.py │ │ │ ├── build_env.py │ │ │ ├── cache.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── autocompletion.py │ │ │ │ ├── base_command.py │ │ │ │ ├── cmdoptions.py │ │ │ │ ├── command_context.py │ │ │ │ ├── main.py │ │ │ │ ├── main_parser.py │ │ │ │ ├── parser.py │ │ │ │ ├── progress_bars.py │ │ │ │ ├── req_command.py │ │ │ │ ├── spinners.py │ │ │ │ └── status_codes.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── cache.py │ │ │ │ ├── check.py │ │ │ │ ├── completion.py │ │ │ │ ├── configuration.py │ │ │ │ ├── debug.py │ │ │ │ ├── download.py │ │ │ │ ├── freeze.py │ │ │ │ ├── hash.py │ │ │ │ ├── help.py │ │ │ │ ├── install.py │ │ │ │ ├── list.py │ │ │ │ ├── search.py │ │ │ │ ├── show.py │ │ │ │ ├── uninstall.py │ │ │ │ └── wheel.py │ │ │ ├── configuration.py │ │ │ ├── distributions │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── installed.py │ │ │ │ ├── sdist.py │ │ │ │ └── wheel.py │ │ │ ├── exceptions.py │ │ │ ├── index │ │ │ │ ├── __init__.py │ │ │ │ ├── collector.py │ │ │ │ └── package_finder.py │ │ │ ├── legacy_resolve.py │ │ │ ├── locations.py │ │ │ ├── main.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── candidate.py │ │ │ │ ├── direct_url.py │ │ │ │ ├── format_control.py │ │ │ │ ├── index.py │ │ │ │ ├── link.py │ │ │ │ ├── scheme.py │ │ │ │ ├── search_scope.py │ │ │ │ ├── selection_prefs.py │ │ │ │ ├── target_python.py │ │ │ │ └── wheel.py │ │ │ ├── network │ │ │ │ ├── __init__.py │ │ │ │ ├── auth.py │ │ │ │ ├── cache.py │ │ │ │ ├── download.py │ │ │ │ ├── lazy_wheel.py │ │ │ │ ├── session.py │ │ │ │ ├── utils.py │ │ │ │ └── xmlrpc.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── build │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── metadata.py │ │ │ │ │ ├── metadata_legacy.py │ │ │ │ │ ├── wheel.py │ │ │ │ │ └── wheel_legacy.py │ │ │ │ ├── check.py │ │ │ │ ├── freeze.py │ │ │ │ ├── install │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ ├── legacy.py │ │ │ │ │ └── wheel.py │ │ │ │ └── prepare.py │ │ │ ├── pep425tags.py │ │ │ ├── pyproject.py │ │ │ ├── req │ │ │ │ ├── __init__.py │ │ │ │ ├── constructors.py │ │ │ │ ├── req_file.py │ │ │ │ ├── req_install.py │ │ │ │ ├── req_set.py │ │ │ │ ├── req_tracker.py │ │ │ │ └── req_uninstall.py │ │ │ ├── resolution │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── legacy │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── resolver.py │ │ │ │ └── resolvelib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── candidates.py │ │ │ │ │ ├── factory.py │ │ │ │ │ ├── provider.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ └── resolver.py │ │ │ ├── self_outdated_check.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── appdirs.py │ │ │ │ ├── compat.py │ │ │ │ ├── compatibility_tags.py │ │ │ │ ├── datetime.py │ │ │ │ ├── deprecation.py │ │ │ │ ├── direct_url_helpers.py │ │ │ │ ├── distutils_args.py │ │ │ │ ├── encoding.py │ │ │ │ ├── entrypoints.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── filetypes.py │ │ │ │ ├── glibc.py │ │ │ │ ├── hashes.py │ │ │ │ ├── inject_securetransport.py │ │ │ │ ├── logging.py │ │ │ │ ├── marker_files.py │ │ │ │ ├── misc.py │ │ │ │ ├── models.py │ │ │ │ ├── packaging.py │ │ │ │ ├── parallel.py │ │ │ │ ├── pkg_resources.py │ │ │ │ ├── setuptools_build.py │ │ │ │ ├── subprocess.py │ │ │ │ ├── temp_dir.py │ │ │ │ ├── typing.py │ │ │ │ ├── ui.py │ │ │ │ ├── unpacking.py │ │ │ │ ├── urls.py │ │ │ │ ├── virtualenv.py │ │ │ │ └── wheel.py │ │ │ ├── vcs │ │ │ │ ├── __init__.py │ │ │ │ ├── bazaar.py │ │ │ │ ├── git.py │ │ │ │ ├── mercurial.py │ │ │ │ ├── subversion.py │ │ │ │ └── versioncontrol.py │ │ │ └── wheel_builder.py │ │ └── _vendor │ │ │ ├── __init__.py │ │ │ ├── appdirs.py │ │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── _cmd.py │ │ │ ├── adapter.py │ │ │ ├── cache.py │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ ├── file_cache.py │ │ │ │ └── redis_cache.py │ │ │ ├── compat.py │ │ │ ├── controller.py │ │ │ ├── filewrapper.py │ │ │ ├── heuristics.py │ │ │ ├── serialize.py │ │ │ └── wrapper.py │ │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── cacert.pem │ │ │ └── core.py │ │ │ ├── chardet │ │ │ ├── __init__.py │ │ │ ├── big5freq.py │ │ │ ├── big5prober.py │ │ │ ├── chardistribution.py │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetprober.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ └── chardetect.py │ │ │ ├── codingstatemachine.py │ │ │ ├── compat.py │ │ │ ├── cp949prober.py │ │ │ ├── enums.py │ │ │ ├── escprober.py │ │ │ ├── escsm.py │ │ │ ├── eucjpprober.py │ │ │ ├── euckrfreq.py │ │ │ ├── euckrprober.py │ │ │ ├── euctwfreq.py │ │ │ ├── euctwprober.py │ │ │ ├── gb2312freq.py │ │ │ ├── gb2312prober.py │ │ │ ├── hebrewprober.py │ │ │ ├── jisfreq.py │ │ │ ├── jpcntx.py │ │ │ ├── langbulgarianmodel.py │ │ │ ├── langcyrillicmodel.py │ │ │ ├── langgreekmodel.py │ │ │ ├── langhebrewmodel.py │ │ │ ├── langhungarianmodel.py │ │ │ ├── langthaimodel.py │ │ │ ├── langturkishmodel.py │ │ │ ├── latin1prober.py │ │ │ ├── mbcharsetprober.py │ │ │ ├── mbcsgroupprober.py │ │ │ ├── mbcssm.py │ │ │ ├── sbcharsetprober.py │ │ │ ├── sbcsgroupprober.py │ │ │ ├── sjisprober.py │ │ │ ├── universaldetector.py │ │ │ ├── utf8prober.py │ │ │ └── version.py │ │ │ ├── colorama │ │ │ ├── __init__.py │ │ │ ├── ansi.py │ │ │ ├── ansitowin32.py │ │ │ ├── initialise.py │ │ │ ├── win32.py │ │ │ └── winterm.py │ │ │ ├── contextlib2.py │ │ │ ├── distlib │ │ │ ├── __init__.py │ │ │ ├── _backport │ │ │ │ ├── __init__.py │ │ │ │ ├── misc.py │ │ │ │ ├── shutil.py │ │ │ │ ├── sysconfig.cfg │ │ │ │ ├── sysconfig.py │ │ │ │ └── tarfile.py │ │ │ ├── compat.py │ │ │ ├── database.py │ │ │ ├── index.py │ │ │ ├── locators.py │ │ │ ├── manifest.py │ │ │ ├── markers.py │ │ │ ├── metadata.py │ │ │ ├── resources.py │ │ │ ├── scripts.py │ │ │ ├── t32.exe │ │ │ ├── t64.exe │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ ├── w32.exe │ │ │ ├── w64.exe │ │ │ └── wheel.py │ │ │ ├── distro.py │ │ │ ├── html5lib │ │ │ ├── __init__.py │ │ │ ├── _ihatexml.py │ │ │ ├── _inputstream.py │ │ │ ├── _tokenizer.py │ │ │ ├── _trie │ │ │ │ ├── __init__.py │ │ │ │ ├── _base.py │ │ │ │ └── py.py │ │ │ ├── _utils.py │ │ │ ├── constants.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ ├── base.py │ │ │ │ ├── inject_meta_charset.py │ │ │ │ ├── lint.py │ │ │ │ ├── optionaltags.py │ │ │ │ ├── sanitizer.py │ │ │ │ └── whitespace.py │ │ │ ├── html5parser.py │ │ │ ├── serializer.py │ │ │ ├── treeadapters │ │ │ │ ├── __init__.py │ │ │ │ ├── genshi.py │ │ │ │ └── sax.py │ │ │ ├── treebuilders │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ └── etree_lxml.py │ │ │ └── treewalkers │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ ├── etree_lxml.py │ │ │ │ └── genshi.py │ │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ └── uts46data.py │ │ │ ├── ipaddress.py │ │ │ ├── msgpack │ │ │ ├── __init__.py │ │ │ ├── _version.py │ │ │ ├── exceptions.py │ │ │ ├── ext.py │ │ │ └── fallback.py │ │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── _typing.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ │ ├── pep517 │ │ │ ├── __init__.py │ │ │ ├── _in_process.py │ │ │ ├── build.py │ │ │ ├── check.py │ │ │ ├── colorlog.py │ │ │ ├── compat.py │ │ │ ├── dirtools.py │ │ │ ├── envbuild.py │ │ │ ├── meta.py │ │ │ └── wrappers.py │ │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ └── py31compat.py │ │ │ ├── progress │ │ │ ├── __init__.py │ │ │ ├── bar.py │ │ │ ├── counter.py │ │ │ └── spinner.py │ │ │ ├── pyparsing.py │ │ │ ├── pytoml │ │ │ ├── __init__.py │ │ │ ├── core.py │ │ │ ├── parser.py │ │ │ ├── test.py │ │ │ ├── utils.py │ │ │ └── writer.py │ │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __version__.py │ │ │ ├── _internal_utils.py │ │ │ ├── adapters.py │ │ │ ├── api.py │ │ │ ├── auth.py │ │ │ ├── certs.py │ │ │ ├── compat.py │ │ │ ├── cookies.py │ │ │ ├── exceptions.py │ │ │ ├── help.py │ │ │ ├── hooks.py │ │ │ ├── models.py │ │ │ ├── packages.py │ │ │ ├── sessions.py │ │ │ ├── status_codes.py │ │ │ ├── structures.py │ │ │ └── utils.py │ │ │ ├── resolvelib │ │ │ ├── __init__.py │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ └── collections_abc.py │ │ │ ├── providers.py │ │ │ ├── reporters.py │ │ │ ├── resolvers.py │ │ │ └── structs.py │ │ │ ├── retrying.py │ │ │ ├── six.py │ │ │ ├── toml │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── decoder.py │ │ │ ├── encoder.py │ │ │ ├── ordered.py │ │ │ └── tz.py │ │ │ ├── urllib3 │ │ │ ├── __init__.py │ │ │ ├── _collections.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── _appengine_environ.py │ │ │ │ ├── _securetransport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bindings.py │ │ │ │ │ └── low_level.py │ │ │ │ ├── appengine.py │ │ │ │ ├── ntlmpool.py │ │ │ │ ├── pyopenssl.py │ │ │ │ ├── securetransport.py │ │ │ │ └── socks.py │ │ │ ├── exceptions.py │ │ │ ├── fields.py │ │ │ ├── filepost.py │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── makefile.py │ │ │ │ ├── six.py │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _implementation.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── queue.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── timeout.py │ │ │ │ ├── url.py │ │ │ │ └── wait.py │ │ │ ├── vendor.txt │ │ │ └── webencodings │ │ │ ├── __init__.py │ │ │ ├── labels.py │ │ │ ├── mklabels.py │ │ │ ├── tests.py │ │ │ └── x_user_defined.py │ │ ├── pkg_resources │ │ ├── __init__.py │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── appdirs.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── _typing.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── pyparsing.py │ │ │ └── six.py │ │ ├── extern │ │ │ └── __init__.py │ │ └── py31compat.py │ │ ├── pygments │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── cmdline.py │ │ ├── console.py │ │ ├── filter.py │ │ ├── filters │ │ │ └── __init__.py │ │ ├── formatter.py │ │ ├── formatters │ │ │ ├── __init__.py │ │ │ ├── _mapping.py │ │ │ ├── bbcode.py │ │ │ ├── html.py │ │ │ ├── img.py │ │ │ ├── irc.py │ │ │ ├── latex.py │ │ │ ├── other.py │ │ │ ├── rtf.py │ │ │ ├── svg.py │ │ │ ├── terminal.py │ │ │ └── terminal256.py │ │ ├── lexer.py │ │ ├── lexers │ │ │ ├── __init__.py │ │ │ ├── _asy_builtins.py │ │ │ ├── _cl_builtins.py │ │ │ ├── _cocoa_builtins.py │ │ │ ├── _csound_builtins.py │ │ │ ├── _lasso_builtins.py │ │ │ ├── _lua_builtins.py │ │ │ ├── _mapping.py │ │ │ ├── _mql_builtins.py │ │ │ ├── _mysql_builtins.py │ │ │ ├── _openedge_builtins.py │ │ │ ├── _php_builtins.py │ │ │ ├── _postgres_builtins.py │ │ │ ├── _scilab_builtins.py │ │ │ ├── _sourcemod_builtins.py │ │ │ ├── _stan_builtins.py │ │ │ ├── _stata_builtins.py │ │ │ ├── _tsql_builtins.py │ │ │ ├── _usd_builtins.py │ │ │ ├── _vbscript_builtins.py │ │ │ ├── _vim_builtins.py │ │ │ ├── actionscript.py │ │ │ ├── agile.py │ │ │ ├── algebra.py │ │ │ ├── ambient.py │ │ │ ├── ampl.py │ │ │ ├── apl.py │ │ │ ├── archetype.py │ │ │ ├── arrow.py │ │ │ ├── asm.py │ │ │ ├── automation.py │ │ │ ├── bare.py │ │ │ ├── basic.py │ │ │ ├── bibtex.py │ │ │ ├── boa.py │ │ │ ├── business.py │ │ │ ├── c_cpp.py │ │ │ ├── c_like.py │ │ │ ├── capnproto.py │ │ │ ├── chapel.py │ │ │ ├── clean.py │ │ │ ├── compiled.py │ │ │ ├── configs.py │ │ │ ├── console.py │ │ │ ├── crystal.py │ │ │ ├── csound.py │ │ │ ├── css.py │ │ │ ├── d.py │ │ │ ├── dalvik.py │ │ │ ├── data.py │ │ │ ├── devicetree.py │ │ │ ├── diff.py │ │ │ ├── dotnet.py │ │ │ ├── dsls.py │ │ │ ├── dylan.py │ │ │ ├── ecl.py │ │ │ ├── eiffel.py │ │ │ ├── elm.py │ │ │ ├── email.py │ │ │ ├── erlang.py │ │ │ ├── esoteric.py │ │ │ ├── ezhil.py │ │ │ ├── factor.py │ │ │ ├── fantom.py │ │ │ ├── felix.py │ │ │ ├── floscript.py │ │ │ ├── forth.py │ │ │ ├── fortran.py │ │ │ ├── foxpro.py │ │ │ ├── freefem.py │ │ │ ├── functional.py │ │ │ ├── gdscript.py │ │ │ ├── go.py │ │ │ ├── grammar_notation.py │ │ │ ├── graph.py │ │ │ ├── graphics.py │ │ │ ├── haskell.py │ │ │ ├── haxe.py │ │ │ ├── hdl.py │ │ │ ├── hexdump.py │ │ │ ├── html.py │ │ │ ├── idl.py │ │ │ ├── igor.py │ │ │ ├── inferno.py │ │ │ ├── installers.py │ │ │ ├── int_fiction.py │ │ │ ├── iolang.py │ │ │ ├── j.py │ │ │ ├── javascript.py │ │ │ ├── julia.py │ │ │ ├── jvm.py │ │ │ ├── lisp.py │ │ │ ├── make.py │ │ │ ├── markup.py │ │ │ ├── math.py │ │ │ ├── matlab.py │ │ │ ├── mime.py │ │ │ ├── ml.py │ │ │ ├── modeling.py │ │ │ ├── modula2.py │ │ │ ├── monte.py │ │ │ ├── mosel.py │ │ │ ├── ncl.py │ │ │ ├── nimrod.py │ │ │ ├── nit.py │ │ │ ├── nix.py │ │ │ ├── oberon.py │ │ │ ├── objective.py │ │ │ ├── ooc.py │ │ │ ├── other.py │ │ │ ├── parasail.py │ │ │ ├── parsers.py │ │ │ ├── pascal.py │ │ │ ├── pawn.py │ │ │ ├── perl.py │ │ │ ├── php.py │ │ │ ├── pointless.py │ │ │ ├── pony.py │ │ │ ├── praat.py │ │ │ ├── prolog.py │ │ │ ├── promql.py │ │ │ ├── python.py │ │ │ ├── qvt.py │ │ │ ├── r.py │ │ │ ├── rdf.py │ │ │ ├── rebol.py │ │ │ ├── resource.py │ │ │ ├── ride.py │ │ │ ├── rnc.py │ │ │ ├── roboconf.py │ │ │ ├── robotframework.py │ │ │ ├── ruby.py │ │ │ ├── rust.py │ │ │ ├── sas.py │ │ │ ├── scdoc.py │ │ │ ├── scripting.py │ │ │ ├── sgf.py │ │ │ ├── shell.py │ │ │ ├── sieve.py │ │ │ ├── slash.py │ │ │ ├── smalltalk.py │ │ │ ├── smv.py │ │ │ ├── snobol.py │ │ │ ├── solidity.py │ │ │ ├── special.py │ │ │ ├── sql.py │ │ │ ├── stata.py │ │ │ ├── supercollider.py │ │ │ ├── tcl.py │ │ │ ├── templates.py │ │ │ ├── teraterm.py │ │ │ ├── testing.py │ │ │ ├── text.py │ │ │ ├── textedit.py │ │ │ ├── textfmts.py │ │ │ ├── theorem.py │ │ │ ├── tnt.py │ │ │ ├── trafficscript.py │ │ │ ├── typoscript.py │ │ │ ├── unicon.py │ │ │ ├── urbi.py │ │ │ ├── usd.py │ │ │ ├── varnish.py │ │ │ ├── verification.py │ │ │ ├── web.py │ │ │ ├── webidl.py │ │ │ ├── webmisc.py │ │ │ ├── whiley.py │ │ │ ├── x10.py │ │ │ ├── xorg.py │ │ │ ├── yang.py │ │ │ └── zig.py │ │ ├── modeline.py │ │ ├── plugin.py │ │ ├── regexopt.py │ │ ├── scanner.py │ │ ├── sphinxext.py │ │ ├── style.py │ │ ├── styles │ │ │ ├── __init__.py │ │ │ ├── abap.py │ │ │ ├── algol.py │ │ │ ├── algol_nu.py │ │ │ ├── arduino.py │ │ │ ├── autumn.py │ │ │ ├── borland.py │ │ │ ├── bw.py │ │ │ ├── colorful.py │ │ │ ├── default.py │ │ │ ├── emacs.py │ │ │ ├── friendly.py │ │ │ ├── fruity.py │ │ │ ├── igor.py │ │ │ ├── inkpot.py │ │ │ ├── lovelace.py │ │ │ ├── manni.py │ │ │ ├── monokai.py │ │ │ ├── murphy.py │ │ │ ├── native.py │ │ │ ├── paraiso_dark.py │ │ │ ├── paraiso_light.py │ │ │ ├── pastie.py │ │ │ ├── perldoc.py │ │ │ ├── rainbow_dash.py │ │ │ ├── rrt.py │ │ │ ├── sas.py │ │ │ ├── solarized.py │ │ │ ├── stata_dark.py │ │ │ ├── stata_light.py │ │ │ ├── tango.py │ │ │ ├── trac.py │ │ │ ├── vim.py │ │ │ ├── vs.py │ │ │ └── xcode.py │ │ ├── token.py │ │ ├── unistring.py │ │ └── util.py │ │ ├── setuptools-49.6.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── dependency_links.txt │ │ ├── entry_points.txt │ │ ├── top_level.txt │ │ └── zip-safe │ │ ├── setuptools │ │ ├── __init__.py │ │ ├── _deprecation_warning.py │ │ ├── _distutils │ │ │ ├── __init__.py │ │ │ ├── _msvccompiler.py │ │ │ ├── archive_util.py │ │ │ ├── bcppcompiler.py │ │ │ ├── ccompiler.py │ │ │ ├── cmd.py │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── bdist.py │ │ │ │ ├── bdist_dumb.py │ │ │ │ ├── bdist_msi.py │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── bdist_wininst.py │ │ │ │ ├── build.py │ │ │ │ ├── build_clib.py │ │ │ │ ├── build_ext.py │ │ │ │ ├── build_py.py │ │ │ │ ├── build_scripts.py │ │ │ │ ├── check.py │ │ │ │ ├── clean.py │ │ │ │ ├── config.py │ │ │ │ ├── install.py │ │ │ │ ├── install_data.py │ │ │ │ ├── install_egg_info.py │ │ │ │ ├── install_headers.py │ │ │ │ ├── install_lib.py │ │ │ │ ├── install_scripts.py │ │ │ │ ├── register.py │ │ │ │ ├── sdist.py │ │ │ │ └── upload.py │ │ │ ├── config.py │ │ │ ├── core.py │ │ │ ├── cygwinccompiler.py │ │ │ ├── debug.py │ │ │ ├── dep_util.py │ │ │ ├── dir_util.py │ │ │ ├── dist.py │ │ │ ├── errors.py │ │ │ ├── extension.py │ │ │ ├── fancy_getopt.py │ │ │ ├── file_util.py │ │ │ ├── filelist.py │ │ │ ├── log.py │ │ │ ├── msvc9compiler.py │ │ │ ├── msvccompiler.py │ │ │ ├── spawn.py │ │ │ ├── sysconfig.py │ │ │ ├── text_file.py │ │ │ ├── unixccompiler.py │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ └── versionpredicate.py │ │ ├── _imp.py │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── ordered_set.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── _typing.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── pyparsing.py │ │ │ └── six.py │ │ ├── archive_util.py │ │ ├── build_meta.py │ │ ├── cli-32.exe │ │ ├── cli-64.exe │ │ ├── cli.exe │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── alias.py │ │ │ ├── bdist_egg.py │ │ │ ├── bdist_rpm.py │ │ │ ├── bdist_wininst.py │ │ │ ├── build_clib.py │ │ │ ├── build_ext.py │ │ │ ├── build_py.py │ │ │ ├── develop.py │ │ │ ├── dist_info.py │ │ │ ├── easy_install.py │ │ │ ├── egg_info.py │ │ │ ├── install.py │ │ │ ├── install_egg_info.py │ │ │ ├── install_lib.py │ │ │ ├── install_scripts.py │ │ │ ├── launcher manifest.xml │ │ │ ├── py36compat.py │ │ │ ├── register.py │ │ │ ├── rotate.py │ │ │ ├── saveopts.py │ │ │ ├── sdist.py │ │ │ ├── setopt.py │ │ │ ├── test.py │ │ │ ├── upload.py │ │ │ └── upload_docs.py │ │ ├── config.py │ │ ├── dep_util.py │ │ ├── depends.py │ │ ├── dist.py │ │ ├── errors.py │ │ ├── extension.py │ │ ├── extern │ │ │ └── __init__.py │ │ ├── glibc.py │ │ ├── glob.py │ │ ├── gui-32.exe │ │ ├── gui-64.exe │ │ ├── gui.exe │ │ ├── installer.py │ │ ├── launch.py │ │ ├── lib2to3_ex.py │ │ ├── monkey.py │ │ ├── msvc.py │ │ ├── namespaces.py │ │ ├── package_index.py │ │ ├── pep425tags.py │ │ ├── py27compat.py │ │ ├── py31compat.py │ │ ├── py33compat.py │ │ ├── py34compat.py │ │ ├── sandbox.py │ │ ├── script (dev).tmpl │ │ ├── script.tmpl │ │ ├── site-patch.py │ │ ├── ssl_support.py │ │ ├── unicode_utils.py │ │ ├── version.py │ │ ├── wheel.py │ │ └── windows_support.py │ │ ├── six-1.15.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ └── six.py │ ├── python.exe │ ├── python3.dll │ ├── python37._pth │ ├── python37.dll │ ├── python37.zip │ ├── pythonw.exe │ └── vcruntime140.dll ├── README.md └── ScreenShot ├── PyQt.png ├── PyQt_code.png ├── PyQt_menu.png ├── WebSocketDemo.gif ├── editor.png ├── editor_lint.png ├── editor_menu.png └── workspace.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/.gitignore -------------------------------------------------------------------------------- /Designer/Linux/plugins/designer/CustomWidgets/PyQt Plugin Dir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Designer/Linux/plugins/designer/CustomWidgets/pluginwidgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Designer/Linux/plugins/designer/data/beautify-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Linux/plugins/designer/data/beautify-css.js -------------------------------------------------------------------------------- /Designer/Linux/plugins/designer/data/beautify-css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Linux/plugins/designer/data/beautify-css.json -------------------------------------------------------------------------------- /Designer/Linux/plugins/designer/data/consola.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Linux/plugins/designer/data/consola.ttf -------------------------------------------------------------------------------- /Designer/Linux/plugins/designer/data/csslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Linux/plugins/designer/data/csslint.js -------------------------------------------------------------------------------- /Designer/Linux/plugins/designer/data/csslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Linux/plugins/designer/data/csslint.json -------------------------------------------------------------------------------- /Designer/Linux/plugins/designer/data/qsseditor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Linux/plugins/designer/data/qsseditor.json -------------------------------------------------------------------------------- /Designer/Linux/plugins/designer/liblogplugin5.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Linux/plugins/designer/liblogplugin5.so -------------------------------------------------------------------------------- /Designer/Linux/plugins/designer/libmenusplugin5.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Linux/plugins/designer/libmenusplugin5.so -------------------------------------------------------------------------------- /Designer/Linux/plugins/designer/libpyqtplugin5.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Linux/plugins/designer/libpyqtplugin5.so -------------------------------------------------------------------------------- /Designer/Linux/plugins/designer/libqsseditorplugin5.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Linux/plugins/designer/libqsseditorplugin5.so -------------------------------------------------------------------------------- /Designer/Linux/plugins/designer/libwebsocketplugin5.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Linux/plugins/designer/libwebsocketplugin5.so -------------------------------------------------------------------------------- /Designer/Linux/plugins/designer/libworkspaceplugin5.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Linux/plugins/designer/libworkspaceplugin5.so -------------------------------------------------------------------------------- /Designer/Windows/plugins/designer/CustomWidgets/PyQt Plugin Dir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Designer/Windows/plugins/designer/CustomWidgets/pluginwidgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Designer/Windows/plugins/designer/data/beautify-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Windows/plugins/designer/data/beautify-css.js -------------------------------------------------------------------------------- /Designer/Windows/plugins/designer/data/beautify-css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Windows/plugins/designer/data/beautify-css.json -------------------------------------------------------------------------------- /Designer/Windows/plugins/designer/data/consola.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Windows/plugins/designer/data/consola.ttf -------------------------------------------------------------------------------- /Designer/Windows/plugins/designer/data/csslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Windows/plugins/designer/data/csslint.js -------------------------------------------------------------------------------- /Designer/Windows/plugins/designer/data/csslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Windows/plugins/designer/data/csslint.json -------------------------------------------------------------------------------- /Designer/Windows/plugins/designer/data/qsseditor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Windows/plugins/designer/data/qsseditor.json -------------------------------------------------------------------------------- /Designer/Windows/plugins/designer/logplugin5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Windows/plugins/designer/logplugin5.dll -------------------------------------------------------------------------------- /Designer/Windows/plugins/designer/menusplugin5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Windows/plugins/designer/menusplugin5.dll -------------------------------------------------------------------------------- /Designer/Windows/plugins/designer/pyqtplugin5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Windows/plugins/designer/pyqtplugin5.dll -------------------------------------------------------------------------------- /Designer/Windows/plugins/designer/qsseditorplugin5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Windows/plugins/designer/qsseditorplugin5.dll -------------------------------------------------------------------------------- /Designer/Windows/plugins/designer/websocketplugin5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Windows/plugins/designer/websocketplugin5.dll -------------------------------------------------------------------------------- /Designer/Windows/plugins/designer/workspaceplugin5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Designer/Windows/plugins/designer/workspaceplugin5.dll -------------------------------------------------------------------------------- /Python/Linux/local/bin/css-beautify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/bin/css-beautify -------------------------------------------------------------------------------- /Python/Linux/local/bin/easy_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/bin/easy_install -------------------------------------------------------------------------------- /Python/Linux/local/bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/bin/pip3 -------------------------------------------------------------------------------- /Python/Linux/local/bin/pylupdate5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/bin/pylupdate5 -------------------------------------------------------------------------------- /Python/Linux/local/bin/pyrcc5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/bin/pyrcc5 -------------------------------------------------------------------------------- /Python/Linux/local/bin/python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/bin/python3 -------------------------------------------------------------------------------- /Python/Linux/local/bin/python3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/bin/python3m -------------------------------------------------------------------------------- /Python/Linux/local/bin/pyuic5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/bin/pyuic5 -------------------------------------------------------------------------------- /Python/Linux/local/bin/qt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/bin/qt.conf -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/__future__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/__future__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/__phello__.foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/__phello__.foo.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/_bootlocale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/_bootlocale.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/_collections_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/_collections_abc.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/_compat_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/_compat_pickle.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/_compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/_compression.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/_dummy_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/_dummy_thread.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/_markupbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/_markupbase.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/_osx_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/_osx_support.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/_pydecimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/_pydecimal.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/_pyio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/_pyio.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/_sitebuiltins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/_sitebuiltins.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/_strptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/_strptime.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/_threading_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/_threading_local.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/_weakrefset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/_weakrefset.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/abc.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/aifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/aifc.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/antigravity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/antigravity.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/argparse.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/ast.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asynchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asynchat.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/base_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/base_events.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/base_futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/base_futures.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/base_subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/base_subprocess.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/base_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/base_tasks.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/compat.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/constants.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/coroutines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/coroutines.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/events.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/futures.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/locks.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/log.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/proactor_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/proactor_events.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/protocols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/protocols.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/queues.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/selector_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/selector_events.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/sslproto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/sslproto.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/streams.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/subprocess.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/tasks.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/test_utils.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/transports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/transports.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/unix_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/unix_events.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/windows_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/windows_events.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncio/windows_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncio/windows_utils.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/asyncore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/asyncore.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/base64.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/bdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/bdb.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/binhex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/binhex.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/bisect.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/bz2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/bz2.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/cProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/cProfile.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/calendar.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/cgi.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/cgitb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/cgitb.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/chunk.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/cmd.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/code.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/codecs.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/codeop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/codeop.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/collections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/collections/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/collections/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/collections/abc.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/colorsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/colorsys.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/compileall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/compileall.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/concurrent/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/config-3.6m-x86_64-linux-gnu/Setup.local: -------------------------------------------------------------------------------- 1 | # Edit this file for local setup changes 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/configparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/configparser.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/contextlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/contextlib.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/copy.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/copyreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/copyreg.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/crypt.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/csv.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/ctypes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/ctypes/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/ctypes/_endian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/ctypes/_endian.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/ctypes/macholib/dyld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/ctypes/macholib/dyld.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/ctypes/macholib/dylib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/ctypes/macholib/dylib.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/ctypes/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/ctypes/util.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/ctypes/wintypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/ctypes/wintypes.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/curses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/curses/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/curses/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/curses/ascii.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/curses/has_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/curses/has_key.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/curses/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/curses/panel.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/curses/textpad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/curses/textpad.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/datetime.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/dbm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/dbm/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/dbm/dumb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/dbm/dumb.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/dbm/gnu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/dbm/gnu.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/dbm/ndbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/dbm/ndbm.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/decimal.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/difflib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/difflib.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/dis.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/README -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/_msvccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/_msvccompiler.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/archive_util.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/bcppcompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/bcppcompiler.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/ccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/ccompiler.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/cmd.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/command/bdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/command/bdist.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/command/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/command/build.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/command/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/command/check.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/command/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/command/clean.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/command/sdist.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/config.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/core.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/debug.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/dep_util.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/dir_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/dir_util.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/dist.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/errors.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/extension.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/fancy_getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/fancy_getopt.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/file_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/file_util.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/filelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/filelist.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/log.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/msvc9compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/msvc9compiler.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/msvccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/msvccompiler.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/spawn.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/sysconfig.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/text_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/text_file.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/unixccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/unixccompiler.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/util.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/distutils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/distutils/version.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/doctest.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/dummy_threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/dummy_threading.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/_encoded_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/_encoded_words.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/_parseaddr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/_parseaddr.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/_policybase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/_policybase.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/architecture.rst -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/base64mime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/base64mime.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/charset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/charset.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/contentmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/contentmanager.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/encoders.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/errors.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/feedparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/feedparser.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/generator.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/header.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/headerregistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/headerregistry.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/iterators.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/message.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/mime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/mime/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/mime/application.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/mime/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/mime/audio.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/mime/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/mime/base.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/mime/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/mime/image.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/mime/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/mime/message.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/mime/multipart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/mime/multipart.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/mime/nonmultipart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/mime/nonmultipart.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/mime/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/mime/text.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/parser.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/policy.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/quoprimime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/quoprimime.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/email/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/email/utils.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/aliases.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/ascii.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/base64_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/base64_codec.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/big5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/big5.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/big5hkscs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/big5hkscs.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/bz2_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/bz2_codec.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/charmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/charmap.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp037.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp037.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp1006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp1006.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp1026.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp1026.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp1125.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp1125.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp1140.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp1140.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp1250.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp1250.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp1251.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp1251.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp1252.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp1252.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp1253.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp1253.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp1254.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp1254.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp1255.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp1255.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp1256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp1256.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp1257.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp1257.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp1258.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp1258.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp273.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp273.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp424.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp424.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp437.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp437.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp500.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp65001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp65001.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp720.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp720.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp737.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp737.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp775.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp775.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp850.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp850.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp852.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp852.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp855.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp855.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp856.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp856.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp857.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp857.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp858.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp858.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp860.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp860.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp861.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp861.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp862.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp862.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp863.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp863.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp864.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp864.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp865.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp865.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp866.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp866.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp869.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp869.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp874.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp874.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp875.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp875.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp932.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp932.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp949.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp949.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/cp950.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/cp950.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/euc_jis_2004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/euc_jis_2004.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/euc_jisx0213.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/euc_jisx0213.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/euc_jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/euc_jp.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/euc_kr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/euc_kr.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/gb18030.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/gb18030.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/gb2312.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/gb2312.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/gbk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/gbk.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/hex_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/hex_codec.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/hp_roman8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/hp_roman8.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/hz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/hz.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/idna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/idna.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso2022_jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso2022_jp.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso2022_jp_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso2022_jp_1.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso2022_jp_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso2022_jp_2.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso2022_jp_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso2022_jp_3.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso2022_kr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso2022_kr.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso8859_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso8859_1.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso8859_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso8859_10.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso8859_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso8859_11.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso8859_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso8859_13.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso8859_14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso8859_14.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso8859_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso8859_15.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso8859_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso8859_16.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso8859_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso8859_2.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso8859_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso8859_3.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso8859_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso8859_4.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso8859_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso8859_5.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso8859_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso8859_6.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso8859_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso8859_7.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso8859_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso8859_8.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/iso8859_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/iso8859_9.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/johab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/johab.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/koi8_r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/koi8_r.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/koi8_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/koi8_t.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/koi8_u.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/koi8_u.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/kz1048.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/kz1048.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/latin_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/latin_1.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/mac_arabic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/mac_arabic.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/mac_centeuro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/mac_centeuro.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/mac_croatian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/mac_croatian.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/mac_cyrillic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/mac_cyrillic.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/mac_farsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/mac_farsi.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/mac_greek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/mac_greek.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/mac_iceland.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/mac_iceland.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/mac_latin2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/mac_latin2.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/mac_roman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/mac_roman.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/mac_romanian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/mac_romanian.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/mac_turkish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/mac_turkish.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/mbcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/mbcs.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/oem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/oem.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/palmos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/palmos.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/ptcp154.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/ptcp154.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/punycode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/punycode.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/quopri_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/quopri_codec.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/rot_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/rot_13.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/shift_jis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/shift_jis.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/tis_620.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/tis_620.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/undefined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/undefined.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/utf_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/utf_16.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/utf_16_be.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/utf_16_be.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/utf_16_le.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/utf_16_le.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/utf_32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/utf_32.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/utf_32_be.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/utf_32_be.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/utf_32_le.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/utf_32_le.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/utf_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/utf_7.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/utf_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/utf_8.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/utf_8_sig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/utf_8_sig.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/uu_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/uu_codec.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/encodings/zlib_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/encodings/zlib_codec.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/ensurepip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/ensurepip/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/ensurepip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/ensurepip/__main__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/ensurepip/_uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/ensurepip/_uninstall.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/enum.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/filecmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/filecmp.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/fileinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/fileinput.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/fnmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/fnmatch.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/formatter.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/fractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/fractions.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/ftplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/ftplib.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/functools.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/genericpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/genericpath.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/getopt.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/getpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/getpass.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/gettext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/gettext.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/glob.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/gzip.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/hashlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/hashlib.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/heapq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/heapq.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/hmac.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/html/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/html/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/html/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/html/entities.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/html/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/html/parser.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/http/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/http/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/http/client.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/http/cookiejar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/http/cookiejar.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/http/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/http/cookies.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/http/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/http/server.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/imaplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/imaplib.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/imghdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/imghdr.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/imp.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/importlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/importlib/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/importlib/_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/importlib/_bootstrap.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/importlib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/importlib/abc.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/importlib/machinery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/importlib/machinery.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/importlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/importlib/util.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/inspect.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/io.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/ipaddress.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/json/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/json/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/json/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/json/decoder.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/json/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/json/encoder.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/json/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/json/scanner.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/json/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/json/tool.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/keyword.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/Grammar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/Grammar.txt -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/PatternGrammar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/PatternGrammar.txt -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/__init__.py: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/__main__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/btm_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/btm_matcher.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/btm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/btm_utils.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/fixer_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/fixer_base.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/fixer_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/fixer_util.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/fixes/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_apply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_apply.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_dict.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_exec.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_input.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_long.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_long.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_map.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_ne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_ne.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_next.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_next.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_paren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_paren.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_print.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_raise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_raise.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_repr.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_throw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_throw.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_types.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/fixes/fix_zip.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/main.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/patcomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/patcomp.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/pgen2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/pgen2/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/pgen2/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/pgen2/conv.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/pgen2/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/pgen2/driver.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/pgen2/grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/pgen2/grammar.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/pgen2/literals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/pgen2/literals.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/pgen2/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/pgen2/parse.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/pgen2/pgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/pgen2/pgen.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/pgen2/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/pgen2/token.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/pgen2/tokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/pgen2/tokenize.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/pygram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/pygram.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/pytree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/pytree.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lib2to3/refactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lib2to3/refactor.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/linecache.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/locale.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/logging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/logging/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/logging/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/logging/config.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/logging/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/logging/handlers.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/lzma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/lzma.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/macpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/macpath.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/macurl2path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/macurl2path.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/mailbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/mailbox.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/mailcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/mailcap.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/mimetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/mimetypes.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/modulefinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/modulefinder.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/multiprocessing/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/multiprocessing/context.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/multiprocessing/heap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/multiprocessing/heap.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/multiprocessing/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/multiprocessing/pool.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/multiprocessing/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/multiprocessing/process.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/multiprocessing/queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/multiprocessing/queues.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/multiprocessing/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/multiprocessing/spawn.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/multiprocessing/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/multiprocessing/util.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/netrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/netrc.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/nntplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/nntplib.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/ntpath.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/nturl2path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/nturl2path.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/numbers.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/opcode.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/operator.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/optparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/optparse.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/os.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/pathlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/pathlib.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/pdb.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/pickle.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/pickletools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/pickletools.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/pipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/pipes.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/pkgutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/pkgutil.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/platform.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/plistlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/plistlib.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/poplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/poplib.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/posixpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/posixpath.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/pprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/pprint.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/profile.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/pstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/pstats.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/pty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/pty.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/py_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/py_compile.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/pyclbr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/pyclbr.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/pydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/pydoc.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/pydoc_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/pydoc_data/_pydoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/pydoc_data/_pydoc.css -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/pydoc_data/topics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/pydoc_data/topics.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/queue.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/quopri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/quopri.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/random.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/re.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/reprlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/reprlib.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/rlcompleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/rlcompleter.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/runpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/runpy.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/sched.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/secrets.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/selectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/selectors.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/shelve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/shelve.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/shlex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/shlex.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/shutil.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/signal.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/Pygments-2.7.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/Pygments-2.7.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/Pygments-2.7.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pygments 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/site-packages/README.txt -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/css_beautify-1.10.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/css_beautify-1.10.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/css_beautify-1.10.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | cssbeautifier 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/cssbeautifier/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.10.3' 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip-20.2.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip-20.2.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.06.20" 4 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.10' 2 | 3 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 0) 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.8.2' 5 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/setuptools-50.3.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/setuptools-50.3.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/setuptools-50.3.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/six-1.15.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/six-1.15.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | six 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site-packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/site-packages/six.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/site.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/smtpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/smtpd.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/smtplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/smtplib.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/sndhdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/sndhdr.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/socket.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/socketserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/socketserver.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/sqlite3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/sqlite3/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/sqlite3/dbapi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/sqlite3/dbapi2.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/sqlite3/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/sqlite3/dump.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/sre_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/sre_compile.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/sre_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/sre_constants.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/sre_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/sre_parse.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/ssl.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/stat.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/statistics.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/string.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/stringprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/stringprep.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/struct.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/subprocess.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/sunau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/sunau.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/symbol.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/symtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/symtable.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/sysconfig.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/tabnanny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/tabnanny.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/tarfile.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/telnetlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/telnetlib.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/tempfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/tempfile.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/test/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/test/support/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/test/support/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/test/support/testresult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/test/support/testresult.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/textwrap.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/this.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/this.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/threading.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/timeit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/timeit.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/token.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/tokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/tokenize.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/trace.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/traceback.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/tracemalloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/tracemalloc.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/tty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/tty.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/types.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/typing.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/unittest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/unittest/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/unittest/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/unittest/__main__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/unittest/case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/unittest/case.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/unittest/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/unittest/loader.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/unittest/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/unittest/main.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/unittest/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/unittest/mock.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/unittest/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/unittest/result.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/unittest/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/unittest/runner.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/unittest/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/unittest/signals.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/unittest/suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/unittest/suite.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/unittest/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/unittest/util.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/urllib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/urllib/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/urllib/error.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/urllib/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/urllib/parse.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/urllib/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/urllib/request.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/urllib/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/urllib/response.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/urllib/robotparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/urllib/robotparser.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/uu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/uu.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/uuid.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/venv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/venv/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/venv/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/venv/__main__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/warnings.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/wave.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/weakref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/weakref.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/webbrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/webbrowser.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/wsgiref/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/wsgiref/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/wsgiref/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/wsgiref/handlers.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/wsgiref/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/wsgiref/headers.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/wsgiref/simple_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/wsgiref/simple_server.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/wsgiref/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/wsgiref/util.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/wsgiref/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/wsgiref/validate.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xdrlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xdrlib.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/dom/NodeFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/dom/NodeFilter.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/dom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/dom/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/dom/domreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/dom/domreg.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/dom/expatbuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/dom/expatbuilder.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/dom/minicompat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/dom/minicompat.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/dom/minidom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/dom/minidom.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/dom/pulldom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/dom/pulldom.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/dom/xmlbuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/dom/xmlbuilder.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/etree/ElementPath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/etree/ElementPath.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/etree/ElementTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/etree/ElementTree.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/etree/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/etree/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/etree/cElementTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/etree/cElementTree.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/parsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/parsers/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/parsers/expat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/parsers/expat.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/sax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/sax/__init__.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/sax/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/sax/_exceptions.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/sax/expatreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/sax/expatreader.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/sax/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/sax/handler.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/sax/saxutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/sax/saxutils.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xml/sax/xmlreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xml/sax/xmlreader.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xmlrpc/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xmlrpc/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xmlrpc/client.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/xmlrpc/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/xmlrpc/server.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/zipapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/zipapp.py -------------------------------------------------------------------------------- /Python/Linux/local/lib/python3.6/zipfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib/python3.6/zipfile.py -------------------------------------------------------------------------------- /Python/Linux/local/lib64/libcrypto.so.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib64/libcrypto.so.10 -------------------------------------------------------------------------------- /Python/Linux/local/lib64/libfontconfig.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib64/libfontconfig.so.1 -------------------------------------------------------------------------------- /Python/Linux/local/lib64/libpython3.6m.so.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib64/libpython3.6m.so.1.0 -------------------------------------------------------------------------------- /Python/Linux/local/lib64/libpython3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib64/libpython3.so -------------------------------------------------------------------------------- /Python/Linux/local/lib64/libssl.so.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/local/lib64/libssl.so.10 -------------------------------------------------------------------------------- /Python/Linux/local/lib64/python3.6/site-packages/PyQt3D-5.15.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib64/python3.6/site-packages/PyQt3D-5.15.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib64/python3.6/site-packages/PyQt5-5.15.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib64/python3.6/site-packages/PyQt5-5.15.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib64/python3.6/site-packages/PyQt5_sip-12.8.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib64/python3.6/site-packages/PyQt5_sip-12.8.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | PyQt5 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib64/python3.6/site-packages/PyQtChart-5.15.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib64/python3.6/site-packages/PyQtChart-5.15.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib64/python3.6/site-packages/PyQtDataVisualization-5.15.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib64/python3.6/site-packages/PyQtDataVisualization-5.15.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib64/python3.6/site-packages/PyQtPurchasing-5.15.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib64/python3.6/site-packages/PyQtPurchasing-5.15.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib64/python3.6/site-packages/PyQtWebEngine-5.15.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib64/python3.6/site-packages/PyQtWebEngine-5.15.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/local/lib64/python3.6/site-packages/QScintilla-2.11.5.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Linux/local/lib64/python3.6/site-packages/QScintilla-2.11.5.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Linux/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/pip -------------------------------------------------------------------------------- /Python/Linux/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Linux/python -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/_asyncio.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/_asyncio.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/_bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/_bz2.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/_ctypes.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/_decimal.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/_decimal.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/_elementtree.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/_elementtree.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/_hashlib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/_hashlib.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/_lzma.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/_lzma.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/_msi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/_msi.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/_multiprocessing.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/_multiprocessing.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/_overlapped.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/_overlapped.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/_queue.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/_queue.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/_socket.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/_sqlite3.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/_sqlite3.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/_ssl.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/libcrypto-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/libcrypto-1_1.dll -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/libssl-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/libssl-1_1.dll -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/py.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/py.ico -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/pyc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/pyc.ico -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/pyd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/pyd.ico -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/pyexpat.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/pyexpat.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/python_lib.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/python_lib.cat -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/python_tools.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/python_tools.cat -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/select.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/sqlite3.dll -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/unicodedata.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/unicodedata.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/DLLs/winsound.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/DLLs/winsound.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt3D-5.15.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5-5.15.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QAxContainer.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QAxContainer.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/Qsci.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/Qsci.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/Qt.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/Qt.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/Qt3DCore.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/Qt3DCore.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/Qt3DExtras.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/Qt3DExtras.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/Qt3DInput.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/Qt3DInput.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/Qt3DLogic.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/Qt3DLogic.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/Qt3DRender.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/Qt3DRender.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtBluetooth.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtBluetooth.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtChart.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtChart.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtCore.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtCore.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtDBus.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtDBus.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtDesigner.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtDesigner.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtGui.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtGui.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtHelp.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtHelp.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtLocation.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtLocation.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtMultimedia.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtMultimedia.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtNetwork.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtNetwork.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtNfc.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtNfc.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtOpenGL.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtOpenGL.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtPurchasing.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtPurchasing.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtQml.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtQml.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtQuick.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtQuick.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtQuick3D.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtQuick3D.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtSensors.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtSensors.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtSerialPort.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtSerialPort.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtSql.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtSql.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtSvg.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtSvg.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtTest.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtTest.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtWebChannel.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtWebChannel.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtWebEngine.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtWebEngine.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtWebSockets.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtWebSockets.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtWidgets.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtWidgets.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/QtXml.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/QtXml.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/__init__.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/pylupdate.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/pylupdate.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/pyrcc.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/pyrcc.pyd -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/pyrcc_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/pyrcc_main.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/uic/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/uic/driver.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5/uic/pyuic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/PyQt5/uic/pyuic.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5_sip-12.8.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQt5_sip-12.8.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | PyQt5 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQtChart-5.15.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQtDataVisualization-5.15.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQtPurchasing-5.15.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/PyQtWebEngine-5.15.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/Pygments-2.7.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/Pygments-2.7.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/Pygments-2.7.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pygments 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/QScintilla-2.11.5.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/README.txt -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/css_beautify-1.10.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/css_beautify-1.10.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | cssbeautifier 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/cssbeautifier/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.10.3' 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/easy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/easy_install.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip-20.2.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip-20.2.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.06.20" 4 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.10' 2 | 3 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 0) 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.8.2' 5 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/pip/_vendor/six.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pygments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/pygments/__init__.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pygments/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/pygments/__main__.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pygments/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/pygments/cmdline.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pygments/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/pygments/console.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pygments/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/pygments/filter.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pygments/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/pygments/lexer.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pygments/lexers/d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/pygments/lexers/d.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pygments/lexers/j.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/pygments/lexers/j.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pygments/lexers/r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/pygments/lexers/r.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pygments/modeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/pygments/modeline.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pygments/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/pygments/plugin.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pygments/regexopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/pygments/regexopt.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pygments/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/pygments/scanner.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pygments/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/pygments/style.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pygments/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/pygments/token.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/pygments/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/pygments/util.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/setuptools-49.6.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/setuptools-49.6.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/setuptools-49.6.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/setuptools/_imp.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/setuptools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/setuptools/config.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/setuptools/errors.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/setuptools/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/setuptools/glibc.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/six-1.15.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/six-1.15.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | six 2 | -------------------------------------------------------------------------------- /Python/Windows/bin/Lib/site-packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/Lib/site-packages/six.py -------------------------------------------------------------------------------- /Python/Windows/bin/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/python.exe -------------------------------------------------------------------------------- /Python/Windows/bin/python3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/python3.dll -------------------------------------------------------------------------------- /Python/Windows/bin/python37._pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/python37._pth -------------------------------------------------------------------------------- /Python/Windows/bin/python37.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/python37.dll -------------------------------------------------------------------------------- /Python/Windows/bin/python37.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/python37.zip -------------------------------------------------------------------------------- /Python/Windows/bin/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/pythonw.exe -------------------------------------------------------------------------------- /Python/Windows/bin/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/Python/Windows/bin/vcruntime140.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShot/PyQt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/ScreenShot/PyQt.png -------------------------------------------------------------------------------- /ScreenShot/PyQt_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/ScreenShot/PyQt_code.png -------------------------------------------------------------------------------- /ScreenShot/PyQt_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/ScreenShot/PyQt_menu.png -------------------------------------------------------------------------------- /ScreenShot/WebSocketDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/ScreenShot/WebSocketDemo.gif -------------------------------------------------------------------------------- /ScreenShot/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/ScreenShot/editor.png -------------------------------------------------------------------------------- /ScreenShot/editor_lint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/ScreenShot/editor_lint.png -------------------------------------------------------------------------------- /ScreenShot/editor_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/ScreenShot/editor_menu.png -------------------------------------------------------------------------------- /ScreenShot/workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyQt5/QtDesignerPlugins/HEAD/ScreenShot/workspace.png --------------------------------------------------------------------------------