├── .idea ├── .gitignore ├── SoftwareDownloader.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── __pycache__ └── search.cpython-38.pyc ├── main ├── DownLoadWin.py ├── Main.py ├── MainWin.py ├── __pycache__ │ ├── DownLoadWin.cpython-38.pyc │ ├── MainWin.cpython-38.pyc │ ├── func.cpython-38.pyc │ └── main.cpython-38.pyc └── func.py ├── src └── images │ ├── PureSoftwareDownloader.ico │ ├── bkg.jpg │ ├── btn_search.png │ ├── download.png │ └── ico.png └── venv ├── Lib └── site-packages │ ├── PyQt5-5.15.2.dist-info │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ └── entry_points.txt │ ├── PyQt5 │ ├── QAxContainer.pyd │ ├── QAxContainer.pyi │ ├── Qt.pyd │ ├── Qt │ │ ├── bin │ │ │ ├── Qt5Bluetooth.dll │ │ │ ├── Qt5Core.dll │ │ │ ├── Qt5DBus.dll │ │ │ ├── Qt5Designer.dll │ │ │ ├── Qt5Gui.dll │ │ │ ├── Qt5Help.dll │ │ │ ├── Qt5Location.dll │ │ │ ├── Qt5Multimedia.dll │ │ │ ├── Qt5MultimediaWidgets.dll │ │ │ ├── Qt5Network.dll │ │ │ ├── Qt5NetworkAuth.dll │ │ │ ├── Qt5Nfc.dll │ │ │ ├── Qt5OpenGL.dll │ │ │ ├── Qt5Positioning.dll │ │ │ ├── Qt5PositioningQuick.dll │ │ │ ├── Qt5PrintSupport.dll │ │ │ ├── Qt5Qml.dll │ │ │ ├── Qt5QmlModels.dll │ │ │ ├── Qt5QmlWorkerScript.dll │ │ │ ├── Qt5Quick.dll │ │ │ ├── Qt5Quick3D.dll │ │ │ ├── Qt5Quick3DAssetImport.dll │ │ │ ├── Qt5Quick3DRender.dll │ │ │ ├── Qt5Quick3DRuntimeRender.dll │ │ │ ├── Qt5Quick3DUtils.dll │ │ │ ├── Qt5QuickControls2.dll │ │ │ ├── Qt5QuickParticles.dll │ │ │ ├── Qt5QuickShapes.dll │ │ │ ├── Qt5QuickTemplates2.dll │ │ │ ├── Qt5QuickTest.dll │ │ │ ├── Qt5QuickWidgets.dll │ │ │ ├── Qt5RemoteObjects.dll │ │ │ ├── Qt5Sensors.dll │ │ │ ├── Qt5SerialPort.dll │ │ │ ├── Qt5Sql.dll │ │ │ ├── Qt5Svg.dll │ │ │ ├── Qt5Test.dll │ │ │ ├── Qt5TextToSpeech.dll │ │ │ ├── Qt5WebChannel.dll │ │ │ ├── Qt5WebSockets.dll │ │ │ ├── Qt5Widgets.dll │ │ │ ├── Qt5WinExtras.dll │ │ │ ├── Qt5Xml.dll │ │ │ ├── Qt5XmlPatterns.dll │ │ │ ├── concrt140.dll │ │ │ ├── d3dcompiler_47.dll │ │ │ ├── libEGL.dll │ │ │ ├── libGLESv2.dll │ │ │ ├── libcrypto-1_1-x64.dll │ │ │ ├── libeay32.dll │ │ │ ├── libssl-1_1-x64.dll │ │ │ ├── msvcp140.dll │ │ │ ├── msvcp140_1.dll │ │ │ ├── msvcp140_2.dll │ │ │ ├── opengl32sw.dll │ │ │ ├── ssleay32.dll │ │ │ ├── vcruntime140.dll │ │ │ └── vcruntime140_1.dll │ │ ├── plugins │ │ │ ├── assetimporters │ │ │ │ ├── assimp.dll │ │ │ │ └── uip.dll │ │ │ ├── audio │ │ │ │ ├── qtaudio_wasapi.dll │ │ │ │ └── qtaudio_windows.dll │ │ │ ├── bearer │ │ │ │ └── qgenericbearer.dll │ │ │ ├── generic │ │ │ │ └── qtuiotouchplugin.dll │ │ │ ├── geometryloaders │ │ │ │ ├── defaultgeometryloader.dll │ │ │ │ └── gltfgeometryloader.dll │ │ │ ├── geoservices │ │ │ │ ├── qtgeoservices_esri.dll │ │ │ │ ├── qtgeoservices_itemsoverlay.dll │ │ │ │ ├── qtgeoservices_mapbox.dll │ │ │ │ ├── qtgeoservices_nokia.dll │ │ │ │ └── qtgeoservices_osm.dll │ │ │ ├── iconengines │ │ │ │ └── qsvgicon.dll │ │ │ ├── imageformats │ │ │ │ ├── qgif.dll │ │ │ │ ├── qicns.dll │ │ │ │ ├── qico.dll │ │ │ │ ├── qjpeg.dll │ │ │ │ ├── qsvg.dll │ │ │ │ ├── qtga.dll │ │ │ │ ├── qtiff.dll │ │ │ │ ├── qwbmp.dll │ │ │ │ └── qwebp.dll │ │ │ ├── mediaservice │ │ │ │ ├── dsengine.dll │ │ │ │ ├── qtmedia_audioengine.dll │ │ │ │ └── wmfengine.dll │ │ │ ├── platforms │ │ │ │ ├── qminimal.dll │ │ │ │ ├── qoffscreen.dll │ │ │ │ ├── qwebgl.dll │ │ │ │ └── qwindows.dll │ │ │ ├── platformthemes │ │ │ │ └── qxdgdesktopportal.dll │ │ │ ├── playlistformats │ │ │ │ └── qtmultimedia_m3u.dll │ │ │ ├── position │ │ │ │ ├── qtposition_positionpoll.dll │ │ │ │ ├── qtposition_serialnmea.dll │ │ │ │ └── qtposition_winrt.dll │ │ │ ├── printsupport │ │ │ │ └── windowsprintersupport.dll │ │ │ ├── renderers │ │ │ │ └── openglrenderer.dll │ │ │ ├── sceneparsers │ │ │ │ ├── gltfsceneexport.dll │ │ │ │ └── gltfsceneimport.dll │ │ │ ├── sensorgestures │ │ │ │ ├── qtsensorgestures_plugin.dll │ │ │ │ └── qtsensorgestures_shakeplugin.dll │ │ │ ├── sensors │ │ │ │ └── qtsensors_generic.dll │ │ │ ├── sqldrivers │ │ │ │ ├── qsqlite.dll │ │ │ │ ├── qsqlodbc.dll │ │ │ │ └── qsqlpsql.dll │ │ │ ├── styles │ │ │ │ └── qwindowsvistastyle.dll │ │ │ ├── texttospeech │ │ │ │ └── qtexttospeech_sapi.dll │ │ │ └── webview │ │ │ │ └── qtwebview_webengine.dll │ │ ├── qml │ │ │ ├── Qt │ │ │ │ ├── WebSockets │ │ │ │ │ └── qmldir │ │ │ │ ├── labs │ │ │ │ │ ├── animation │ │ │ │ │ │ ├── labsanimationplugin.dll │ │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── calendar │ │ │ │ │ │ ├── DayOfWeekRow.qml │ │ │ │ │ │ ├── DayOfWeekRow.qmlc │ │ │ │ │ │ ├── MonthGrid.qml │ │ │ │ │ │ ├── MonthGrid.qmlc │ │ │ │ │ │ ├── WeekNumberColumn.qml │ │ │ │ │ │ ├── WeekNumberColumn.qmlc │ │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ │ ├── qmldir │ │ │ │ │ │ └── qtlabscalendarplugin.dll │ │ │ │ │ ├── folderlistmodel │ │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ │ ├── qmldir │ │ │ │ │ │ └── qmlfolderlistmodelplugin.dll │ │ │ │ │ ├── location │ │ │ │ │ │ ├── locationlabsplugin.dll │ │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ │ ├── qmldir │ │ │ │ │ │ └── qtlabsplatformplugin.dll │ │ │ │ │ ├── qmlmodels │ │ │ │ │ │ ├── labsmodelsplugin.dll │ │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ │ ├── qmldir │ │ │ │ │ │ └── qmlsettingsplugin.dll │ │ │ │ │ ├── sharedimage │ │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ │ ├── qmldir │ │ │ │ │ │ └── sharedimageplugin.dll │ │ │ │ │ └── wavefrontmesh │ │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ │ ├── qmldir │ │ │ │ │ │ └── qmlwavefrontmeshplugin.dll │ │ │ │ └── test │ │ │ │ │ └── qtestroot │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ └── qmldir │ │ │ ├── QtBluetooth │ │ │ │ ├── declarative_bluetooth.dll │ │ │ │ ├── plugins.qmltypes │ │ │ │ └── qmldir │ │ │ ├── QtGraphicalEffects │ │ │ │ ├── Blend.qml │ │ │ │ ├── BrightnessContrast.qml │ │ │ │ ├── ColorOverlay.qml │ │ │ │ ├── Colorize.qml │ │ │ │ ├── ConicalGradient.qml │ │ │ │ ├── Desaturate.qml │ │ │ │ ├── DirectionalBlur.qml │ │ │ │ ├── Displace.qml │ │ │ │ ├── DropShadow.qml │ │ │ │ ├── FastBlur.qml │ │ │ │ ├── GammaAdjust.qml │ │ │ │ ├── GaussianBlur.qml │ │ │ │ ├── Glow.qml │ │ │ │ ├── HueSaturation.qml │ │ │ │ ├── InnerShadow.qml │ │ │ │ ├── LevelAdjust.qml │ │ │ │ ├── LinearGradient.qml │ │ │ │ ├── MaskedBlur.qml │ │ │ │ ├── OpacityMask.qml │ │ │ │ ├── RadialBlur.qml │ │ │ │ ├── RadialGradient.qml │ │ │ │ ├── RectangularGlow.qml │ │ │ │ ├── RecursiveBlur.qml │ │ │ │ ├── ThresholdMask.qml │ │ │ │ ├── ZoomBlur.qml │ │ │ │ ├── plugins.qmltypes │ │ │ │ ├── private │ │ │ │ │ ├── DropShadowBase.qml │ │ │ │ │ ├── DropShadowBase.qmlc │ │ │ │ │ ├── FastGlow.qml │ │ │ │ │ ├── FastGlow.qmlc │ │ │ │ │ ├── FastInnerShadow.qml │ │ │ │ │ ├── FastInnerShadow.qmlc │ │ │ │ │ ├── FastMaskedBlur.qml │ │ │ │ │ ├── FastMaskedBlur.qmlc │ │ │ │ │ ├── GaussianDirectionalBlur.qml │ │ │ │ │ ├── GaussianDirectionalBlur.qmlc │ │ │ │ │ ├── GaussianGlow.qml │ │ │ │ │ ├── GaussianGlow.qmlc │ │ │ │ │ ├── GaussianInnerShadow.qml │ │ │ │ │ ├── GaussianInnerShadow.qmlc │ │ │ │ │ ├── GaussianMaskedBlur.qml │ │ │ │ │ ├── GaussianMaskedBlur.qmlc │ │ │ │ │ ├── qmldir │ │ │ │ │ └── qtgraphicaleffectsprivate.dll │ │ │ │ ├── qmldir │ │ │ │ └── qtgraphicaleffectsplugin.dll │ │ │ ├── QtLocation │ │ │ │ ├── declarative_location.dll │ │ │ │ ├── plugins.qmltypes │ │ │ │ └── qmldir │ │ │ ├── QtMultimedia │ │ │ │ ├── Video.qml │ │ │ │ ├── declarative_multimedia.dll │ │ │ │ ├── plugins.qmltypes │ │ │ │ └── qmldir │ │ │ ├── QtNfc │ │ │ │ ├── declarative_nfc.dll │ │ │ │ ├── plugins.qmltypes │ │ │ │ └── qmldir │ │ │ ├── QtPositioning │ │ │ │ ├── declarative_positioning.dll │ │ │ │ ├── plugins.qmltypes │ │ │ │ └── qmldir │ │ │ ├── QtQml │ │ │ │ ├── Models.2 │ │ │ │ │ ├── modelsplugin.dll │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ └── qmldir │ │ │ │ ├── RemoteObjects │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qmldir │ │ │ │ │ └── qtqmlremoteobjects.dll │ │ │ │ ├── StateMachine │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qmldir │ │ │ │ │ └── qtqmlstatemachine.dll │ │ │ │ ├── WorkerScript.2 │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qmldir │ │ │ │ │ └── workerscriptplugin.dll │ │ │ │ ├── plugins.qmltypes │ │ │ │ ├── qmldir │ │ │ │ └── qmlplugin.dll │ │ │ ├── QtQuick.2 │ │ │ │ ├── plugins.qmltypes │ │ │ │ ├── qmldir │ │ │ │ └── qtquick2plugin.dll │ │ │ ├── QtQuick │ │ │ │ ├── Controls.2 │ │ │ │ │ ├── AbstractButton.qml │ │ │ │ │ ├── Action.qml │ │ │ │ │ ├── ActionGroup.qml │ │ │ │ │ ├── ApplicationWindow.qml │ │ │ │ │ ├── BusyIndicator.qml │ │ │ │ │ ├── Button.qml │ │ │ │ │ ├── ButtonGroup.qml │ │ │ │ │ ├── CheckBox.qml │ │ │ │ │ ├── CheckDelegate.qml │ │ │ │ │ ├── ComboBox.qml │ │ │ │ │ ├── Container.qml │ │ │ │ │ ├── Control.qml │ │ │ │ │ ├── DelayButton.qml │ │ │ │ │ ├── Dial.qml │ │ │ │ │ ├── Dialog.qml │ │ │ │ │ ├── DialogButtonBox.qml │ │ │ │ │ ├── Drawer.qml │ │ │ │ │ ├── Frame.qml │ │ │ │ │ ├── Fusion │ │ │ │ │ │ ├── ApplicationWindow.qml │ │ │ │ │ │ ├── BusyIndicator.qml │ │ │ │ │ │ ├── Button.qml │ │ │ │ │ │ ├── ButtonPanel.qml │ │ │ │ │ │ ├── CheckBox.qml │ │ │ │ │ │ ├── CheckDelegate.qml │ │ │ │ │ │ ├── CheckIndicator.qml │ │ │ │ │ │ ├── ComboBox.qml │ │ │ │ │ │ ├── DelayButton.qml │ │ │ │ │ │ ├── Dial.qml │ │ │ │ │ │ ├── Dialog.qml │ │ │ │ │ │ ├── DialogButtonBox.qml │ │ │ │ │ │ ├── Drawer.qml │ │ │ │ │ │ ├── Frame.qml │ │ │ │ │ │ ├── GroupBox.qml │ │ │ │ │ │ ├── HorizontalHeaderView.qml │ │ │ │ │ │ ├── ItemDelegate.qml │ │ │ │ │ │ ├── Label.qml │ │ │ │ │ │ ├── Menu.qml │ │ │ │ │ │ ├── MenuBar.qml │ │ │ │ │ │ ├── MenuBarItem.qml │ │ │ │ │ │ ├── MenuItem.qml │ │ │ │ │ │ ├── MenuSeparator.qml │ │ │ │ │ │ ├── Page.qml │ │ │ │ │ │ ├── PageIndicator.qml │ │ │ │ │ │ ├── Pane.qml │ │ │ │ │ │ ├── Popup.qml │ │ │ │ │ │ ├── ProgressBar.qml │ │ │ │ │ │ ├── RadioButton.qml │ │ │ │ │ │ ├── RadioDelegate.qml │ │ │ │ │ │ ├── RadioIndicator.qml │ │ │ │ │ │ ├── RangeSlider.qml │ │ │ │ │ │ ├── RoundButton.qml │ │ │ │ │ │ ├── ScrollBar.qml │ │ │ │ │ │ ├── ScrollIndicator.qml │ │ │ │ │ │ ├── Slider.qml │ │ │ │ │ │ ├── SliderGroove.qml │ │ │ │ │ │ ├── SliderHandle.qml │ │ │ │ │ │ ├── SpinBox.qml │ │ │ │ │ │ ├── SplitView.qml │ │ │ │ │ │ ├── SwipeDelegate.qml │ │ │ │ │ │ ├── Switch.qml │ │ │ │ │ │ ├── SwitchDelegate.qml │ │ │ │ │ │ ├── SwitchIndicator.qml │ │ │ │ │ │ ├── TabBar.qml │ │ │ │ │ │ ├── TabButton.qml │ │ │ │ │ │ ├── TextArea.qml │ │ │ │ │ │ ├── TextField.qml │ │ │ │ │ │ ├── ToolBar.qml │ │ │ │ │ │ ├── ToolButton.qml │ │ │ │ │ │ ├── ToolSeparator.qml │ │ │ │ │ │ ├── ToolTip.qml │ │ │ │ │ │ ├── Tumbler.qml │ │ │ │ │ │ ├── VerticalHeaderView.qml │ │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ │ ├── qmldir │ │ │ │ │ │ └── qtquickcontrols2fusionstyleplugin.dll │ │ │ │ │ ├── GroupBox.qml │ │ │ │ │ ├── HorizontalHeaderView.qml │ │ │ │ │ ├── Imagine │ │ │ │ │ │ ├── ApplicationWindow.qml │ │ │ │ │ │ ├── BusyIndicator.qml │ │ │ │ │ │ ├── Button.qml │ │ │ │ │ │ ├── CheckBox.qml │ │ │ │ │ │ ├── CheckDelegate.qml │ │ │ │ │ │ ├── ComboBox.qml │ │ │ │ │ │ ├── DelayButton.qml │ │ │ │ │ │ ├── Dial.qml │ │ │ │ │ │ ├── Dialog.qml │ │ │ │ │ │ ├── DialogButtonBox.qml │ │ │ │ │ │ ├── Drawer.qml │ │ │ │ │ │ ├── Frame.qml │ │ │ │ │ │ ├── GroupBox.qml │ │ │ │ │ │ ├── HorizontalHeaderView.qml │ │ │ │ │ │ ├── ItemDelegate.qml │ │ │ │ │ │ ├── Label.qml │ │ │ │ │ │ ├── Menu.qml │ │ │ │ │ │ ├── MenuItem.qml │ │ │ │ │ │ ├── MenuSeparator.qml │ │ │ │ │ │ ├── Page.qml │ │ │ │ │ │ ├── PageIndicator.qml │ │ │ │ │ │ ├── Pane.qml │ │ │ │ │ │ ├── Popup.qml │ │ │ │ │ │ ├── ProgressBar.qml │ │ │ │ │ │ ├── RadioButton.qml │ │ │ │ │ │ ├── RadioDelegate.qml │ │ │ │ │ │ ├── RangeSlider.qml │ │ │ │ │ │ ├── RoundButton.qml │ │ │ │ │ │ ├── ScrollBar.qml │ │ │ │ │ │ ├── ScrollIndicator.qml │ │ │ │ │ │ ├── Slider.qml │ │ │ │ │ │ ├── SpinBox.qml │ │ │ │ │ │ ├── SplitView.qml │ │ │ │ │ │ ├── StackView.qml │ │ │ │ │ │ ├── SwipeDelegate.qml │ │ │ │ │ │ ├── SwipeView.qml │ │ │ │ │ │ ├── Switch.qml │ │ │ │ │ │ ├── SwitchDelegate.qml │ │ │ │ │ │ ├── TabBar.qml │ │ │ │ │ │ ├── TabButton.qml │ │ │ │ │ │ ├── TextArea.qml │ │ │ │ │ │ ├── TextField.qml │ │ │ │ │ │ ├── ToolBar.qml │ │ │ │ │ │ ├── ToolButton.qml │ │ │ │ │ │ ├── ToolSeparator.qml │ │ │ │ │ │ ├── ToolTip.qml │ │ │ │ │ │ ├── Tumbler.qml │ │ │ │ │ │ ├── VerticalHeaderView.qml │ │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ │ ├── qmldir │ │ │ │ │ │ └── qtquickcontrols2imaginestyleplugin.dll │ │ │ │ │ ├── ItemDelegate.qml │ │ │ │ │ ├── Label.qml │ │ │ │ │ ├── Material │ │ │ │ │ │ ├── ApplicationWindow.qml │ │ │ │ │ │ ├── BoxShadow.qml │ │ │ │ │ │ ├── BusyIndicator.qml │ │ │ │ │ │ ├── Button.qml │ │ │ │ │ │ ├── CheckBox.qml │ │ │ │ │ │ ├── CheckDelegate.qml │ │ │ │ │ │ ├── CheckIndicator.qml │ │ │ │ │ │ ├── ComboBox.qml │ │ │ │ │ │ ├── CursorDelegate.qml │ │ │ │ │ │ ├── DelayButton.qml │ │ │ │ │ │ ├── Dial.qml │ │ │ │ │ │ ├── Dialog.qml │ │ │ │ │ │ ├── DialogButtonBox.qml │ │ │ │ │ │ ├── Drawer.qml │ │ │ │ │ │ ├── ElevationEffect.qml │ │ │ │ │ │ ├── Frame.qml │ │ │ │ │ │ ├── GroupBox.qml │ │ │ │ │ │ ├── HorizontalHeaderView.qml │ │ │ │ │ │ ├── ItemDelegate.qml │ │ │ │ │ │ ├── Label.qml │ │ │ │ │ │ ├── Menu.qml │ │ │ │ │ │ ├── MenuBar.qml │ │ │ │ │ │ ├── MenuBarItem.qml │ │ │ │ │ │ ├── MenuItem.qml │ │ │ │ │ │ ├── MenuSeparator.qml │ │ │ │ │ │ ├── Page.qml │ │ │ │ │ │ ├── PageIndicator.qml │ │ │ │ │ │ ├── Pane.qml │ │ │ │ │ │ ├── Popup.qml │ │ │ │ │ │ ├── ProgressBar.qml │ │ │ │ │ │ ├── RadioButton.qml │ │ │ │ │ │ ├── RadioDelegate.qml │ │ │ │ │ │ ├── RadioIndicator.qml │ │ │ │ │ │ ├── RangeSlider.qml │ │ │ │ │ │ ├── RectangularGlow.qml │ │ │ │ │ │ ├── RoundButton.qml │ │ │ │ │ │ ├── ScrollBar.qml │ │ │ │ │ │ ├── ScrollIndicator.qml │ │ │ │ │ │ ├── Slider.qml │ │ │ │ │ │ ├── SliderHandle.qml │ │ │ │ │ │ ├── SpinBox.qml │ │ │ │ │ │ ├── SplitView.qml │ │ │ │ │ │ ├── StackView.qml │ │ │ │ │ │ ├── SwipeDelegate.qml │ │ │ │ │ │ ├── SwipeView.qml │ │ │ │ │ │ ├── Switch.qml │ │ │ │ │ │ ├── SwitchDelegate.qml │ │ │ │ │ │ ├── SwitchIndicator.qml │ │ │ │ │ │ ├── TabBar.qml │ │ │ │ │ │ ├── TabButton.qml │ │ │ │ │ │ ├── TextArea.qml │ │ │ │ │ │ ├── TextField.qml │ │ │ │ │ │ ├── ToolBar.qml │ │ │ │ │ │ ├── ToolButton.qml │ │ │ │ │ │ ├── ToolSeparator.qml │ │ │ │ │ │ ├── ToolTip.qml │ │ │ │ │ │ ├── Tumbler.qml │ │ │ │ │ │ ├── VerticalHeaderView.qml │ │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ │ ├── qmldir │ │ │ │ │ │ └── qtquickcontrols2materialstyleplugin.dll │ │ │ │ │ ├── Menu.qml │ │ │ │ │ ├── MenuBar.qml │ │ │ │ │ ├── MenuBarItem.qml │ │ │ │ │ ├── MenuItem.qml │ │ │ │ │ ├── MenuSeparator.qml │ │ │ │ │ ├── Page.qml │ │ │ │ │ ├── PageIndicator.qml │ │ │ │ │ ├── Pane.qml │ │ │ │ │ ├── Popup.qml │ │ │ │ │ ├── ProgressBar.qml │ │ │ │ │ ├── RadioButton.qml │ │ │ │ │ ├── RadioDelegate.qml │ │ │ │ │ ├── RangeSlider.qml │ │ │ │ │ ├── RoundButton.qml │ │ │ │ │ ├── ScrollBar.qml │ │ │ │ │ ├── ScrollIndicator.qml │ │ │ │ │ ├── ScrollView.qml │ │ │ │ │ ├── Slider.qml │ │ │ │ │ ├── SpinBox.qml │ │ │ │ │ ├── SplitView.qml │ │ │ │ │ ├── StackView.qml │ │ │ │ │ ├── SwipeDelegate.qml │ │ │ │ │ ├── SwipeView.qml │ │ │ │ │ ├── Switch.qml │ │ │ │ │ ├── SwitchDelegate.qml │ │ │ │ │ ├── TabBar.qml │ │ │ │ │ ├── TabButton.qml │ │ │ │ │ ├── TextArea.qml │ │ │ │ │ ├── TextField.qml │ │ │ │ │ ├── ToolBar.qml │ │ │ │ │ ├── ToolButton.qml │ │ │ │ │ ├── ToolSeparator.qml │ │ │ │ │ ├── ToolTip.qml │ │ │ │ │ ├── Tumbler.qml │ │ │ │ │ ├── Universal │ │ │ │ │ │ ├── ApplicationWindow.qml │ │ │ │ │ │ ├── BusyIndicator.qml │ │ │ │ │ │ ├── Button.qml │ │ │ │ │ │ ├── CheckBox.qml │ │ │ │ │ │ ├── CheckDelegate.qml │ │ │ │ │ │ ├── CheckIndicator.qml │ │ │ │ │ │ ├── ComboBox.qml │ │ │ │ │ │ ├── DelayButton.qml │ │ │ │ │ │ ├── Dial.qml │ │ │ │ │ │ ├── Dialog.qml │ │ │ │ │ │ ├── DialogButtonBox.qml │ │ │ │ │ │ ├── Drawer.qml │ │ │ │ │ │ ├── Frame.qml │ │ │ │ │ │ ├── GroupBox.qml │ │ │ │ │ │ ├── HorizontalHeaderView.qml │ │ │ │ │ │ ├── ItemDelegate.qml │ │ │ │ │ │ ├── Label.qml │ │ │ │ │ │ ├── Menu.qml │ │ │ │ │ │ ├── MenuBar.qml │ │ │ │ │ │ ├── MenuBarItem.qml │ │ │ │ │ │ ├── MenuItem.qml │ │ │ │ │ │ ├── MenuSeparator.qml │ │ │ │ │ │ ├── Page.qml │ │ │ │ │ │ ├── PageIndicator.qml │ │ │ │ │ │ ├── Pane.qml │ │ │ │ │ │ ├── Popup.qml │ │ │ │ │ │ ├── ProgressBar.qml │ │ │ │ │ │ ├── RadioButton.qml │ │ │ │ │ │ ├── RadioDelegate.qml │ │ │ │ │ │ ├── RadioIndicator.qml │ │ │ │ │ │ ├── RangeSlider.qml │ │ │ │ │ │ ├── RoundButton.qml │ │ │ │ │ │ ├── ScrollBar.qml │ │ │ │ │ │ ├── ScrollIndicator.qml │ │ │ │ │ │ ├── Slider.qml │ │ │ │ │ │ ├── SpinBox.qml │ │ │ │ │ │ ├── SplitView.qml │ │ │ │ │ │ ├── StackView.qml │ │ │ │ │ │ ├── SwipeDelegate.qml │ │ │ │ │ │ ├── Switch.qml │ │ │ │ │ │ ├── SwitchDelegate.qml │ │ │ │ │ │ ├── SwitchIndicator.qml │ │ │ │ │ │ ├── TabBar.qml │ │ │ │ │ │ ├── TabButton.qml │ │ │ │ │ │ ├── TextArea.qml │ │ │ │ │ │ ├── TextField.qml │ │ │ │ │ │ ├── ToolBar.qml │ │ │ │ │ │ ├── ToolButton.qml │ │ │ │ │ │ ├── ToolSeparator.qml │ │ │ │ │ │ ├── ToolTip.qml │ │ │ │ │ │ ├── Tumbler.qml │ │ │ │ │ │ ├── VerticalHeaderView.qml │ │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ │ ├── qmldir │ │ │ │ │ │ └── qtquickcontrols2universalstyleplugin.dll │ │ │ │ │ ├── VerticalHeaderView.qml │ │ │ │ │ ├── designer │ │ │ │ │ │ ├── AbstractButtonSection.qml │ │ │ │ │ │ ├── BusyIndicatorSpecifics.qml │ │ │ │ │ │ ├── ButtonSection.qml │ │ │ │ │ │ ├── ButtonSpecifics.qml │ │ │ │ │ │ ├── CheckBoxSpecifics.qml │ │ │ │ │ │ ├── CheckDelegateSpecifics.qml │ │ │ │ │ │ ├── CheckSection.qml │ │ │ │ │ │ ├── ComboBoxSpecifics.qml │ │ │ │ │ │ ├── ContainerSection.qml │ │ │ │ │ │ ├── ControlSection.qml │ │ │ │ │ │ ├── ControlSpecifics.qml │ │ │ │ │ │ ├── DelayButtonSpecifics.qml │ │ │ │ │ │ ├── DialSpecifics.qml │ │ │ │ │ │ ├── FrameSpecifics.qml │ │ │ │ │ │ ├── GroupBoxSpecifics.qml │ │ │ │ │ │ ├── InsetSection.qml │ │ │ │ │ │ ├── ItemDelegateSection.qml │ │ │ │ │ │ ├── ItemDelegateSpecifics.qml │ │ │ │ │ │ ├── LabelSpecifics.qml │ │ │ │ │ │ ├── PaddingSection.qml │ │ │ │ │ │ ├── PageIndicatorSpecifics.qml │ │ │ │ │ │ ├── PageSpecifics.qml │ │ │ │ │ │ ├── PaneSection.qml │ │ │ │ │ │ ├── PaneSpecifics.qml │ │ │ │ │ │ ├── ProgressBarSpecifics.qml │ │ │ │ │ │ ├── RadioButtonSpecifics.qml │ │ │ │ │ │ ├── RadioDelegateSpecifics.qml │ │ │ │ │ │ ├── RangeSliderSpecifics.qml │ │ │ │ │ │ ├── RoundButtonSpecifics.qml │ │ │ │ │ │ ├── ScrollViewSpecifics.qml │ │ │ │ │ │ ├── SliderSpecifics.qml │ │ │ │ │ │ ├── SpinBoxSpecifics.qml │ │ │ │ │ │ ├── StackViewSpecifics.qml │ │ │ │ │ │ ├── SwipeDelegateSpecifics.qml │ │ │ │ │ │ ├── SwipeViewSpecifics.qml │ │ │ │ │ │ ├── SwitchDelegateSpecifics.qml │ │ │ │ │ │ ├── SwitchSpecifics.qml │ │ │ │ │ │ ├── TabBarSpecifics.qml │ │ │ │ │ │ ├── TabButtonSpecifics.qml │ │ │ │ │ │ ├── TextAreaSpecifics.qml │ │ │ │ │ │ ├── TextFieldSpecifics.qml │ │ │ │ │ │ ├── ToolBarSpecifics.qml │ │ │ │ │ │ ├── ToolButtonSpecifics.qml │ │ │ │ │ │ ├── ToolSeparatorSpecifics.qml │ │ │ │ │ │ ├── TumblerSpecifics.qml │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── busyindicator-icon.png │ │ │ │ │ │ │ ├── busyindicator-icon16.png │ │ │ │ │ │ │ ├── busyindicator-icon@2x.png │ │ │ │ │ │ │ ├── button-icon.png │ │ │ │ │ │ │ ├── button-icon16.png │ │ │ │ │ │ │ ├── button-icon@2x.png │ │ │ │ │ │ │ ├── checkbox-icon.png │ │ │ │ │ │ │ ├── checkbox-icon16.png │ │ │ │ │ │ │ ├── checkbox-icon@2x.png │ │ │ │ │ │ │ ├── combobox-icon.png │ │ │ │ │ │ │ ├── combobox-icon16.png │ │ │ │ │ │ │ ├── combobox-icon@2x.png │ │ │ │ │ │ │ ├── delaybutton-icon.png │ │ │ │ │ │ │ ├── delaybutton-icon16.png │ │ │ │ │ │ │ ├── delaybutton-icon@2x.png │ │ │ │ │ │ │ ├── dial-icon.png │ │ │ │ │ │ │ ├── dial-icon16.png │ │ │ │ │ │ │ ├── dial-icon@2x.png │ │ │ │ │ │ │ ├── frame-icon.png │ │ │ │ │ │ │ ├── frame-icon16.png │ │ │ │ │ │ │ ├── frame-icon@2x.png │ │ │ │ │ │ │ ├── groupbox-icon.png │ │ │ │ │ │ │ ├── groupbox-icon16.png │ │ │ │ │ │ │ ├── groupbox-icon@2x.png │ │ │ │ │ │ │ ├── itemdelegate-icon.png │ │ │ │ │ │ │ ├── itemdelegate-icon16.png │ │ │ │ │ │ │ ├── itemdelegate-icon@2x.png │ │ │ │ │ │ │ ├── label-icon.png │ │ │ │ │ │ │ ├── label-icon16.png │ │ │ │ │ │ │ ├── label-icon@2x.png │ │ │ │ │ │ │ ├── page-icon.png │ │ │ │ │ │ │ ├── page-icon16.png │ │ │ │ │ │ │ ├── page-icon@2x.png │ │ │ │ │ │ │ ├── pageindicator-icon.png │ │ │ │ │ │ │ ├── pageindicator-icon16.png │ │ │ │ │ │ │ ├── pageindicator-icon@2x.png │ │ │ │ │ │ │ ├── pane-icon.png │ │ │ │ │ │ │ ├── pane-icon16.png │ │ │ │ │ │ │ ├── pane-icon@2x.png │ │ │ │ │ │ │ ├── progressbar-icon.png │ │ │ │ │ │ │ ├── progressbar-icon16.png │ │ │ │ │ │ │ ├── progressbar-icon@2x.png │ │ │ │ │ │ │ ├── radiobutton-icon.png │ │ │ │ │ │ │ ├── radiobutton-icon16.png │ │ │ │ │ │ │ ├── radiobutton-icon@2x.png │ │ │ │ │ │ │ ├── rangeslider-icon.png │ │ │ │ │ │ │ ├── rangeslider-icon16.png │ │ │ │ │ │ │ ├── rangeslider-icon@2x.png │ │ │ │ │ │ │ ├── roundbutton-icon.png │ │ │ │ │ │ │ ├── roundbutton-icon16.png │ │ │ │ │ │ │ ├── roundbutton-icon@2x.png │ │ │ │ │ │ │ ├── scrollview-icon.png │ │ │ │ │ │ │ ├── scrollview-icon16.png │ │ │ │ │ │ │ ├── scrollview-icon@2x.png │ │ │ │ │ │ │ ├── slider-icon.png │ │ │ │ │ │ │ ├── slider-icon16.png │ │ │ │ │ │ │ ├── slider-icon@2x.png │ │ │ │ │ │ │ ├── spinbox-icon.png │ │ │ │ │ │ │ ├── spinbox-icon16.png │ │ │ │ │ │ │ ├── spinbox-icon@2x.png │ │ │ │ │ │ │ ├── stackview-icon.png │ │ │ │ │ │ │ ├── stackview-icon16.png │ │ │ │ │ │ │ ├── stackview-icon@2x.png │ │ │ │ │ │ │ ├── swipeview-icon.png │ │ │ │ │ │ │ ├── swipeview-icon16.png │ │ │ │ │ │ │ ├── swipeview-icon@2x.png │ │ │ │ │ │ │ ├── switch-icon.png │ │ │ │ │ │ │ ├── switch-icon16.png │ │ │ │ │ │ │ ├── switch-icon@2x.png │ │ │ │ │ │ │ ├── textarea-icon.png │ │ │ │ │ │ │ ├── textarea-icon16.png │ │ │ │ │ │ │ ├── textarea-icon@2x.png │ │ │ │ │ │ │ ├── textfield-icon.png │ │ │ │ │ │ │ ├── textfield-icon16.png │ │ │ │ │ │ │ ├── textfield-icon@2x.png │ │ │ │ │ │ │ ├── toolbar-icon.png │ │ │ │ │ │ │ ├── toolbar-icon16.png │ │ │ │ │ │ │ ├── toolbar-icon@2x.png │ │ │ │ │ │ │ ├── toolbutton-icon.png │ │ │ │ │ │ │ ├── toolbutton-icon16.png │ │ │ │ │ │ │ ├── toolbutton-icon@2x.png │ │ │ │ │ │ │ ├── toolseparator-icon.png │ │ │ │ │ │ │ ├── toolseparator-icon16.png │ │ │ │ │ │ │ ├── toolseparator-icon@2x.png │ │ │ │ │ │ │ ├── tumbler-icon.png │ │ │ │ │ │ │ ├── tumbler-icon16.png │ │ │ │ │ │ │ └── tumbler-icon@2x.png │ │ │ │ │ │ └── qtquickcontrols2.metainfo │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qmldir │ │ │ │ │ └── qtquickcontrols2plugin.dll │ │ │ │ ├── Controls │ │ │ │ │ ├── ApplicationWindow.qml │ │ │ │ │ ├── ApplicationWindow.qmlc │ │ │ │ │ ├── BusyIndicator.qml │ │ │ │ │ ├── BusyIndicator.qmlc │ │ │ │ │ ├── Button.qml │ │ │ │ │ ├── Button.qmlc │ │ │ │ │ ├── Calendar.qml │ │ │ │ │ ├── Calendar.qmlc │ │ │ │ │ ├── CheckBox.qml │ │ │ │ │ ├── CheckBox.qmlc │ │ │ │ │ ├── ComboBox.qml │ │ │ │ │ ├── ComboBox.qmlc │ │ │ │ │ ├── GroupBox.qml │ │ │ │ │ ├── GroupBox.qmlc │ │ │ │ │ ├── Label.qml │ │ │ │ │ ├── Label.qmlc │ │ │ │ │ ├── Menu.qml │ │ │ │ │ ├── Menu.qmlc │ │ │ │ │ ├── MenuBar.qml │ │ │ │ │ ├── MenuBar.qmlc │ │ │ │ │ ├── Private │ │ │ │ │ │ ├── AbstractCheckable.qml │ │ │ │ │ │ ├── AbstractCheckable.qmlc │ │ │ │ │ │ ├── BasicButton.qml │ │ │ │ │ │ ├── BasicButton.qmlc │ │ │ │ │ │ ├── BasicTableView.qml │ │ │ │ │ │ ├── BasicTableView.qmlc │ │ │ │ │ │ ├── CalendarHeaderModel.qml │ │ │ │ │ │ ├── CalendarHeaderModel.qmlc │ │ │ │ │ │ ├── CalendarUtils.js │ │ │ │ │ │ ├── CalendarUtils.jsc │ │ │ │ │ │ ├── ColumnMenuContent.qml │ │ │ │ │ │ ├── ColumnMenuContent.qmlc │ │ │ │ │ │ ├── ContentItem.qml │ │ │ │ │ │ ├── ContentItem.qmlc │ │ │ │ │ │ ├── Control.qml │ │ │ │ │ │ ├── Control.qmlc │ │ │ │ │ │ ├── EditMenu.qml │ │ │ │ │ │ ├── EditMenu.qmlc │ │ │ │ │ │ ├── EditMenu_base.qml │ │ │ │ │ │ ├── EditMenu_base.qmlc │ │ │ │ │ │ ├── FastGlow.qml │ │ │ │ │ │ ├── FastGlow.qmlc │ │ │ │ │ │ ├── FocusFrame.qml │ │ │ │ │ │ ├── FocusFrame.qmlc │ │ │ │ │ │ ├── HoverButton.qml │ │ │ │ │ │ ├── HoverButton.qmlc │ │ │ │ │ │ ├── MenuContentItem.qml │ │ │ │ │ │ ├── MenuContentItem.qmlc │ │ │ │ │ │ ├── MenuContentScroller.qml │ │ │ │ │ │ ├── MenuContentScroller.qmlc │ │ │ │ │ │ ├── MenuItemSubControls.qml │ │ │ │ │ │ ├── MenuItemSubControls.qmlc │ │ │ │ │ │ ├── ModalPopupBehavior.qml │ │ │ │ │ │ ├── ModalPopupBehavior.qmlc │ │ │ │ │ │ ├── ScrollBar.qml │ │ │ │ │ │ ├── ScrollBar.qmlc │ │ │ │ │ │ ├── ScrollViewHelper.qml │ │ │ │ │ │ ├── ScrollViewHelper.qmlc │ │ │ │ │ │ ├── SourceProxy.qml │ │ │ │ │ │ ├── SourceProxy.qmlc │ │ │ │ │ │ ├── StackView.js │ │ │ │ │ │ ├── StackView.jsc │ │ │ │ │ │ ├── StackViewSlideDelegate.qml │ │ │ │ │ │ ├── StackViewSlideDelegate.qmlc │ │ │ │ │ │ ├── Style.qml │ │ │ │ │ │ ├── Style.qmlc │ │ │ │ │ │ ├── SystemPaletteSingleton.qml │ │ │ │ │ │ ├── SystemPaletteSingleton.qmlc │ │ │ │ │ │ ├── TabBar.qml │ │ │ │ │ │ ├── TabBar.qmlc │ │ │ │ │ │ ├── TableViewItemDelegateLoader.qml │ │ │ │ │ │ ├── TableViewItemDelegateLoader.qmlc │ │ │ │ │ │ ├── TableViewSelection.qml │ │ │ │ │ │ ├── TableViewSelection.qmlc │ │ │ │ │ │ ├── TextHandle.qml │ │ │ │ │ │ ├── TextHandle.qmlc │ │ │ │ │ │ ├── TextInputWithHandles.qml │ │ │ │ │ │ ├── TextInputWithHandles.qmlc │ │ │ │ │ │ ├── TextSingleton.qml │ │ │ │ │ │ ├── TextSingleton.qmlc │ │ │ │ │ │ ├── ToolMenuButton.qml │ │ │ │ │ │ ├── ToolMenuButton.qmlc │ │ │ │ │ │ ├── TreeViewItemDelegateLoader.qml │ │ │ │ │ │ ├── TreeViewItemDelegateLoader.qmlc │ │ │ │ │ │ ├── qmldir │ │ │ │ │ │ ├── style.js │ │ │ │ │ │ └── style.jsc │ │ │ │ │ ├── ProgressBar.qml │ │ │ │ │ ├── ProgressBar.qmlc │ │ │ │ │ ├── RadioButton.qml │ │ │ │ │ ├── RadioButton.qmlc │ │ │ │ │ ├── ScrollView.qml │ │ │ │ │ ├── ScrollView.qmlc │ │ │ │ │ ├── Slider.qml │ │ │ │ │ ├── Slider.qmlc │ │ │ │ │ ├── SpinBox.qml │ │ │ │ │ ├── SpinBox.qmlc │ │ │ │ │ ├── SplitView.qml │ │ │ │ │ ├── SplitView.qmlc │ │ │ │ │ ├── StackView.qml │ │ │ │ │ ├── StackView.qmlc │ │ │ │ │ ├── StackViewDelegate.qml │ │ │ │ │ ├── StackViewDelegate.qmlc │ │ │ │ │ ├── StackViewTransition.qml │ │ │ │ │ ├── StackViewTransition.qmlc │ │ │ │ │ ├── StatusBar.qml │ │ │ │ │ ├── StatusBar.qmlc │ │ │ │ │ ├── Styles │ │ │ │ │ │ ├── Base │ │ │ │ │ │ │ ├── ApplicationWindowStyle.qml │ │ │ │ │ │ │ ├── ApplicationWindowStyle.qmlc │ │ │ │ │ │ │ ├── BasicTableViewStyle.qml │ │ │ │ │ │ │ ├── BasicTableViewStyle.qmlc │ │ │ │ │ │ │ ├── BusyIndicatorStyle.qml │ │ │ │ │ │ │ ├── BusyIndicatorStyle.qmlc │ │ │ │ │ │ │ ├── ButtonStyle.qml │ │ │ │ │ │ │ ├── ButtonStyle.qmlc │ │ │ │ │ │ │ ├── CalendarStyle.qml │ │ │ │ │ │ │ ├── CalendarStyle.qmlc │ │ │ │ │ │ │ ├── CheckBoxStyle.qml │ │ │ │ │ │ │ ├── CheckBoxStyle.qmlc │ │ │ │ │ │ │ ├── CircularButtonStyle.qml │ │ │ │ │ │ │ ├── CircularButtonStyle.qmlc │ │ │ │ │ │ │ ├── CircularGaugeStyle.qml │ │ │ │ │ │ │ ├── CircularGaugeStyle.qmlc │ │ │ │ │ │ │ ├── CircularTickmarkLabelStyle.qml │ │ │ │ │ │ │ ├── CircularTickmarkLabelStyle.qmlc │ │ │ │ │ │ │ ├── ComboBoxStyle.qml │ │ │ │ │ │ │ ├── ComboBoxStyle.qmlc │ │ │ │ │ │ │ ├── CommonStyleHelper.qml │ │ │ │ │ │ │ ├── CommonStyleHelper.qmlc │ │ │ │ │ │ │ ├── DelayButtonStyle.qml │ │ │ │ │ │ │ ├── DelayButtonStyle.qmlc │ │ │ │ │ │ │ ├── DialStyle.qml │ │ │ │ │ │ │ ├── DialStyle.qmlc │ │ │ │ │ │ │ ├── FocusFrameStyle.qml │ │ │ │ │ │ │ ├── FocusFrameStyle.qmlc │ │ │ │ │ │ │ ├── GaugeStyle.qml │ │ │ │ │ │ │ ├── GaugeStyle.qmlc │ │ │ │ │ │ │ ├── GroupBoxStyle.qml │ │ │ │ │ │ │ ├── GroupBoxStyle.qmlc │ │ │ │ │ │ │ ├── HandleStyle.qml │ │ │ │ │ │ │ ├── HandleStyle.qmlc │ │ │ │ │ │ │ ├── HandleStyleHelper.qml │ │ │ │ │ │ │ ├── HandleStyleHelper.qmlc │ │ │ │ │ │ │ ├── MenuBarStyle.qml │ │ │ │ │ │ │ ├── MenuBarStyle.qmlc │ │ │ │ │ │ │ ├── MenuStyle.qml │ │ │ │ │ │ │ ├── MenuStyle.qmlc │ │ │ │ │ │ │ ├── PieMenuStyle.qml │ │ │ │ │ │ │ ├── PieMenuStyle.qmlc │ │ │ │ │ │ │ ├── ProgressBarStyle.qml │ │ │ │ │ │ │ ├── ProgressBarStyle.qmlc │ │ │ │ │ │ │ ├── RadioButtonStyle.qml │ │ │ │ │ │ │ ├── RadioButtonStyle.qmlc │ │ │ │ │ │ │ ├── ScrollViewStyle.qml │ │ │ │ │ │ │ ├── ScrollViewStyle.qmlc │ │ │ │ │ │ │ ├── SliderStyle.qml │ │ │ │ │ │ │ ├── SliderStyle.qmlc │ │ │ │ │ │ │ ├── SpinBoxStyle.qml │ │ │ │ │ │ │ ├── SpinBoxStyle.qmlc │ │ │ │ │ │ │ ├── StatusBarStyle.qml │ │ │ │ │ │ │ ├── StatusBarStyle.qmlc │ │ │ │ │ │ │ ├── StatusIndicatorStyle.qml │ │ │ │ │ │ │ ├── StatusIndicatorStyle.qmlc │ │ │ │ │ │ │ ├── SwitchStyle.qml │ │ │ │ │ │ │ ├── SwitchStyle.qmlc │ │ │ │ │ │ │ ├── TabViewStyle.qml │ │ │ │ │ │ │ ├── TabViewStyle.qmlc │ │ │ │ │ │ │ ├── TableViewStyle.qml │ │ │ │ │ │ │ ├── TableViewStyle.qmlc │ │ │ │ │ │ │ ├── TextAreaStyle.qml │ │ │ │ │ │ │ ├── TextAreaStyle.qmlc │ │ │ │ │ │ │ ├── TextFieldStyle.qml │ │ │ │ │ │ │ ├── TextFieldStyle.qmlc │ │ │ │ │ │ │ ├── ToggleButtonStyle.qml │ │ │ │ │ │ │ ├── ToggleButtonStyle.qmlc │ │ │ │ │ │ │ ├── ToolBarStyle.qml │ │ │ │ │ │ │ ├── ToolBarStyle.qmlc │ │ │ │ │ │ │ ├── ToolButtonStyle.qml │ │ │ │ │ │ │ ├── ToolButtonStyle.qmlc │ │ │ │ │ │ │ ├── TreeViewStyle.qml │ │ │ │ │ │ │ ├── TreeViewStyle.qmlc │ │ │ │ │ │ │ ├── TumblerStyle.qml │ │ │ │ │ │ │ ├── TumblerStyle.qmlc │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ ├── arrow-down.png │ │ │ │ │ │ │ │ ├── arrow-down@2x.png │ │ │ │ │ │ │ │ ├── arrow-left.png │ │ │ │ │ │ │ │ ├── arrow-left@2x.png │ │ │ │ │ │ │ │ ├── arrow-right.png │ │ │ │ │ │ │ │ ├── arrow-right@2x.png │ │ │ │ │ │ │ │ ├── arrow-up.png │ │ │ │ │ │ │ │ ├── arrow-up@2x.png │ │ │ │ │ │ │ │ ├── button.png │ │ │ │ │ │ │ │ ├── button_down.png │ │ │ │ │ │ │ │ ├── check.png │ │ │ │ │ │ │ │ ├── check@2x.png │ │ │ │ │ │ │ │ ├── editbox.png │ │ │ │ │ │ │ │ ├── focusframe.png │ │ │ │ │ │ │ │ ├── groupbox.png │ │ │ │ │ │ │ │ ├── header.png │ │ │ │ │ │ │ │ ├── knob.png │ │ │ │ │ │ │ │ ├── leftanglearrow.png │ │ │ │ │ │ │ │ ├── needle.png │ │ │ │ │ │ │ │ ├── progress-indeterminate.png │ │ │ │ │ │ │ │ ├── rightanglearrow.png │ │ │ │ │ │ │ │ ├── scrollbar-handle-horizontal.png │ │ │ │ │ │ │ │ ├── scrollbar-handle-transient.png │ │ │ │ │ │ │ │ ├── scrollbar-handle-vertical.png │ │ │ │ │ │ │ │ ├── slider-groove.png │ │ │ │ │ │ │ │ ├── slider-handle.png │ │ │ │ │ │ │ │ ├── spinner_large.png │ │ │ │ │ │ │ │ ├── spinner_medium.png │ │ │ │ │ │ │ │ ├── spinner_small.png │ │ │ │ │ │ │ │ ├── tab.png │ │ │ │ │ │ │ │ └── tab_selected.png │ │ │ │ │ │ ├── Desktop │ │ │ │ │ │ │ ├── ApplicationWindowStyle.qml │ │ │ │ │ │ │ ├── ApplicationWindowStyle.qmlc │ │ │ │ │ │ │ ├── BusyIndicatorStyle.qml │ │ │ │ │ │ │ ├── BusyIndicatorStyle.qmlc │ │ │ │ │ │ │ ├── ButtonStyle.qml │ │ │ │ │ │ │ ├── ButtonStyle.qmlc │ │ │ │ │ │ │ ├── CalendarStyle.qml │ │ │ │ │ │ │ ├── CalendarStyle.qmlc │ │ │ │ │ │ │ ├── CheckBoxStyle.qml │ │ │ │ │ │ │ ├── CheckBoxStyle.qmlc │ │ │ │ │ │ │ ├── ComboBoxStyle.qml │ │ │ │ │ │ │ ├── ComboBoxStyle.qmlc │ │ │ │ │ │ │ ├── FocusFrameStyle.qml │ │ │ │ │ │ │ ├── FocusFrameStyle.qmlc │ │ │ │ │ │ │ ├── GroupBoxStyle.qml │ │ │ │ │ │ │ ├── GroupBoxStyle.qmlc │ │ │ │ │ │ │ ├── MenuBarStyle.qml │ │ │ │ │ │ │ ├── MenuBarStyle.qmlc │ │ │ │ │ │ │ ├── MenuStyle.qml │ │ │ │ │ │ │ ├── MenuStyle.qmlc │ │ │ │ │ │ │ ├── ProgressBarStyle.qml │ │ │ │ │ │ │ ├── ProgressBarStyle.qmlc │ │ │ │ │ │ │ ├── RadioButtonStyle.qml │ │ │ │ │ │ │ ├── RadioButtonStyle.qmlc │ │ │ │ │ │ │ ├── RowItemSingleton.qml │ │ │ │ │ │ │ ├── RowItemSingleton.qmlc │ │ │ │ │ │ │ ├── ScrollViewStyle.qml │ │ │ │ │ │ │ ├── ScrollViewStyle.qmlc │ │ │ │ │ │ │ ├── SliderStyle.qml │ │ │ │ │ │ │ ├── SliderStyle.qmlc │ │ │ │ │ │ │ ├── SpinBoxStyle.qml │ │ │ │ │ │ │ ├── SpinBoxStyle.qmlc │ │ │ │ │ │ │ ├── StatusBarStyle.qml │ │ │ │ │ │ │ ├── StatusBarStyle.qmlc │ │ │ │ │ │ │ ├── SwitchStyle.qml │ │ │ │ │ │ │ ├── SwitchStyle.qmlc │ │ │ │ │ │ │ ├── TabViewStyle.qml │ │ │ │ │ │ │ ├── TabViewStyle.qmlc │ │ │ │ │ │ │ ├── TableViewStyle.qml │ │ │ │ │ │ │ ├── TableViewStyle.qmlc │ │ │ │ │ │ │ ├── TextAreaStyle.qml │ │ │ │ │ │ │ ├── TextAreaStyle.qmlc │ │ │ │ │ │ │ ├── TextFieldStyle.qml │ │ │ │ │ │ │ ├── TextFieldStyle.qmlc │ │ │ │ │ │ │ ├── ToolBarStyle.qml │ │ │ │ │ │ │ ├── ToolBarStyle.qmlc │ │ │ │ │ │ │ ├── ToolButtonStyle.qml │ │ │ │ │ │ │ ├── ToolButtonStyle.qmlc │ │ │ │ │ │ │ ├── TreeViewStyle.qml │ │ │ │ │ │ │ ├── TreeViewStyle.qmlc │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ ├── Flat │ │ │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ │ │ ├── qmldir │ │ │ │ │ │ │ └── qtquickextrasflatplugin.dll │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Switch.qml │ │ │ │ │ ├── Switch.qmlc │ │ │ │ │ ├── Tab.qml │ │ │ │ │ ├── Tab.qmlc │ │ │ │ │ ├── TabView.qml │ │ │ │ │ ├── TabView.qmlc │ │ │ │ │ ├── TableView.qml │ │ │ │ │ ├── TableView.qmlc │ │ │ │ │ ├── TableViewColumn.qml │ │ │ │ │ ├── TableViewColumn.qmlc │ │ │ │ │ ├── TextArea.qml │ │ │ │ │ ├── TextArea.qmlc │ │ │ │ │ ├── TextField.qml │ │ │ │ │ ├── TextField.qmlc │ │ │ │ │ ├── ToolBar.qml │ │ │ │ │ ├── ToolBar.qmlc │ │ │ │ │ ├── ToolButton.qml │ │ │ │ │ ├── ToolButton.qmlc │ │ │ │ │ ├── TreeView.qml │ │ │ │ │ ├── TreeView.qmlc │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qmldir │ │ │ │ │ └── qtquickcontrolsplugin.dll │ │ │ │ ├── Dialogs │ │ │ │ │ ├── DefaultColorDialog.qml │ │ │ │ │ ├── DefaultColorDialog.qmlc │ │ │ │ │ ├── DefaultDialogWrapper.qml │ │ │ │ │ ├── DefaultDialogWrapper.qmlc │ │ │ │ │ ├── DefaultFileDialog.qml │ │ │ │ │ ├── DefaultFileDialog.qmlc │ │ │ │ │ ├── DefaultFontDialog.qml │ │ │ │ │ ├── DefaultFontDialog.qmlc │ │ │ │ │ ├── DefaultMessageDialog.qml │ │ │ │ │ ├── DefaultMessageDialog.qmlc │ │ │ │ │ ├── Private │ │ │ │ │ │ ├── dialogsprivateplugin.dll │ │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── WidgetColorDialog.qml │ │ │ │ │ ├── WidgetColorDialog.qmlc │ │ │ │ │ ├── WidgetFileDialog.qml │ │ │ │ │ ├── WidgetFileDialog.qmlc │ │ │ │ │ ├── WidgetFontDialog.qml │ │ │ │ │ ├── WidgetFontDialog.qmlc │ │ │ │ │ ├── WidgetMessageDialog.qml │ │ │ │ │ ├── WidgetMessageDialog.qmlc │ │ │ │ │ ├── dialogplugin.dll │ │ │ │ │ ├── images │ │ │ │ │ │ ├── checkers.png │ │ │ │ │ │ ├── checkmark.png │ │ │ │ │ │ ├── copy.png │ │ │ │ │ │ ├── critical.png │ │ │ │ │ │ ├── crosshairs.png │ │ │ │ │ │ ├── information.png │ │ │ │ │ │ ├── question.png │ │ │ │ │ │ ├── slider_handle.png │ │ │ │ │ │ ├── sunken_frame.png │ │ │ │ │ │ ├── warning.png │ │ │ │ │ │ └── window_border.png │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qml │ │ │ │ │ │ ├── ColorSlider.qml │ │ │ │ │ │ ├── ColorSlider.qmlc │ │ │ │ │ │ ├── DefaultWindowDecoration.qml │ │ │ │ │ │ ├── DefaultWindowDecoration.qmlc │ │ │ │ │ │ ├── IconButtonStyle.qml │ │ │ │ │ │ ├── IconButtonStyle.qmlc │ │ │ │ │ │ ├── IconGlyph.qml │ │ │ │ │ │ ├── IconGlyph.qmlc │ │ │ │ │ │ ├── icons.ttf │ │ │ │ │ │ └── qmldir │ │ │ │ │ └── qmldir │ │ │ │ ├── Extras │ │ │ │ │ ├── CircularGauge.qml │ │ │ │ │ ├── CircularGauge.qmlc │ │ │ │ │ ├── DelayButton.qml │ │ │ │ │ ├── DelayButton.qmlc │ │ │ │ │ ├── Dial.qml │ │ │ │ │ ├── Dial.qmlc │ │ │ │ │ ├── Gauge.qml │ │ │ │ │ ├── Gauge.qmlc │ │ │ │ │ ├── PieMenu.qml │ │ │ │ │ ├── PieMenu.qmlc │ │ │ │ │ ├── Private │ │ │ │ │ │ ├── CircularButton.qml │ │ │ │ │ │ ├── CircularButton.qmlc │ │ │ │ │ │ ├── CircularButtonStyleHelper.qml │ │ │ │ │ │ ├── CircularButtonStyleHelper.qmlc │ │ │ │ │ │ ├── CircularTickmarkLabel.qml │ │ │ │ │ │ ├── CircularTickmarkLabel.qmlc │ │ │ │ │ │ ├── Handle.qml │ │ │ │ │ │ ├── Handle.qmlc │ │ │ │ │ │ ├── PieMenuIcon.qml │ │ │ │ │ │ ├── PieMenuIcon.qmlc │ │ │ │ │ │ ├── TextSingleton.qml │ │ │ │ │ │ ├── TextSingleton.qmlc │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── StatusIndicator.qml │ │ │ │ │ ├── StatusIndicator.qmlc │ │ │ │ │ ├── ToggleButton.qml │ │ │ │ │ ├── ToggleButton.qmlc │ │ │ │ │ ├── Tumbler.qml │ │ │ │ │ ├── Tumbler.qmlc │ │ │ │ │ ├── TumblerColumn.qml │ │ │ │ │ ├── TumblerColumn.qmlc │ │ │ │ │ ├── designer │ │ │ │ │ │ ├── CircularGaugeSpecifics.qml │ │ │ │ │ │ ├── CircularGaugeSpecifics.qmlc │ │ │ │ │ │ ├── DelayButtonSpecifics.qml │ │ │ │ │ │ ├── DelayButtonSpecifics.qmlc │ │ │ │ │ │ ├── DialSpecifics.qml │ │ │ │ │ │ ├── DialSpecifics.qmlc │ │ │ │ │ │ ├── GaugeSpecifics.qml │ │ │ │ │ │ ├── GaugeSpecifics.qmlc │ │ │ │ │ │ ├── PictureSpecifics.qml │ │ │ │ │ │ ├── PictureSpecifics.qmlc │ │ │ │ │ │ ├── PieMenuSpecifics.qml │ │ │ │ │ │ ├── PieMenuSpecifics.qmlc │ │ │ │ │ │ ├── StatusIndicatorSpecifics.qml │ │ │ │ │ │ ├── StatusIndicatorSpecifics.qmlc │ │ │ │ │ │ ├── ToggleButtonSpecifics.qml │ │ │ │ │ │ ├── ToggleButtonSpecifics.qmlc │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── circulargauge-icon.png │ │ │ │ │ │ │ ├── circulargauge-icon16.png │ │ │ │ │ │ │ ├── delaybutton-icon.png │ │ │ │ │ │ │ ├── delaybutton-icon16.png │ │ │ │ │ │ │ ├── dial-icon.png │ │ │ │ │ │ │ ├── dial-icon16.png │ │ │ │ │ │ │ ├── gauge-icon.png │ │ │ │ │ │ │ ├── gauge-icon16.png │ │ │ │ │ │ │ ├── picture-icon.png │ │ │ │ │ │ │ ├── picture-icon16.png │ │ │ │ │ │ │ ├── piemenu-icon.png │ │ │ │ │ │ │ ├── piemenu-icon16.png │ │ │ │ │ │ │ ├── statusindicator-icon.png │ │ │ │ │ │ │ ├── statusindicator-icon16.png │ │ │ │ │ │ │ ├── togglebutton-icon.png │ │ │ │ │ │ │ ├── togglebutton-icon16.png │ │ │ │ │ │ │ ├── tumbler-icon.png │ │ │ │ │ │ │ └── tumbler-icon16.png │ │ │ │ │ │ └── qtquickextras.metainfo │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qmldir │ │ │ │ │ └── qtquickextrasplugin.dll │ │ │ │ ├── Layouts │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qmldir │ │ │ │ │ └── qquicklayoutsplugin.dll │ │ │ │ ├── LocalStorage │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qmldir │ │ │ │ │ └── qmllocalstorageplugin.dll │ │ │ │ ├── Particles.2 │ │ │ │ │ ├── particlesplugin.dll │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ └── qmldir │ │ │ │ ├── PrivateWidgets │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qmldir │ │ │ │ │ └── widgetsplugin.dll │ │ │ │ ├── Scene2D │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qmldir │ │ │ │ │ └── qtquickscene2dplugin.dll │ │ │ │ ├── Scene3D │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qmldir │ │ │ │ │ └── qtquickscene3dplugin.dll │ │ │ │ ├── Shapes │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qmldir │ │ │ │ │ └── qmlshapesplugin.dll │ │ │ │ ├── Templates.2 │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qmldir │ │ │ │ │ └── qtquicktemplates2plugin.dll │ │ │ │ ├── Timeline │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qmldir │ │ │ │ │ └── qtquicktimelineplugin.dll │ │ │ │ ├── Window.2 │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qmldir │ │ │ │ │ └── windowplugin.dll │ │ │ │ └── XmlListModel │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qmldir │ │ │ │ │ └── qmlxmllistmodelplugin.dll │ │ │ ├── QtQuick3D │ │ │ │ ├── Effects │ │ │ │ │ ├── AdditiveColorGradient.qml │ │ │ │ │ ├── Blur.qml │ │ │ │ │ ├── BrushStrokes.qml │ │ │ │ │ ├── ChromaticAberration.qml │ │ │ │ │ ├── ColorMaster.qml │ │ │ │ │ ├── DepthOfFieldHQBlur.qml │ │ │ │ │ ├── Desaturate.qml │ │ │ │ │ ├── DistortionRipple.qml │ │ │ │ │ ├── DistortionSphere.qml │ │ │ │ │ ├── DistortionSpiral.qml │ │ │ │ │ ├── EdgeDetect.qml │ │ │ │ │ ├── Emboss.qml │ │ │ │ │ ├── Flip.qml │ │ │ │ │ ├── Fxaa.qml │ │ │ │ │ ├── GaussianBlur.qml │ │ │ │ │ ├── HDRBloomTonemap.qml │ │ │ │ │ ├── MotionBlur.qml │ │ │ │ │ ├── SCurveTonemap.qml │ │ │ │ │ ├── Scatter.qml │ │ │ │ │ ├── TiltShift.qml │ │ │ │ │ ├── Vignette.qml │ │ │ │ │ ├── designer │ │ │ │ │ │ ├── AdditiveColorGradientSection.qml │ │ │ │ │ │ ├── AdditiveColorGradientSpecifics.qml │ │ │ │ │ │ ├── BlurSection.qml │ │ │ │ │ │ ├── BlurSpecifics.qml │ │ │ │ │ │ ├── BrushStrokesSection.qml │ │ │ │ │ │ ├── BrushStrokesSpecifics.qml │ │ │ │ │ │ ├── ChromaticAberrationSection.qml │ │ │ │ │ │ ├── ChromaticAberrationSpecifics.qml │ │ │ │ │ │ ├── ColorMasterSection.qml │ │ │ │ │ │ ├── ColorMasterSpecifics.qml │ │ │ │ │ │ ├── DepthOfFieldHQBlurSection.qml │ │ │ │ │ │ ├── DepthOfFieldHQBlurSpecifics.qml │ │ │ │ │ │ ├── DesaturateSection.qml │ │ │ │ │ │ ├── DesaturateSpecifics.qml │ │ │ │ │ │ ├── DistortionRippleSection.qml │ │ │ │ │ │ ├── DistortionRippleSpecifics.qml │ │ │ │ │ │ ├── DistortionSphereSection.qml │ │ │ │ │ │ ├── DistortionSphereSpecifics.qml │ │ │ │ │ │ ├── DistortionSpiralSection.qml │ │ │ │ │ │ ├── DistortionSpiralSpecifics.qml │ │ │ │ │ │ ├── EdgeDetectSection.qml │ │ │ │ │ │ ├── EdgeDetectSpecifics.qml │ │ │ │ │ │ ├── EffectSection.qml │ │ │ │ │ │ ├── EffectSpecifics.qml │ │ │ │ │ │ ├── EmbossSection.qml │ │ │ │ │ │ ├── EmbossSpecifics.qml │ │ │ │ │ │ ├── FlipSection.qml │ │ │ │ │ │ ├── FlipSpecifics.qml │ │ │ │ │ │ ├── FxaaSection.qml │ │ │ │ │ │ ├── FxaaSpecifics.qml │ │ │ │ │ │ ├── GaussianBlurSection.qml │ │ │ │ │ │ ├── GaussianBlurSpecifics.qml │ │ │ │ │ │ ├── HDRBloomTonemapSection.qml │ │ │ │ │ │ ├── HDRBloomTonemapSpecifics.qml │ │ │ │ │ │ ├── IdComboBox.qml │ │ │ │ │ │ ├── MotionBlurSection.qml │ │ │ │ │ │ ├── MotionBlurSpecifics.qml │ │ │ │ │ │ ├── SCurveTonemapSection.qml │ │ │ │ │ │ ├── SCurveTonemapSpecifics.qml │ │ │ │ │ │ ├── ScatterSection.qml │ │ │ │ │ │ ├── ScatterSpecifics.qml │ │ │ │ │ │ ├── TiltShiftSection.qml │ │ │ │ │ │ ├── TiltShiftSpecifics.qml │ │ │ │ │ │ ├── VignetteSection.qml │ │ │ │ │ │ ├── VignetteSpecifics.qml │ │ │ │ │ │ ├── effectlib.metainfo │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── effect.png │ │ │ │ │ │ │ ├── effect16.png │ │ │ │ │ │ │ └── effect@2x.png │ │ │ │ │ │ └── source │ │ │ │ │ │ │ └── effect_template.qml │ │ │ │ │ ├── maps │ │ │ │ │ │ ├── brushnoise.png │ │ │ │ │ │ └── white.png │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qmldir │ │ │ │ │ └── qtquick3deffectplugin.dll │ │ │ │ ├── Helpers │ │ │ │ │ ├── AxisHelper.qml │ │ │ │ │ ├── DebugView.qml │ │ │ │ │ ├── WasdController.qml │ │ │ │ │ ├── meshes │ │ │ │ │ │ └── axisGrid.mesh │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qmldir │ │ │ │ │ └── qtquick3dhelpersplugin.dll │ │ │ │ ├── Materials │ │ │ │ │ ├── AluminumAnodizedEmissiveMaterial.qml │ │ │ │ │ ├── AluminumAnodizedMaterial.qml │ │ │ │ │ ├── AluminumBrushedMaterial.qml │ │ │ │ │ ├── AluminumEmissiveMaterial.qml │ │ │ │ │ ├── AluminumMaterial.qml │ │ │ │ │ ├── CopperMaterial.qml │ │ │ │ │ ├── FrostedGlassMaterial.qml │ │ │ │ │ ├── FrostedGlassSinglePassMaterial.qml │ │ │ │ │ ├── GlassMaterial.qml │ │ │ │ │ ├── GlassRefractiveMaterial.qml │ │ │ │ │ ├── PaperArtisticMaterial.qml │ │ │ │ │ ├── PaperOfficeMaterial.qml │ │ │ │ │ ├── PlasticStructuredRedEmissiveMaterial.qml │ │ │ │ │ ├── PlasticStructuredRedMaterial.qml │ │ │ │ │ ├── SteelMilledConcentricMaterial.qml │ │ │ │ │ ├── designer │ │ │ │ │ │ ├── AluminumAnodizedEmissiveMaterialSection.qml │ │ │ │ │ │ ├── AluminumAnodizedEmissiveMaterialSpecifics.qml │ │ │ │ │ │ ├── AluminumAnodizedMaterialSection.qml │ │ │ │ │ │ ├── AluminumAnodizedMaterialSpecifics.qml │ │ │ │ │ │ ├── AluminumBrushedMaterialSection.qml │ │ │ │ │ │ ├── AluminumBrushedMaterialSpecifics.qml │ │ │ │ │ │ ├── AluminumEmissiveMaterialSection.qml │ │ │ │ │ │ ├── AluminumEmissiveMaterialSpecifics.qml │ │ │ │ │ │ ├── AluminumMaterialSection.qml │ │ │ │ │ │ ├── AluminumMaterialSpecifics.qml │ │ │ │ │ │ ├── CopperMaterialSection.qml │ │ │ │ │ │ ├── CopperMaterialSpecifics.qml │ │ │ │ │ │ ├── CustomMaterialSection.qml │ │ │ │ │ │ ├── CustomMaterialSpecifics.qml │ │ │ │ │ │ ├── FrostedGlassMaterialSection.qml │ │ │ │ │ │ ├── FrostedGlassMaterialSpecifics.qml │ │ │ │ │ │ ├── FrostedGlassSinglePassMaterialSection.qml │ │ │ │ │ │ ├── FrostedGlassSinglePassMaterialSpecifics.qml │ │ │ │ │ │ ├── GlassMaterialSection.qml │ │ │ │ │ │ ├── GlassMaterialSpecifics.qml │ │ │ │ │ │ ├── GlassRefractiveMaterialSection.qml │ │ │ │ │ │ ├── GlassRefractiveMaterialSpecifics.qml │ │ │ │ │ │ ├── IdComboBox.qml │ │ │ │ │ │ ├── PaperArtisticMaterialSection.qml │ │ │ │ │ │ ├── PaperArtisticMaterialSpecifics.qml │ │ │ │ │ │ ├── PaperOfficeMaterialSection.qml │ │ │ │ │ │ ├── PaperOfficeMaterialSpecifics.qml │ │ │ │ │ │ ├── PlasticStructuredRedEmissiveMaterialSection.qml │ │ │ │ │ │ ├── PlasticStructuredRedEmissiveMaterialSpecifics.qml │ │ │ │ │ │ ├── PlasticStructuredRedMaterialSection.qml │ │ │ │ │ │ ├── PlasticStructuredRedMaterialSpecifics.qml │ │ │ │ │ │ ├── SteelMilledConcentricMaterialSection.qml │ │ │ │ │ │ ├── SteelMilledConcentricMaterialSpecifics.qml │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── custommaterial.png │ │ │ │ │ │ │ ├── custommaterial16.png │ │ │ │ │ │ │ └── custommaterial@2x.png │ │ │ │ │ │ ├── materiallib.metainfo │ │ │ │ │ │ └── source │ │ │ │ │ │ │ └── custommaterial_template.qml │ │ │ │ │ ├── maps │ │ │ │ │ │ ├── art_paper_normal.png │ │ │ │ │ │ ├── art_paper_trans.png │ │ │ │ │ │ ├── brushed_a.png │ │ │ │ │ │ ├── brushed_full_contrast.png │ │ │ │ │ │ ├── concentric_milled_steel.png │ │ │ │ │ │ ├── concentric_milled_steel_aniso.png │ │ │ │ │ │ ├── emissive.png │ │ │ │ │ │ ├── emissive_mask.png │ │ │ │ │ │ ├── grunge_b.png │ │ │ │ │ │ ├── grunge_d.png │ │ │ │ │ │ ├── paper_diffuse.png │ │ │ │ │ │ ├── paper_trans.png │ │ │ │ │ │ ├── randomGradient1D.png │ │ │ │ │ │ ├── randomGradient2D.png │ │ │ │ │ │ ├── randomGradient3D.png │ │ │ │ │ │ ├── randomGradient4D.png │ │ │ │ │ │ ├── shadow.png │ │ │ │ │ │ └── spherical_checker.png │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ ├── qmldir │ │ │ │ │ └── qtquick3dmaterialplugin.dll │ │ │ │ ├── designer │ │ │ │ │ ├── AreaLightSection.qml │ │ │ │ │ ├── AreaLightSpecifics.qml │ │ │ │ │ ├── BlendingSection.qml │ │ │ │ │ ├── BlendingSpecifics.qml │ │ │ │ │ ├── BufferBlitSection.qml │ │ │ │ │ ├── BufferBlitSpecifics.qml │ │ │ │ │ ├── BufferInputSection.qml │ │ │ │ │ ├── BufferInputSpecifics.qml │ │ │ │ │ ├── BufferSection.qml │ │ │ │ │ ├── BufferSpecifics.qml │ │ │ │ │ ├── CullModeSection.qml │ │ │ │ │ ├── CullModeSpecifics.qml │ │ │ │ │ ├── CustomCameraSection.qml │ │ │ │ │ ├── CustomCameraSpecifics.qml │ │ │ │ │ ├── DefaultMaterialSection.qml │ │ │ │ │ ├── DefaultMaterialSpecifics.qml │ │ │ │ │ ├── DepthInputSection.qml │ │ │ │ │ ├── DepthInputSpecifics.qml │ │ │ │ │ ├── DirectionalLightSection.qml │ │ │ │ │ ├── DirectionalLightSpecifics.qml │ │ │ │ │ ├── FrustumCameraSection.qml │ │ │ │ │ ├── FrustumCameraSpecifics.qml │ │ │ │ │ ├── IdComboBox.qml │ │ │ │ │ ├── MaterialSection.qml │ │ │ │ │ ├── ModelSection.qml │ │ │ │ │ ├── ModelSpecifics.qml │ │ │ │ │ ├── NodeSection.qml │ │ │ │ │ ├── NodeSpecifics.qml │ │ │ │ │ ├── Object3DSection.qml │ │ │ │ │ ├── OrthographicCameraSection.qml │ │ │ │ │ ├── OrthographicCameraSpecifics.qml │ │ │ │ │ ├── PassSection.qml │ │ │ │ │ ├── PassSpecifics.qml │ │ │ │ │ ├── PerspectiveCameraSection.qml │ │ │ │ │ ├── PerspectiveCameraSpecifics.qml │ │ │ │ │ ├── PointLightSection.qml │ │ │ │ │ ├── PointLightSpecifics.qml │ │ │ │ │ ├── PrincipledMaterialSection.qml │ │ │ │ │ ├── PrincipledMaterialSpecifics.qml │ │ │ │ │ ├── RenderStateSection.qml │ │ │ │ │ ├── RenderStateSpecifics.qml │ │ │ │ │ ├── SceneEnvironmentSection.qml │ │ │ │ │ ├── SceneEnvironmentSpecifics.qml │ │ │ │ │ ├── SetUniformValueSection.qml │ │ │ │ │ ├── SetUniformValueSpecifics.qml │ │ │ │ │ ├── ShaderInfoSection.qml │ │ │ │ │ ├── ShaderInfoSpecifics.qml │ │ │ │ │ ├── ShaderSection.qml │ │ │ │ │ ├── ShaderSpecifics.qml │ │ │ │ │ ├── ShadowSection.qml │ │ │ │ │ ├── SpotLightSection.qml │ │ │ │ │ ├── SpotLightSpecifics.qml │ │ │ │ │ ├── TextureInputSection.qml │ │ │ │ │ ├── TextureInputSpecifics.qml │ │ │ │ │ ├── TextureSection.qml │ │ │ │ │ ├── TextureSpecifics.qml │ │ │ │ │ ├── View3DSection.qml │ │ │ │ │ ├── View3DSpecifics.qml │ │ │ │ │ ├── images │ │ │ │ │ │ ├── camera.png │ │ │ │ │ │ ├── camera16.png │ │ │ │ │ │ ├── camera@2x.png │ │ │ │ │ │ ├── cone.png │ │ │ │ │ │ ├── cone16.png │ │ │ │ │ │ ├── cone@2x.png │ │ │ │ │ │ ├── cube.png │ │ │ │ │ │ ├── cube16.png │ │ │ │ │ │ ├── cube@2x.png │ │ │ │ │ │ ├── cylinder.png │ │ │ │ │ │ ├── cylinder16.png │ │ │ │ │ │ ├── cylinder@2x.png │ │ │ │ │ │ ├── dummy.png │ │ │ │ │ │ ├── dummy16.png │ │ │ │ │ │ ├── dummy@2x.png │ │ │ │ │ │ ├── group.png │ │ │ │ │ │ ├── group16.png │ │ │ │ │ │ ├── group@2x.png │ │ │ │ │ │ ├── light.png │ │ │ │ │ │ ├── light16.png │ │ │ │ │ │ ├── light@2x.png │ │ │ │ │ │ ├── material.png │ │ │ │ │ │ ├── material16.png │ │ │ │ │ │ ├── material@2x.png │ │ │ │ │ │ ├── model16.png │ │ │ │ │ │ ├── plane.png │ │ │ │ │ │ ├── plane16.png │ │ │ │ │ │ ├── plane@2x.png │ │ │ │ │ │ ├── scene.png │ │ │ │ │ │ ├── scene16.png │ │ │ │ │ │ ├── scene@2x.png │ │ │ │ │ │ ├── shadercommand.png │ │ │ │ │ │ ├── shadercommand16.png │ │ │ │ │ │ ├── shadercommand@2x.png │ │ │ │ │ │ ├── shaderutil.png │ │ │ │ │ │ ├── shaderutil16.png │ │ │ │ │ │ ├── shaderutil@2x.png │ │ │ │ │ │ ├── sphere.png │ │ │ │ │ │ ├── sphere16.png │ │ │ │ │ │ ├── sphere@2x.png │ │ │ │ │ │ ├── texture.png │ │ │ │ │ │ ├── texture16.png │ │ │ │ │ │ ├── texture@2x.png │ │ │ │ │ │ ├── view3D.png │ │ │ │ │ │ ├── view3D16.png │ │ │ │ │ │ └── view3D@2x.png │ │ │ │ │ ├── quick3d.metainfo │ │ │ │ │ └── source │ │ │ │ │ │ ├── cone_model_template.qml │ │ │ │ │ │ ├── cube_model_template.qml │ │ │ │ │ │ ├── cylinder_model_template.qml │ │ │ │ │ │ ├── plane_model_template.qml │ │ │ │ │ │ ├── sphere_model_template.qml │ │ │ │ │ │ └── view3D_template.qml │ │ │ │ ├── plugins.qmltypes │ │ │ │ ├── qmldir │ │ │ │ └── qquick3dplugin.dll │ │ │ ├── QtRemoteObjects │ │ │ │ ├── plugins.qmltypes │ │ │ │ ├── qmldir │ │ │ │ └── qtremoteobjects.dll │ │ │ ├── QtSensors │ │ │ │ ├── declarative_sensors.dll │ │ │ │ ├── plugins.qmltypes │ │ │ │ └── qmldir │ │ │ ├── QtTest │ │ │ │ ├── SignalSpy.qml │ │ │ │ ├── TestCase.qml │ │ │ │ ├── plugins.qmltypes │ │ │ │ ├── qmldir │ │ │ │ ├── qmltestplugin.dll │ │ │ │ └── testlogger.js │ │ │ ├── QtWebChannel │ │ │ │ ├── declarative_webchannel.dll │ │ │ │ ├── plugins.qmltypes │ │ │ │ └── qmldir │ │ │ └── QtWebSockets │ │ │ │ ├── declarative_qmlwebsockets.dll │ │ │ │ ├── plugins.qmltypes │ │ │ │ └── qmldir │ │ ├── qsci │ │ │ └── api │ │ │ │ └── python │ │ │ │ └── PyQt5.api │ │ └── translations │ │ │ ├── qt_ar.qm │ │ │ ├── qt_bg.qm │ │ │ ├── qt_ca.qm │ │ │ ├── qt_cs.qm │ │ │ ├── qt_da.qm │ │ │ ├── qt_de.qm │ │ │ ├── qt_en.qm │ │ │ ├── qt_es.qm │ │ │ ├── qt_fa.qm │ │ │ ├── qt_fi.qm │ │ │ ├── qt_fr.qm │ │ │ ├── qt_gd.qm │ │ │ ├── qt_gl.qm │ │ │ ├── qt_he.qm │ │ │ ├── qt_help_ar.qm │ │ │ ├── qt_help_bg.qm │ │ │ ├── qt_help_ca.qm │ │ │ ├── qt_help_cs.qm │ │ │ ├── qt_help_da.qm │ │ │ ├── qt_help_de.qm │ │ │ ├── qt_help_en.qm │ │ │ ├── qt_help_es.qm │ │ │ ├── qt_help_fr.qm │ │ │ ├── qt_help_gl.qm │ │ │ ├── qt_help_hu.qm │ │ │ ├── qt_help_it.qm │ │ │ ├── qt_help_ja.qm │ │ │ ├── qt_help_ko.qm │ │ │ ├── qt_help_pl.qm │ │ │ ├── qt_help_ru.qm │ │ │ ├── qt_help_sk.qm │ │ │ ├── qt_help_sl.qm │ │ │ ├── qt_help_tr.qm │ │ │ ├── qt_help_uk.qm │ │ │ ├── qt_help_zh_CN.qm │ │ │ ├── qt_help_zh_TW.qm │ │ │ ├── qt_hu.qm │ │ │ ├── qt_it.qm │ │ │ ├── qt_ja.qm │ │ │ ├── qt_ko.qm │ │ │ ├── qt_lt.qm │ │ │ ├── qt_lv.qm │ │ │ ├── qt_pl.qm │ │ │ ├── qt_pt.qm │ │ │ ├── qt_ru.qm │ │ │ ├── qt_sk.qm │ │ │ ├── qt_sl.qm │ │ │ ├── qt_sv.qm │ │ │ ├── qt_tr.qm │ │ │ ├── qt_uk.qm │ │ │ ├── qt_zh_CN.qm │ │ │ ├── qt_zh_TW.qm │ │ │ ├── qtbase_ar.qm │ │ │ ├── qtbase_bg.qm │ │ │ ├── qtbase_ca.qm │ │ │ ├── qtbase_cs.qm │ │ │ ├── qtbase_da.qm │ │ │ ├── qtbase_de.qm │ │ │ ├── qtbase_en.qm │ │ │ ├── qtbase_es.qm │ │ │ ├── qtbase_fi.qm │ │ │ ├── qtbase_fr.qm │ │ │ ├── qtbase_gd.qm │ │ │ ├── qtbase_he.qm │ │ │ ├── qtbase_hu.qm │ │ │ ├── qtbase_it.qm │ │ │ ├── qtbase_ja.qm │ │ │ ├── qtbase_ko.qm │ │ │ ├── qtbase_lv.qm │ │ │ ├── qtbase_pl.qm │ │ │ ├── qtbase_ru.qm │ │ │ ├── qtbase_sk.qm │ │ │ ├── qtbase_tr.qm │ │ │ ├── qtbase_uk.qm │ │ │ ├── qtbase_zh_TW.qm │ │ │ ├── qtconnectivity_bg.qm │ │ │ ├── qtconnectivity_ca.qm │ │ │ ├── qtconnectivity_da.qm │ │ │ ├── qtconnectivity_de.qm │ │ │ ├── qtconnectivity_en.qm │ │ │ ├── qtconnectivity_es.qm │ │ │ ├── qtconnectivity_hu.qm │ │ │ ├── qtconnectivity_ko.qm │ │ │ ├── qtconnectivity_pl.qm │ │ │ ├── qtconnectivity_ru.qm │ │ │ ├── qtconnectivity_tr.qm │ │ │ ├── qtconnectivity_uk.qm │ │ │ ├── qtdeclarative_bg.qm │ │ │ ├── qtdeclarative_da.qm │ │ │ ├── qtdeclarative_de.qm │ │ │ ├── qtdeclarative_en.qm │ │ │ ├── qtdeclarative_es.qm │ │ │ ├── qtdeclarative_fi.qm │ │ │ ├── qtdeclarative_fr.qm │ │ │ ├── qtdeclarative_hu.qm │ │ │ ├── qtdeclarative_ja.qm │ │ │ ├── qtdeclarative_ko.qm │ │ │ ├── qtdeclarative_lv.qm │ │ │ ├── qtdeclarative_pl.qm │ │ │ ├── qtdeclarative_ru.qm │ │ │ ├── qtdeclarative_sk.qm │ │ │ ├── qtdeclarative_tr.qm │ │ │ ├── qtdeclarative_uk.qm │ │ │ ├── qtlocation_bg.qm │ │ │ ├── qtlocation_ca.qm │ │ │ ├── qtlocation_da.qm │ │ │ ├── qtlocation_de.qm │ │ │ ├── qtlocation_en.qm │ │ │ ├── qtlocation_es.qm │ │ │ ├── qtlocation_fi.qm │ │ │ ├── qtlocation_fr.qm │ │ │ ├── qtlocation_hu.qm │ │ │ ├── qtlocation_ko.qm │ │ │ ├── qtlocation_pl.qm │ │ │ ├── qtlocation_ru.qm │ │ │ ├── qtlocation_tr.qm │ │ │ ├── qtlocation_uk.qm │ │ │ ├── qtmultimedia_ar.qm │ │ │ ├── qtmultimedia_bg.qm │ │ │ ├── qtmultimedia_ca.qm │ │ │ ├── qtmultimedia_cs.qm │ │ │ ├── qtmultimedia_da.qm │ │ │ ├── qtmultimedia_de.qm │ │ │ ├── qtmultimedia_en.qm │ │ │ ├── qtmultimedia_es.qm │ │ │ ├── qtmultimedia_fi.qm │ │ │ ├── qtmultimedia_fr.qm │ │ │ ├── qtmultimedia_hu.qm │ │ │ ├── qtmultimedia_it.qm │ │ │ ├── qtmultimedia_ja.qm │ │ │ ├── qtmultimedia_ko.qm │ │ │ ├── qtmultimedia_pl.qm │ │ │ ├── qtmultimedia_ru.qm │ │ │ ├── qtmultimedia_sk.qm │ │ │ ├── qtmultimedia_tr.qm │ │ │ ├── qtmultimedia_uk.qm │ │ │ ├── qtmultimedia_zh_TW.qm │ │ │ ├── qtquickcontrols2_ar.qm │ │ │ ├── qtquickcontrols2_bg.qm │ │ │ ├── qtquickcontrols2_ca.qm │ │ │ ├── qtquickcontrols2_da.qm │ │ │ ├── qtquickcontrols2_en.qm │ │ │ ├── qtquickcontrols2_hu.qm │ │ │ ├── qtquickcontrols2_ko.qm │ │ │ ├── qtquickcontrols2_tr.qm │ │ │ ├── qtquickcontrols2_uk.qm │ │ │ ├── qtquickcontrols2_zh_TW.qm │ │ │ ├── qtquickcontrols_bg.qm │ │ │ ├── qtquickcontrols_ca.qm │ │ │ ├── qtquickcontrols_da.qm │ │ │ ├── qtquickcontrols_de.qm │ │ │ ├── qtquickcontrols_en.qm │ │ │ ├── qtquickcontrols_fi.qm │ │ │ ├── qtquickcontrols_fr.qm │ │ │ ├── qtquickcontrols_ja.qm │ │ │ ├── qtquickcontrols_ko.qm │ │ │ ├── qtquickcontrols_ru.qm │ │ │ ├── qtquickcontrols_tr.qm │ │ │ ├── qtquickcontrols_uk.qm │ │ │ ├── qtquickcontrols_zh_TW.qm │ │ │ ├── qtserialport_de.qm │ │ │ ├── qtserialport_en.qm │ │ │ ├── qtserialport_es.qm │ │ │ ├── qtserialport_ja.qm │ │ │ ├── qtserialport_ko.qm │ │ │ ├── qtserialport_pl.qm │ │ │ ├── qtserialport_ru.qm │ │ │ ├── qtserialport_uk.qm │ │ │ ├── qtwebsockets_ca.qm │ │ │ ├── qtwebsockets_de.qm │ │ │ ├── qtwebsockets_en.qm │ │ │ ├── qtwebsockets_es.qm │ │ │ ├── qtwebsockets_fr.qm │ │ │ ├── qtwebsockets_ja.qm │ │ │ ├── qtwebsockets_ko.qm │ │ │ ├── qtwebsockets_pl.qm │ │ │ ├── qtwebsockets_ru.qm │ │ │ ├── qtwebsockets_uk.qm │ │ │ ├── qtxmlpatterns_bg.qm │ │ │ ├── qtxmlpatterns_ca.qm │ │ │ ├── qtxmlpatterns_cs.qm │ │ │ ├── qtxmlpatterns_da.qm │ │ │ ├── qtxmlpatterns_de.qm │ │ │ ├── qtxmlpatterns_en.qm │ │ │ ├── qtxmlpatterns_es.qm │ │ │ ├── qtxmlpatterns_fr.qm │ │ │ ├── qtxmlpatterns_hu.qm │ │ │ ├── qtxmlpatterns_it.qm │ │ │ ├── qtxmlpatterns_ja.qm │ │ │ ├── qtxmlpatterns_ko.qm │ │ │ ├── qtxmlpatterns_pl.qm │ │ │ ├── qtxmlpatterns_ru.qm │ │ │ ├── qtxmlpatterns_sk.qm │ │ │ ├── qtxmlpatterns_uk.qm │ │ │ └── qtxmlpatterns_zh_TW.qm │ ├── QtBluetooth.pyd │ ├── QtBluetooth.pyi │ ├── QtCore.pyd │ ├── QtCore.pyi │ ├── QtDBus.pyd │ ├── QtDBus.pyi │ ├── QtDesigner.pyd │ ├── QtDesigner.pyi │ ├── QtGui.pyd │ ├── QtGui.pyi │ ├── QtHelp.pyd │ ├── QtHelp.pyi │ ├── QtLocation.pyd │ ├── QtLocation.pyi │ ├── QtMultimedia.pyd │ ├── QtMultimedia.pyi │ ├── QtMultimediaWidgets.pyd │ ├── QtMultimediaWidgets.pyi │ ├── QtNetwork.pyd │ ├── QtNetwork.pyi │ ├── QtNetworkAuth.pyd │ ├── QtNetworkAuth.pyi │ ├── QtNfc.pyd │ ├── QtNfc.pyi │ ├── QtOpenGL.pyd │ ├── QtOpenGL.pyi │ ├── QtPositioning.pyd │ ├── QtPositioning.pyi │ ├── QtPrintSupport.pyd │ ├── QtPrintSupport.pyi │ ├── QtQml.pyd │ ├── QtQml.pyi │ ├── QtQuick.pyd │ ├── QtQuick.pyi │ ├── QtQuick3D.pyd │ ├── QtQuick3D.pyi │ ├── QtQuickWidgets.pyd │ ├── QtQuickWidgets.pyi │ ├── QtRemoteObjects.pyd │ ├── QtRemoteObjects.pyi │ ├── QtSensors.pyd │ ├── QtSensors.pyi │ ├── QtSerialPort.pyd │ ├── QtSerialPort.pyi │ ├── QtSql.pyd │ ├── QtSql.pyi │ ├── QtSvg.pyd │ ├── QtSvg.pyi │ ├── QtTest.pyd │ ├── QtTest.pyi │ ├── QtTextToSpeech.pyd │ ├── QtTextToSpeech.pyi │ ├── QtWebChannel.pyd │ ├── QtWebChannel.pyi │ ├── QtWebSockets.pyd │ ├── QtWebSockets.pyi │ ├── QtWidgets.pyd │ ├── QtWidgets.pyi │ ├── QtWinExtras.pyd │ ├── QtWinExtras.pyi │ ├── QtXml.pyd │ ├── QtXml.pyi │ ├── QtXmlPatterns.pyd │ ├── QtXmlPatterns.pyi │ ├── _QOpenGLFunctions_2_0.pyd │ ├── _QOpenGLFunctions_2_1.pyd │ ├── _QOpenGLFunctions_4_1_Core.pyd │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── pylupdate_main.cpython-38.pyc │ │ └── pyrcc_main.cpython-38.pyc │ ├── bindings │ │ ├── QAxContainer │ │ │ ├── QAxContainer.toml │ │ │ ├── QAxContainermod.sip │ │ │ ├── qaxbase.sip │ │ │ ├── qaxobject.sip │ │ │ └── qaxwidget.sip │ │ ├── QtBluetooth │ │ │ ├── QtBluetooth.toml │ │ │ ├── QtBluetoothmod.sip │ │ │ ├── qbluetooth.sip │ │ │ ├── qbluetoothaddress.sip │ │ │ ├── qbluetoothdevicediscoveryagent.sip │ │ │ ├── qbluetoothdeviceinfo.sip │ │ │ ├── qbluetoothhostinfo.sip │ │ │ ├── qbluetoothlocaldevice.sip │ │ │ ├── qbluetoothserver.sip │ │ │ ├── qbluetoothservicediscoveryagent.sip │ │ │ ├── qbluetoothserviceinfo.sip │ │ │ ├── qbluetoothsocket.sip │ │ │ ├── qbluetoothtransfermanager.sip │ │ │ ├── qbluetoothtransferreply.sip │ │ │ ├── qbluetoothtransferrequest.sip │ │ │ ├── qbluetoothuuid.sip │ │ │ ├── qlowenergyadvertisingdata.sip │ │ │ ├── qlowenergyadvertisingparameters.sip │ │ │ ├── qlowenergycharacteristic.sip │ │ │ ├── qlowenergycharacteristicdata.sip │ │ │ ├── qlowenergyconnectionparameters.sip │ │ │ ├── qlowenergycontroller.sip │ │ │ ├── qlowenergydescriptor.sip │ │ │ ├── qlowenergydescriptordata.sip │ │ │ ├── qlowenergyservice.sip │ │ │ ├── qlowenergyservicedata.sip │ │ │ ├── qpybluetooth_qlist.sip │ │ │ └── qpybluetooth_quint128.sip │ │ ├── QtCore │ │ │ ├── QtCore.toml │ │ │ ├── QtCoremod.sip │ │ │ ├── qabstractanimation.sip │ │ │ ├── qabstracteventdispatcher.sip │ │ │ ├── qabstractitemmodel.sip │ │ │ ├── qabstractnativeeventfilter.sip │ │ │ ├── qabstractproxymodel.sip │ │ │ ├── qabstractstate.sip │ │ │ ├── qabstracttransition.sip │ │ │ ├── qanimationgroup.sip │ │ │ ├── qbasictimer.sip │ │ │ ├── qbitarray.sip │ │ │ ├── qbuffer.sip │ │ │ ├── qbytearray.sip │ │ │ ├── qbytearraymatcher.sip │ │ │ ├── qcalendar.sip │ │ │ ├── qcborcommon.sip │ │ │ ├── qcborstream.sip │ │ │ ├── qchar.sip │ │ │ ├── qcollator.sip │ │ │ ├── qcommandlineoption.sip │ │ │ ├── qcommandlineparser.sip │ │ │ ├── qconcatenatetablesproxymodel.sip │ │ │ ├── qcoreapplication.sip │ │ │ ├── qcoreevent.sip │ │ │ ├── qcryptographichash.sip │ │ │ ├── qdatastream.sip │ │ │ ├── qdatetime.sip │ │ │ ├── qdeadlinetimer.sip │ │ │ ├── qdir.sip │ │ │ ├── qdiriterator.sip │ │ │ ├── qeasingcurve.sip │ │ │ ├── qelapsedtimer.sip │ │ │ ├── qeventloop.sip │ │ │ ├── qeventtransition.sip │ │ │ ├── qfile.sip │ │ │ ├── qfiledevice.sip │ │ │ ├── qfileinfo.sip │ │ │ ├── qfileselector.sip │ │ │ ├── qfilesystemwatcher.sip │ │ │ ├── qfinalstate.sip │ │ │ ├── qglobal.sip │ │ │ ├── qhistorystate.sip │ │ │ ├── qidentityproxymodel.sip │ │ │ ├── qiodevice.sip │ │ │ ├── qitemselectionmodel.sip │ │ │ ├── qjsonarray.sip │ │ │ ├── qjsondocument.sip │ │ │ ├── qjsonobject.sip │ │ │ ├── qjsonvalue.sip │ │ │ ├── qlibrary.sip │ │ │ ├── qlibraryinfo.sip │ │ │ ├── qline.sip │ │ │ ├── qlocale.sip │ │ │ ├── qlockfile.sip │ │ │ ├── qlogging.sip │ │ │ ├── qloggingcategory.sip │ │ │ ├── qmargins.sip │ │ │ ├── qmessageauthenticationcode.sip │ │ │ ├── qmetaobject.sip │ │ │ ├── qmetatype.sip │ │ │ ├── qmimedata.sip │ │ │ ├── qmimedatabase.sip │ │ │ ├── qmimetype.sip │ │ │ ├── qmutex.sip │ │ │ ├── qnamespace.sip │ │ │ ├── qnumeric.sip │ │ │ ├── qobject.sip │ │ │ ├── qobjectcleanuphandler.sip │ │ │ ├── qobjectdefs.sip │ │ │ ├── qoperatingsystemversion.sip │ │ │ ├── qparallelanimationgroup.sip │ │ │ ├── qpauseanimation.sip │ │ │ ├── qpluginloader.sip │ │ │ ├── qpoint.sip │ │ │ ├── qprocess.sip │ │ │ ├── qpropertyanimation.sip │ │ │ ├── qpycore_qhash.sip │ │ │ ├── qpycore_qlist.sip │ │ │ ├── qpycore_qmap.sip │ │ │ ├── qpycore_qpair.sip │ │ │ ├── qpycore_qset.sip │ │ │ ├── qpycore_qvariantmap.sip │ │ │ ├── qpycore_qvector.sip │ │ │ ├── qpycore_virtual_error_handler.sip │ │ │ ├── qrandom.sip │ │ │ ├── qreadwritelock.sip │ │ │ ├── qrect.sip │ │ │ ├── qregexp.sip │ │ │ ├── qregularexpression.sip │ │ │ ├── qresource.sip │ │ │ ├── qrunnable.sip │ │ │ ├── qsavefile.sip │ │ │ ├── qsemaphore.sip │ │ │ ├── qsequentialanimationgroup.sip │ │ │ ├── qsettings.sip │ │ │ ├── qsharedmemory.sip │ │ │ ├── qsignalmapper.sip │ │ │ ├── qsignaltransition.sip │ │ │ ├── qsize.sip │ │ │ ├── qsocketnotifier.sip │ │ │ ├── qsortfilterproxymodel.sip │ │ │ ├── qstandardpaths.sip │ │ │ ├── qstate.sip │ │ │ ├── qstatemachine.sip │ │ │ ├── qstorageinfo.sip │ │ │ ├── qstring.sip │ │ │ ├── qstringlist.sip │ │ │ ├── qstringlistmodel.sip │ │ │ ├── qsysinfo.sip │ │ │ ├── qsystemsemaphore.sip │ │ │ ├── qtemporarydir.sip │ │ │ ├── qtemporaryfile.sip │ │ │ ├── qtextboundaryfinder.sip │ │ │ ├── qtextcodec.sip │ │ │ ├── qtextstream.sip │ │ │ ├── qthread.sip │ │ │ ├── qthreadpool.sip │ │ │ ├── qtimeline.sip │ │ │ ├── qtimer.sip │ │ │ ├── qtimezone.sip │ │ │ ├── qtranslator.sip │ │ │ ├── qtransposeproxymodel.sip │ │ │ ├── qurl.sip │ │ │ ├── qurlquery.sip │ │ │ ├── quuid.sip │ │ │ ├── qvariant.sip │ │ │ ├── qvariantanimation.sip │ │ │ ├── qversionnumber.sip │ │ │ ├── qwaitcondition.sip │ │ │ ├── qwineventnotifier.sip │ │ │ └── qxmlstream.sip │ │ ├── QtDBus │ │ │ ├── QtDBus.toml │ │ │ ├── QtDBusmod.sip │ │ │ ├── qdbusabstractadaptor.sip │ │ │ ├── qdbusabstractinterface.sip │ │ │ ├── qdbusargument.sip │ │ │ ├── qdbusconnection.sip │ │ │ ├── qdbusconnectioninterface.sip │ │ │ ├── qdbuserror.sip │ │ │ ├── qdbusextratypes.sip │ │ │ ├── qdbusinterface.sip │ │ │ ├── qdbusmessage.sip │ │ │ ├── qdbuspendingcall.sip │ │ │ ├── qdbusservicewatcher.sip │ │ │ ├── qdbusunixfiledescriptor.sip │ │ │ ├── qpydbuspendingreply.sip │ │ │ └── qpydbusreply.sip │ │ ├── QtDesigner │ │ │ ├── QtDesigner.toml │ │ │ ├── QtDesignermod.sip │ │ │ ├── abstractactioneditor.sip │ │ │ ├── abstractformbuilder.sip │ │ │ ├── abstractformeditor.sip │ │ │ ├── abstractformwindow.sip │ │ │ ├── abstractformwindowcursor.sip │ │ │ ├── abstractformwindowmanager.sip │ │ │ ├── abstractobjectinspector.sip │ │ │ ├── abstractpropertyeditor.sip │ │ │ ├── abstractwidgetbox.sip │ │ │ ├── container.sip │ │ │ ├── customwidget.sip │ │ │ ├── default_extensionfactory.sip │ │ │ ├── extension.sip │ │ │ ├── formbuilder.sip │ │ │ ├── membersheet.sip │ │ │ ├── propertysheet.sip │ │ │ ├── qextensionmanager.sip │ │ │ ├── qpydesignercontainerextension.sip │ │ │ ├── qpydesignercustomwidgetcollectionplugin.sip │ │ │ ├── qpydesignercustomwidgetplugin.sip │ │ │ ├── qpydesignermembersheetextension.sip │ │ │ ├── qpydesignerpropertysheetextension.sip │ │ │ ├── qpydesignertaskmenuextension.sip │ │ │ └── taskmenu.sip │ │ ├── QtGui │ │ │ ├── QtGui.toml │ │ │ ├── QtGuimod.sip │ │ │ ├── opengl_types.sip │ │ │ ├── qabstracttextdocumentlayout.sip │ │ │ ├── qbackingstore.sip │ │ │ ├── qbitmap.sip │ │ │ ├── qbrush.sip │ │ │ ├── qclipboard.sip │ │ │ ├── qcolor.sip │ │ │ ├── qcolorspace.sip │ │ │ ├── qcolortransform.sip │ │ │ ├── qcursor.sip │ │ │ ├── qdesktopservices.sip │ │ │ ├── qdrag.sip │ │ │ ├── qevent.sip │ │ │ ├── qfont.sip │ │ │ ├── qfontdatabase.sip │ │ │ ├── qfontinfo.sip │ │ │ ├── qfontmetrics.sip │ │ │ ├── qgenericmatrix.sip │ │ │ ├── qglyphrun.sip │ │ │ ├── qguiapplication.sip │ │ │ ├── qicon.sip │ │ │ ├── qiconengine.sip │ │ │ ├── qimage.sip │ │ │ ├── qimageiohandler.sip │ │ │ ├── qimagereader.sip │ │ │ ├── qimagewriter.sip │ │ │ ├── qinputmethod.sip │ │ │ ├── qkeysequence.sip │ │ │ ├── qmatrix4x4.sip │ │ │ ├── qmovie.sip │ │ │ ├── qoffscreensurface.sip │ │ │ ├── qopenglbuffer.sip │ │ │ ├── qopenglcontext.sip │ │ │ ├── qopengldebug.sip │ │ │ ├── qopenglframebufferobject.sip │ │ │ ├── qopenglpaintdevice.sip │ │ │ ├── qopenglpixeltransferoptions.sip │ │ │ ├── qopenglshaderprogram.sip │ │ │ ├── qopengltexture.sip │ │ │ ├── qopengltextureblitter.sip │ │ │ ├── qopengltimerquery.sip │ │ │ ├── qopenglversionfunctions.sip │ │ │ ├── qopenglvertexarrayobject.sip │ │ │ ├── qopenglwindow.sip │ │ │ ├── qpagedpaintdevice.sip │ │ │ ├── qpagelayout.sip │ │ │ ├── qpagesize.sip │ │ │ ├── qpaintdevice.sip │ │ │ ├── qpaintdevicewindow.sip │ │ │ ├── qpaintengine.sip │ │ │ ├── qpainter.sip │ │ │ ├── qpainterpath.sip │ │ │ ├── qpalette.sip │ │ │ ├── qpdfwriter.sip │ │ │ ├── qpen.sip │ │ │ ├── qpicture.sip │ │ │ ├── qpixelformat.sip │ │ │ ├── qpixmap.sip │ │ │ ├── qpixmapcache.sip │ │ │ ├── qpolygon.sip │ │ │ ├── qpygui_qlist.sip │ │ │ ├── qpygui_qpair.sip │ │ │ ├── qpygui_qvector.sip │ │ │ ├── qquaternion.sip │ │ │ ├── qrasterwindow.sip │ │ │ ├── qrawfont.sip │ │ │ ├── qregion.sip │ │ │ ├── qrgb.sip │ │ │ ├── qrgba64.sip │ │ │ ├── qscreen.sip │ │ │ ├── qsessionmanager.sip │ │ │ ├── qstandarditemmodel.sip │ │ │ ├── qstatictext.sip │ │ │ ├── qstylehints.sip │ │ │ ├── qsurface.sip │ │ │ ├── qsurfaceformat.sip │ │ │ ├── qsyntaxhighlighter.sip │ │ │ ├── qtextcursor.sip │ │ │ ├── qtextdocument.sip │ │ │ ├── qtextdocumentfragment.sip │ │ │ ├── qtextdocumentwriter.sip │ │ │ ├── qtextformat.sip │ │ │ ├── qtextlayout.sip │ │ │ ├── qtextlist.sip │ │ │ ├── qtextobject.sip │ │ │ ├── qtextoption.sip │ │ │ ├── qtexttable.sip │ │ │ ├── qtouchdevice.sip │ │ │ ├── qtransform.sip │ │ │ ├── qvalidator.sip │ │ │ ├── qvector2d.sip │ │ │ ├── qvector3d.sip │ │ │ ├── qvector4d.sip │ │ │ ├── qwindow.sip │ │ │ └── qwindowdefs.sip │ │ ├── QtHelp │ │ │ ├── QtHelp.toml │ │ │ ├── QtHelpmod.sip │ │ │ ├── qcompressedhelpinfo.sip │ │ │ ├── qhelpcontentwidget.sip │ │ │ ├── qhelpengine.sip │ │ │ ├── qhelpenginecore.sip │ │ │ ├── qhelpfilterdata.sip │ │ │ ├── qhelpfilterengine.sip │ │ │ ├── qhelpfiltersettingswidget.sip │ │ │ ├── qhelpindexwidget.sip │ │ │ ├── qhelplink.sip │ │ │ ├── qhelpsearchengine.sip │ │ │ ├── qhelpsearchquerywidget.sip │ │ │ └── qhelpsearchresultwidget.sip │ │ ├── QtLocation │ │ │ ├── QtLocation.toml │ │ │ ├── QtLocationmod.sip │ │ │ ├── qgeocodereply.sip │ │ │ ├── qgeocodingmanager.sip │ │ │ ├── qgeocodingmanagerengine.sip │ │ │ ├── qgeomaneuver.sip │ │ │ ├── qgeoroute.sip │ │ │ ├── qgeoroutereply.sip │ │ │ ├── qgeorouterequest.sip │ │ │ ├── qgeoroutesegment.sip │ │ │ ├── qgeoroutingmanager.sip │ │ │ ├── qgeoroutingmanagerengine.sip │ │ │ ├── qgeoserviceprovider.sip │ │ │ ├── qlocation.sip │ │ │ ├── qplace.sip │ │ │ ├── qplaceattribute.sip │ │ │ ├── qplacecategory.sip │ │ │ ├── qplacecontactdetail.sip │ │ │ ├── qplacecontent.sip │ │ │ ├── qplacecontentreply.sip │ │ │ ├── qplacecontentrequest.sip │ │ │ ├── qplacedetailsreply.sip │ │ │ ├── qplaceeditorial.sip │ │ │ ├── qplaceicon.sip │ │ │ ├── qplaceidreply.sip │ │ │ ├── qplaceimage.sip │ │ │ ├── qplacemanager.sip │ │ │ ├── qplacemanagerengine.sip │ │ │ ├── qplacematchreply.sip │ │ │ ├── qplacematchrequest.sip │ │ │ ├── qplaceproposedsearchresult.sip │ │ │ ├── qplaceratings.sip │ │ │ ├── qplacereply.sip │ │ │ ├── qplaceresult.sip │ │ │ ├── qplacereview.sip │ │ │ ├── qplacesearchreply.sip │ │ │ ├── qplacesearchrequest.sip │ │ │ ├── qplacesearchresult.sip │ │ │ ├── qplacesearchsuggestionreply.sip │ │ │ ├── qplacesupplier.sip │ │ │ └── qplaceuser.sip │ │ ├── QtMultimedia │ │ │ ├── QtMultimedia.toml │ │ │ ├── QtMultimediamod.sip │ │ │ ├── qabstractvideobuffer.sip │ │ │ ├── qabstractvideofilter.sip │ │ │ ├── qabstractvideosurface.sip │ │ │ ├── qaudio.sip │ │ │ ├── qaudiobuffer.sip │ │ │ ├── qaudiodecoder.sip │ │ │ ├── qaudiodecodercontrol.sip │ │ │ ├── qaudiodeviceinfo.sip │ │ │ ├── qaudioencodersettingscontrol.sip │ │ │ ├── qaudioformat.sip │ │ │ ├── qaudioinput.sip │ │ │ ├── qaudioinputselectorcontrol.sip │ │ │ ├── qaudiooutput.sip │ │ │ ├── qaudiooutputselectorcontrol.sip │ │ │ ├── qaudioprobe.sip │ │ │ ├── qaudiorecorder.sip │ │ │ ├── qaudiorolecontrol.sip │ │ │ ├── qcamera.sip │ │ │ ├── qcameracapturebufferformatcontrol.sip │ │ │ ├── qcameracapturedestinationcontrol.sip │ │ │ ├── qcameracontrol.sip │ │ │ ├── qcameraexposure.sip │ │ │ ├── qcameraexposurecontrol.sip │ │ │ ├── qcamerafeedbackcontrol.sip │ │ │ ├── qcameraflashcontrol.sip │ │ │ ├── qcamerafocus.sip │ │ │ ├── qcamerafocuscontrol.sip │ │ │ ├── qcameraimagecapture.sip │ │ │ ├── qcameraimagecapturecontrol.sip │ │ │ ├── qcameraimageprocessing.sip │ │ │ ├── qcameraimageprocessingcontrol.sip │ │ │ ├── qcamerainfo.sip │ │ │ ├── qcamerainfocontrol.sip │ │ │ ├── qcameralockscontrol.sip │ │ │ ├── qcameraviewfindersettings.sip │ │ │ ├── qcameraviewfindersettingscontrol.sip │ │ │ ├── qcamerazoomcontrol.sip │ │ │ ├── qcustomaudiorolecontrol.sip │ │ │ ├── qimageencodercontrol.sip │ │ │ ├── qmediaaudioprobecontrol.sip │ │ │ ├── qmediaavailabilitycontrol.sip │ │ │ ├── qmediabindableinterface.sip │ │ │ ├── qmediacontainercontrol.sip │ │ │ ├── qmediacontent.sip │ │ │ ├── qmediacontrol.sip │ │ │ ├── qmediaencodersettings.sip │ │ │ ├── qmediagaplessplaybackcontrol.sip │ │ │ ├── qmediametadata.sip │ │ │ ├── qmedianetworkaccesscontrol.sip │ │ │ ├── qmediaobject.sip │ │ │ ├── qmediaplayer.sip │ │ │ ├── qmediaplayercontrol.sip │ │ │ ├── qmediaplaylist.sip │ │ │ ├── qmediarecorder.sip │ │ │ ├── qmediarecordercontrol.sip │ │ │ ├── qmediaresource.sip │ │ │ ├── qmediaservice.sip │ │ │ ├── qmediastreamscontrol.sip │ │ │ ├── qmediatimerange.sip │ │ │ ├── qmediavideoprobecontrol.sip │ │ │ ├── qmetadatareadercontrol.sip │ │ │ ├── qmetadatawritercontrol.sip │ │ │ ├── qmultimedia.sip │ │ │ ├── qpymultimedia_qlist.sip │ │ │ ├── qradiodata.sip │ │ │ ├── qradiodatacontrol.sip │ │ │ ├── qradiotuner.sip │ │ │ ├── qradiotunercontrol.sip │ │ │ ├── qsound.sip │ │ │ ├── qsoundeffect.sip │ │ │ ├── qvideodeviceselectorcontrol.sip │ │ │ ├── qvideoencodersettingscontrol.sip │ │ │ ├── qvideoframe.sip │ │ │ ├── qvideoprobe.sip │ │ │ ├── qvideorenderercontrol.sip │ │ │ ├── qvideosurfaceformat.sip │ │ │ └── qvideowindowcontrol.sip │ │ ├── QtMultimediaWidgets │ │ │ ├── QtMultimediaWidgets.toml │ │ │ ├── QtMultimediaWidgetsmod.sip │ │ │ ├── qcameraviewfinder.sip │ │ │ ├── qgraphicsvideoitem.sip │ │ │ ├── qvideowidget.sip │ │ │ └── qvideowidgetcontrol.sip │ │ ├── QtNetwork │ │ │ ├── QtNetwork.toml │ │ │ ├── QtNetworkmod.sip │ │ │ ├── qabstractnetworkcache.sip │ │ │ ├── qabstractsocket.sip │ │ │ ├── qauthenticator.sip │ │ │ ├── qdnslookup.sip │ │ │ ├── qhostaddress.sip │ │ │ ├── qhostinfo.sip │ │ │ ├── qhstspolicy.sip │ │ │ ├── qhttp2configuration.sip │ │ │ ├── qhttpmultipart.sip │ │ │ ├── qlocalserver.sip │ │ │ ├── qlocalsocket.sip │ │ │ ├── qnetworkaccessmanager.sip │ │ │ ├── qnetworkconfigmanager.sip │ │ │ ├── qnetworkconfiguration.sip │ │ │ ├── qnetworkcookie.sip │ │ │ ├── qnetworkcookiejar.sip │ │ │ ├── qnetworkdatagram.sip │ │ │ ├── qnetworkdiskcache.sip │ │ │ ├── qnetworkinterface.sip │ │ │ ├── qnetworkproxy.sip │ │ │ ├── qnetworkreply.sip │ │ │ ├── qnetworkrequest.sip │ │ │ ├── qnetworksession.sip │ │ │ ├── qocspresponse.sip │ │ │ ├── qpassworddigestor.sip │ │ │ ├── qpynetwork_qhash.sip │ │ │ ├── qpynetwork_qmap.sip │ │ │ ├── qssl.sip │ │ │ ├── qsslcertificate.sip │ │ │ ├── qsslcertificateextension.sip │ │ │ ├── qsslcipher.sip │ │ │ ├── qsslconfiguration.sip │ │ │ ├── qssldiffiehellmanparameters.sip │ │ │ ├── qsslellipticcurve.sip │ │ │ ├── qsslerror.sip │ │ │ ├── qsslkey.sip │ │ │ ├── qsslpresharedkeyauthenticator.sip │ │ │ ├── qsslsocket.sip │ │ │ ├── qtcpserver.sip │ │ │ ├── qtcpsocket.sip │ │ │ └── qudpsocket.sip │ │ ├── QtNetworkAuth │ │ │ ├── QtNetworkAuth.toml │ │ │ ├── QtNetworkAuthmod.sip │ │ │ ├── qabstractoauth.sip │ │ │ ├── qabstractoauth2.sip │ │ │ ├── qabstractoauthreplyhandler.sip │ │ │ ├── qoauth1.sip │ │ │ ├── qoauth1signature.sip │ │ │ ├── qoauth2authorizationcodeflow.sip │ │ │ ├── qoauthhttpserverreplyhandler.sip │ │ │ └── qoauthoobreplyhandler.sip │ │ ├── QtNfc │ │ │ ├── QtNfc.toml │ │ │ ├── QtNfcmod.sip │ │ │ ├── qndeffilter.sip │ │ │ ├── qndefmessage.sip │ │ │ ├── qndefnfcsmartposterrecord.sip │ │ │ ├── qndefnfctextrecord.sip │ │ │ ├── qndefnfcurirecord.sip │ │ │ ├── qndefrecord.sip │ │ │ ├── qnearfieldmanager.sip │ │ │ ├── qnearfieldsharemanager.sip │ │ │ ├── qnearfieldsharetarget.sip │ │ │ ├── qnearfieldtarget.sip │ │ │ └── qqmlndefrecord.sip │ │ ├── QtOpenGL │ │ │ ├── QtOpenGL.toml │ │ │ ├── QtOpenGLmod.sip │ │ │ └── qgl.sip │ │ ├── QtPositioning │ │ │ ├── QtPositioning.toml │ │ │ ├── QtPositioningmod.sip │ │ │ ├── qgeoaddress.sip │ │ │ ├── qgeoareamonitorinfo.sip │ │ │ ├── qgeoareamonitorsource.sip │ │ │ ├── qgeocircle.sip │ │ │ ├── qgeocoordinate.sip │ │ │ ├── qgeolocation.sip │ │ │ ├── qgeopath.sip │ │ │ ├── qgeopolygon.sip │ │ │ ├── qgeopositioninfo.sip │ │ │ ├── qgeopositioninfosource.sip │ │ │ ├── qgeorectangle.sip │ │ │ ├── qgeosatelliteinfo.sip │ │ │ ├── qgeosatelliteinfosource.sip │ │ │ ├── qgeoshape.sip │ │ │ └── qnmeapositioninfosource.sip │ │ ├── QtPrintSupport │ │ │ ├── QtPrintSupport.toml │ │ │ ├── QtPrintSupportmod.sip │ │ │ ├── qabstractprintdialog.sip │ │ │ ├── qpagesetupdialog.sip │ │ │ ├── qprintdialog.sip │ │ │ ├── qprintengine.sip │ │ │ ├── qprinter.sip │ │ │ ├── qprinterinfo.sip │ │ │ ├── qprintpreviewdialog.sip │ │ │ ├── qprintpreviewwidget.sip │ │ │ └── qpyprintsupport_qlist.sip │ │ ├── QtQml │ │ │ ├── QtQml.toml │ │ │ ├── QtQmlmod.sip │ │ │ ├── qjsengine.sip │ │ │ ├── qjsvalue.sip │ │ │ ├── qjsvalueiterator.sip │ │ │ ├── qmlattachedpropertiesobject.sip │ │ │ ├── qmlregistertype.sip │ │ │ ├── qpyqmllistproperty.sip │ │ │ ├── qqml.sip │ │ │ ├── qqmlabstracturlinterceptor.sip │ │ │ ├── qqmlapplicationengine.sip │ │ │ ├── qqmlcomponent.sip │ │ │ ├── qqmlcontext.sip │ │ │ ├── qqmlengine.sip │ │ │ ├── qqmlerror.sip │ │ │ ├── qqmlexpression.sip │ │ │ ├── qqmlextensionplugin.sip │ │ │ ├── qqmlfileselector.sip │ │ │ ├── qqmlincubator.sip │ │ │ ├── qqmllist.sip │ │ │ ├── qqmlnetworkaccessmanagerfactory.sip │ │ │ ├── qqmlparserstatus.sip │ │ │ ├── qqmlproperty.sip │ │ │ ├── qqmlpropertymap.sip │ │ │ ├── qqmlpropertyvaluesource.sip │ │ │ └── qqmlscriptstring.sip │ │ ├── QtQuick │ │ │ ├── QtQuick.toml │ │ │ ├── QtQuickmod.sip │ │ │ ├── qquickframebufferobject.sip │ │ │ ├── qquickimageprovider.sip │ │ │ ├── qquickitem.sip │ │ │ ├── qquickitemgrabresult.sip │ │ │ ├── qquickpainteditem.sip │ │ │ ├── qquickrendercontrol.sip │ │ │ ├── qquicktextdocument.sip │ │ │ ├── qquickview.sip │ │ │ ├── qquickwindow.sip │ │ │ ├── qsgabstractrenderer.sip │ │ │ ├── qsgengine.sip │ │ │ ├── qsgflatcolormaterial.sip │ │ │ ├── qsggeometry.sip │ │ │ ├── qsgimagenode.sip │ │ │ ├── qsgmaterial.sip │ │ │ ├── qsgmaterialrhishader.sip │ │ │ ├── qsgnode.sip │ │ │ ├── qsgrectanglenode.sip │ │ │ ├── qsgrendererinterface.sip │ │ │ ├── qsgrendernode.sip │ │ │ ├── qsgsimplerectnode.sip │ │ │ ├── qsgsimpletexturenode.sip │ │ │ ├── qsgtexture.sip │ │ │ ├── qsgtexturematerial.sip │ │ │ ├── qsgtextureprovider.sip │ │ │ └── qsgvertexcolormaterial.sip │ │ ├── QtQuick3D │ │ │ ├── QtQuick3D.toml │ │ │ ├── QtQuick3Dmod.sip │ │ │ ├── qquick3d.sip │ │ │ ├── qquick3dgeometry.sip │ │ │ └── qquick3dobject.sip │ │ ├── QtQuickWidgets │ │ │ ├── QtQuickWidgets.toml │ │ │ ├── QtQuickWidgetsmod.sip │ │ │ └── qquickwidget.sip │ │ ├── QtRemoteObjects │ │ │ ├── QtRemoteObjects.toml │ │ │ ├── QtRemoteObjectsmod.sip │ │ │ ├── qremoteobjectabstractitemmodelreplica.sip │ │ │ ├── qremoteobjectdynamicreplica.sip │ │ │ ├── qremoteobjectnode.sip │ │ │ ├── qremoteobjectregistry.sip │ │ │ ├── qremoteobjectreplica.sip │ │ │ └── qtremoteobjectglobal.sip │ │ ├── QtSensors │ │ │ ├── QtSensors.toml │ │ │ ├── QtSensorsmod.sip │ │ │ ├── qaccelerometer.sip │ │ │ ├── qaltimeter.sip │ │ │ ├── qambientlightsensor.sip │ │ │ ├── qambienttemperaturesensor.sip │ │ │ ├── qcompass.sip │ │ │ ├── qdistancesensor.sip │ │ │ ├── qgyroscope.sip │ │ │ ├── qholstersensor.sip │ │ │ ├── qhumiditysensor.sip │ │ │ ├── qirproximitysensor.sip │ │ │ ├── qlidsensor.sip │ │ │ ├── qlightsensor.sip │ │ │ ├── qmagnetometer.sip │ │ │ ├── qorientationsensor.sip │ │ │ ├── qpressuresensor.sip │ │ │ ├── qproximitysensor.sip │ │ │ ├── qrotationsensor.sip │ │ │ ├── qsensor.sip │ │ │ ├── qtapsensor.sip │ │ │ └── qtiltsensor.sip │ │ ├── QtSerialPort │ │ │ ├── QtSerialPort.toml │ │ │ ├── QtSerialPortmod.sip │ │ │ ├── qserialport.sip │ │ │ └── qserialportinfo.sip │ │ ├── QtSql │ │ │ ├── QtSql.toml │ │ │ ├── QtSqlmod.sip │ │ │ ├── qsql.sip │ │ │ ├── qsqldatabase.sip │ │ │ ├── qsqldriver.sip │ │ │ ├── qsqlerror.sip │ │ │ ├── qsqlfield.sip │ │ │ ├── qsqlindex.sip │ │ │ ├── qsqlquery.sip │ │ │ ├── qsqlquerymodel.sip │ │ │ ├── qsqlrecord.sip │ │ │ ├── qsqlrelationaldelegate.sip │ │ │ ├── qsqlrelationaltablemodel.sip │ │ │ ├── qsqlresult.sip │ │ │ ├── qsqltablemodel.sip │ │ │ └── qtsqlglobal.sip │ │ ├── QtSvg │ │ │ ├── QtSvg.toml │ │ │ ├── QtSvgmod.sip │ │ │ ├── qgraphicssvgitem.sip │ │ │ ├── qsvggenerator.sip │ │ │ ├── qsvgrenderer.sip │ │ │ └── qsvgwidget.sip │ │ ├── QtTest │ │ │ ├── QtTest.toml │ │ │ ├── QtTestmod.sip │ │ │ ├── qabstractitemmodeltester.sip │ │ │ ├── qsignalspy.sip │ │ │ ├── qtestcase.sip │ │ │ ├── qtestkeyboard.sip │ │ │ ├── qtestmouse.sip │ │ │ ├── qtestsystem.sip │ │ │ └── qtesttouch.sip │ │ ├── QtTextToSpeech │ │ │ ├── QtTextToSpeech.toml │ │ │ ├── QtTextToSpeechmod.sip │ │ │ ├── qtexttospeech.sip │ │ │ └── qvoice.sip │ │ ├── QtWebChannel │ │ │ ├── QtWebChannel.toml │ │ │ ├── QtWebChannelmod.sip │ │ │ ├── qwebchannel.sip │ │ │ └── qwebchannelabstracttransport.sip │ │ ├── QtWebSockets │ │ │ ├── QtWebSockets.toml │ │ │ ├── QtWebSocketsmod.sip │ │ │ ├── qmaskgenerator.sip │ │ │ ├── qwebsocket.sip │ │ │ ├── qwebsocketcorsauthenticator.sip │ │ │ ├── qwebsocketprotocol.sip │ │ │ └── qwebsocketserver.sip │ │ ├── QtWidgets │ │ │ ├── QtWidgets.toml │ │ │ ├── QtWidgetsmod.sip │ │ │ ├── qabstractbutton.sip │ │ │ ├── qabstractitemdelegate.sip │ │ │ ├── qabstractitemview.sip │ │ │ ├── qabstractscrollarea.sip │ │ │ ├── qabstractslider.sip │ │ │ ├── qabstractspinbox.sip │ │ │ ├── qaction.sip │ │ │ ├── qactiongroup.sip │ │ │ ├── qapplication.sip │ │ │ ├── qboxlayout.sip │ │ │ ├── qbuttongroup.sip │ │ │ ├── qcalendarwidget.sip │ │ │ ├── qcheckbox.sip │ │ │ ├── qcolordialog.sip │ │ │ ├── qcolumnview.sip │ │ │ ├── qcombobox.sip │ │ │ ├── qcommandlinkbutton.sip │ │ │ ├── qcommonstyle.sip │ │ │ ├── qcompleter.sip │ │ │ ├── qdatawidgetmapper.sip │ │ │ ├── qdatetimeedit.sip │ │ │ ├── qdesktopwidget.sip │ │ │ ├── qdial.sip │ │ │ ├── qdialog.sip │ │ │ ├── qdialogbuttonbox.sip │ │ │ ├── qdirmodel.sip │ │ │ ├── qdockwidget.sip │ │ │ ├── qdrawutil.sip │ │ │ ├── qerrormessage.sip │ │ │ ├── qfiledialog.sip │ │ │ ├── qfileiconprovider.sip │ │ │ ├── qfilesystemmodel.sip │ │ │ ├── qfocusframe.sip │ │ │ ├── qfontcombobox.sip │ │ │ ├── qfontdialog.sip │ │ │ ├── qformlayout.sip │ │ │ ├── qframe.sip │ │ │ ├── qgesture.sip │ │ │ ├── qgesturerecognizer.sip │ │ │ ├── qgraphicsanchorlayout.sip │ │ │ ├── qgraphicseffect.sip │ │ │ ├── qgraphicsgridlayout.sip │ │ │ ├── qgraphicsitem.sip │ │ │ ├── qgraphicslayout.sip │ │ │ ├── qgraphicslayoutitem.sip │ │ │ ├── qgraphicslinearlayout.sip │ │ │ ├── qgraphicsproxywidget.sip │ │ │ ├── qgraphicsscene.sip │ │ │ ├── qgraphicssceneevent.sip │ │ │ ├── qgraphicstransform.sip │ │ │ ├── qgraphicsview.sip │ │ │ ├── qgraphicswidget.sip │ │ │ ├── qgridlayout.sip │ │ │ ├── qgroupbox.sip │ │ │ ├── qheaderview.sip │ │ │ ├── qinputdialog.sip │ │ │ ├── qitemdelegate.sip │ │ │ ├── qitemeditorfactory.sip │ │ │ ├── qkeyeventtransition.sip │ │ │ ├── qkeysequenceedit.sip │ │ │ ├── qlabel.sip │ │ │ ├── qlayout.sip │ │ │ ├── qlayoutitem.sip │ │ │ ├── qlcdnumber.sip │ │ │ ├── qlineedit.sip │ │ │ ├── qlistview.sip │ │ │ ├── qlistwidget.sip │ │ │ ├── qmaccocoaviewcontainer.sip │ │ │ ├── qmainwindow.sip │ │ │ ├── qmdiarea.sip │ │ │ ├── qmdisubwindow.sip │ │ │ ├── qmenu.sip │ │ │ ├── qmenubar.sip │ │ │ ├── qmessagebox.sip │ │ │ ├── qmouseeventtransition.sip │ │ │ ├── qopenglwidget.sip │ │ │ ├── qplaintextedit.sip │ │ │ ├── qprogressbar.sip │ │ │ ├── qprogressdialog.sip │ │ │ ├── qproxystyle.sip │ │ │ ├── qpushbutton.sip │ │ │ ├── qpywidgets_qlist.sip │ │ │ ├── qradiobutton.sip │ │ │ ├── qrubberband.sip │ │ │ ├── qscrollarea.sip │ │ │ ├── qscrollbar.sip │ │ │ ├── qscroller.sip │ │ │ ├── qscrollerproperties.sip │ │ │ ├── qshortcut.sip │ │ │ ├── qsizegrip.sip │ │ │ ├── qsizepolicy.sip │ │ │ ├── qslider.sip │ │ │ ├── qspinbox.sip │ │ │ ├── qsplashscreen.sip │ │ │ ├── qsplitter.sip │ │ │ ├── qstackedlayout.sip │ │ │ ├── qstackedwidget.sip │ │ │ ├── qstatusbar.sip │ │ │ ├── qstyle.sip │ │ │ ├── qstyleditemdelegate.sip │ │ │ ├── qstylefactory.sip │ │ │ ├── qstyleoption.sip │ │ │ ├── qstylepainter.sip │ │ │ ├── qsystemtrayicon.sip │ │ │ ├── qtabbar.sip │ │ │ ├── qtableview.sip │ │ │ ├── qtablewidget.sip │ │ │ ├── qtabwidget.sip │ │ │ ├── qtextbrowser.sip │ │ │ ├── qtextedit.sip │ │ │ ├── qtoolbar.sip │ │ │ ├── qtoolbox.sip │ │ │ ├── qtoolbutton.sip │ │ │ ├── qtooltip.sip │ │ │ ├── qtreeview.sip │ │ │ ├── qtreewidget.sip │ │ │ ├── qtreewidgetitemiterator.sip │ │ │ ├── qundogroup.sip │ │ │ ├── qundostack.sip │ │ │ ├── qundoview.sip │ │ │ ├── qwhatsthis.sip │ │ │ ├── qwidget.sip │ │ │ ├── qwidgetaction.sip │ │ │ └── qwizard.sip │ │ ├── QtWinExtras │ │ │ ├── QtWinExtras.toml │ │ │ ├── QtWinExtrasmod.sip │ │ │ ├── qwinfunctions.sip │ │ │ ├── qwinjumplist.sip │ │ │ ├── qwinjumplistcategory.sip │ │ │ ├── qwinjumplistitem.sip │ │ │ ├── qwintaskbarbutton.sip │ │ │ ├── qwintaskbarprogress.sip │ │ │ ├── qwinthumbnailtoolbar.sip │ │ │ └── qwinthumbnailtoolbutton.sip │ │ ├── QtXml │ │ │ ├── QtXml.toml │ │ │ ├── QtXmlmod.sip │ │ │ ├── qdom.sip │ │ │ └── qxml.sip │ │ └── QtXmlPatterns │ │ │ ├── QtXmlPatterns.toml │ │ │ ├── QtXmlPatternsmod.sip │ │ │ ├── qabstractmessagehandler.sip │ │ │ ├── qabstracturiresolver.sip │ │ │ ├── qabstractxmlnodemodel.sip │ │ │ ├── qabstractxmlreceiver.sip │ │ │ ├── qsimplexmlnodemodel.sip │ │ │ ├── qsourcelocation.sip │ │ │ ├── qxmlformatter.sip │ │ │ ├── qxmlname.sip │ │ │ ├── qxmlnamepool.sip │ │ │ ├── qxmlquery.sip │ │ │ ├── qxmlresultitems.sip │ │ │ ├── qxmlschema.sip │ │ │ ├── qxmlschemavalidator.sip │ │ │ └── qxmlserializer.sip │ ├── pylupdate.pyd │ ├── pylupdate_main.py │ ├── pyrcc.pyd │ ├── pyrcc_main.py │ ├── sip.cp38-win_amd64.pyd │ └── uic │ │ ├── Compiler │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── compiler.cpython-38.pyc │ │ │ ├── indenter.cpython-38.pyc │ │ │ ├── misc.cpython-38.pyc │ │ │ ├── proxy_metaclass.cpython-38.pyc │ │ │ ├── qobjectcreator.cpython-38.pyc │ │ │ └── qtproxies.cpython-38.pyc │ │ ├── compiler.py │ │ ├── indenter.py │ │ ├── misc.py │ │ ├── proxy_metaclass.py │ │ ├── qobjectcreator.py │ │ └── qtproxies.py │ │ ├── Loader │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── loader.cpython-38.pyc │ │ │ └── qobjectcreator.cpython-38.pyc │ │ ├── loader.py │ │ └── qobjectcreator.py │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── driver.cpython-38.pyc │ │ ├── exceptions.cpython-38.pyc │ │ ├── icon_cache.cpython-38.pyc │ │ ├── objcreator.cpython-38.pyc │ │ ├── properties.cpython-38.pyc │ │ ├── pyuic.cpython-38.pyc │ │ └── uiparser.cpython-38.pyc │ │ ├── driver.py │ │ ├── exceptions.py │ │ ├── icon_cache.py │ │ ├── objcreator.py │ │ ├── port_v2 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── as_string.cpython-38.pyc │ │ │ ├── ascii_upper.cpython-38.pyc │ │ │ ├── proxy_base.cpython-38.pyc │ │ │ └── string_io.cpython-38.pyc │ │ ├── as_string.py │ │ ├── ascii_upper.py │ │ ├── proxy_base.py │ │ └── string_io.py │ │ ├── port_v3 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── as_string.cpython-38.pyc │ │ │ ├── ascii_upper.cpython-38.pyc │ │ │ ├── proxy_base.cpython-38.pyc │ │ │ └── string_io.cpython-38.pyc │ │ ├── as_string.py │ │ ├── ascii_upper.py │ │ ├── proxy_base.py │ │ └── string_io.py │ │ ├── properties.py │ │ ├── pyuic.py │ │ ├── uiparser.py │ │ └── widget-plugins │ │ ├── __pycache__ │ │ ├── qaxcontainer.cpython-38.pyc │ │ ├── qscintilla.cpython-38.pyc │ │ ├── qtcharts.cpython-38.pyc │ │ ├── qtprintsupport.cpython-38.pyc │ │ ├── qtquickwidgets.cpython-38.pyc │ │ ├── qtwebenginewidgets.cpython-38.pyc │ │ └── qtwebkit.cpython-38.pyc │ │ ├── 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 │ ├── __pycache__ │ └── easy_install.cpython-38.pyc │ ├── _distutils_hack │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── override.cpython-38.pyc │ └── override.py │ ├── certifi-2020.12.5.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── certifi │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── __main__.cpython-38.pyc │ │ └── core.cpython-38.pyc │ ├── cacert.pem │ └── core.py │ ├── chardet-4.0.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── chardet │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── big5freq.cpython-38.pyc │ │ ├── big5prober.cpython-38.pyc │ │ ├── chardistribution.cpython-38.pyc │ │ ├── charsetgroupprober.cpython-38.pyc │ │ ├── charsetprober.cpython-38.pyc │ │ ├── codingstatemachine.cpython-38.pyc │ │ ├── compat.cpython-38.pyc │ │ ├── cp949prober.cpython-38.pyc │ │ ├── enums.cpython-38.pyc │ │ ├── escprober.cpython-38.pyc │ │ ├── escsm.cpython-38.pyc │ │ ├── eucjpprober.cpython-38.pyc │ │ ├── euckrfreq.cpython-38.pyc │ │ ├── euckrprober.cpython-38.pyc │ │ ├── euctwfreq.cpython-38.pyc │ │ ├── euctwprober.cpython-38.pyc │ │ ├── gb2312freq.cpython-38.pyc │ │ ├── gb2312prober.cpython-38.pyc │ │ ├── hebrewprober.cpython-38.pyc │ │ ├── jisfreq.cpython-38.pyc │ │ ├── jpcntx.cpython-38.pyc │ │ ├── langbulgarianmodel.cpython-38.pyc │ │ ├── langgreekmodel.cpython-38.pyc │ │ ├── langhebrewmodel.cpython-38.pyc │ │ ├── langhungarianmodel.cpython-38.pyc │ │ ├── langrussianmodel.cpython-38.pyc │ │ ├── langthaimodel.cpython-38.pyc │ │ ├── langturkishmodel.cpython-38.pyc │ │ ├── latin1prober.cpython-38.pyc │ │ ├── mbcharsetprober.cpython-38.pyc │ │ ├── mbcsgroupprober.cpython-38.pyc │ │ ├── mbcssm.cpython-38.pyc │ │ ├── sbcharsetprober.cpython-38.pyc │ │ ├── sbcsgroupprober.cpython-38.pyc │ │ ├── sjisprober.cpython-38.pyc │ │ ├── universaldetector.cpython-38.pyc │ │ ├── utf8prober.cpython-38.pyc │ │ └── version.cpython-38.pyc │ ├── big5freq.py │ ├── big5prober.py │ ├── chardistribution.py │ ├── charsetgroupprober.py │ ├── charsetprober.py │ ├── cli │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── chardetect.cpython-38.pyc │ │ └── 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 │ ├── langgreekmodel.py │ ├── langhebrewmodel.py │ ├── langhungarianmodel.py │ ├── langrussianmodel.py │ ├── langthaimodel.py │ ├── langturkishmodel.py │ ├── latin1prober.py │ ├── mbcharsetprober.py │ ├── mbcsgroupprober.py │ ├── mbcssm.py │ ├── metadata │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── languages.cpython-38.pyc │ │ └── languages.py │ ├── sbcharsetprober.py │ ├── sbcsgroupprober.py │ ├── sjisprober.py │ ├── universaldetector.py │ ├── utf8prober.py │ └── version.py │ ├── distutils-precedence.pth │ ├── easy_install.py │ ├── idna-2.10.dist-info │ ├── INSTALLER │ ├── LICENSE.rst │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── idna │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── codec.cpython-38.pyc │ │ ├── compat.cpython-38.pyc │ │ ├── core.cpython-38.pyc │ │ ├── idnadata.cpython-38.pyc │ │ ├── intranges.cpython-38.pyc │ │ ├── package_data.cpython-38.pyc │ │ └── uts46data.cpython-38.pyc │ ├── codec.py │ ├── compat.py │ ├── core.py │ ├── idnadata.py │ ├── intranges.py │ ├── package_data.py │ └── uts46data.py │ ├── pip-20.3.3.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── pip │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── __main__.cpython-38.pyc │ ├── _internal │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── build_env.cpython-38.pyc │ │ │ ├── cache.cpython-38.pyc │ │ │ ├── configuration.cpython-38.pyc │ │ │ ├── exceptions.cpython-38.pyc │ │ │ ├── locations.cpython-38.pyc │ │ │ ├── main.cpython-38.pyc │ │ │ ├── pyproject.cpython-38.pyc │ │ │ ├── self_outdated_check.cpython-38.pyc │ │ │ └── wheel_builder.cpython-38.pyc │ │ ├── build_env.py │ │ ├── cache.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── autocompletion.cpython-38.pyc │ │ │ │ ├── base_command.cpython-38.pyc │ │ │ │ ├── cmdoptions.cpython-38.pyc │ │ │ │ ├── command_context.cpython-38.pyc │ │ │ │ ├── main.cpython-38.pyc │ │ │ │ ├── main_parser.cpython-38.pyc │ │ │ │ ├── parser.cpython-38.pyc │ │ │ │ ├── progress_bars.cpython-38.pyc │ │ │ │ ├── req_command.cpython-38.pyc │ │ │ │ ├── spinners.cpython-38.pyc │ │ │ │ └── status_codes.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ ├── completion.cpython-38.pyc │ │ │ │ ├── configuration.cpython-38.pyc │ │ │ │ ├── debug.cpython-38.pyc │ │ │ │ ├── download.cpython-38.pyc │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ ├── hash.cpython-38.pyc │ │ │ │ ├── help.cpython-38.pyc │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ ├── list.cpython-38.pyc │ │ │ │ ├── search.cpython-38.pyc │ │ │ │ ├── show.cpython-38.pyc │ │ │ │ ├── uninstall.cpython-38.pyc │ │ │ │ └── wheel.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ ├── installed.cpython-38.pyc │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ └── wheel.cpython-38.pyc │ │ │ ├── base.py │ │ │ ├── installed.py │ │ │ ├── sdist.py │ │ │ └── wheel.py │ │ ├── exceptions.py │ │ ├── index │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── collector.cpython-38.pyc │ │ │ │ └── package_finder.cpython-38.pyc │ │ │ ├── collector.py │ │ │ └── package_finder.py │ │ ├── locations.py │ │ ├── main.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── candidate.cpython-38.pyc │ │ │ │ ├── direct_url.cpython-38.pyc │ │ │ │ ├── format_control.cpython-38.pyc │ │ │ │ ├── index.cpython-38.pyc │ │ │ │ ├── link.cpython-38.pyc │ │ │ │ ├── scheme.cpython-38.pyc │ │ │ │ ├── search_scope.cpython-38.pyc │ │ │ │ ├── selection_prefs.cpython-38.pyc │ │ │ │ ├── target_python.cpython-38.pyc │ │ │ │ └── wheel.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── auth.cpython-38.pyc │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ ├── download.cpython-38.pyc │ │ │ │ ├── lazy_wheel.cpython-38.pyc │ │ │ │ ├── session.cpython-38.pyc │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ └── xmlrpc.cpython-38.pyc │ │ │ ├── auth.py │ │ │ ├── cache.py │ │ │ ├── download.py │ │ │ ├── lazy_wheel.py │ │ │ ├── session.py │ │ │ ├── utils.py │ │ │ └── xmlrpc.py │ │ ├── operations │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ └── prepare.cpython-38.pyc │ │ │ ├── build │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── metadata.cpython-38.pyc │ │ │ │ │ ├── metadata_legacy.cpython-38.pyc │ │ │ │ │ ├── wheel.cpython-38.pyc │ │ │ │ │ └── wheel_legacy.cpython-38.pyc │ │ │ │ ├── metadata.py │ │ │ │ ├── metadata_legacy.py │ │ │ │ ├── wheel.py │ │ │ │ └── wheel_legacy.py │ │ │ ├── check.py │ │ │ ├── freeze.py │ │ │ ├── install │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── editable_legacy.cpython-38.pyc │ │ │ │ │ ├── legacy.cpython-38.pyc │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ ├── editable_legacy.py │ │ │ │ ├── legacy.py │ │ │ │ └── wheel.py │ │ │ └── prepare.py │ │ ├── pyproject.py │ │ ├── req │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── constructors.cpython-38.pyc │ │ │ │ ├── req_file.cpython-38.pyc │ │ │ │ ├── req_install.cpython-38.pyc │ │ │ │ ├── req_set.cpython-38.pyc │ │ │ │ ├── req_tracker.cpython-38.pyc │ │ │ │ └── req_uninstall.cpython-38.pyc │ │ │ ├── constructors.py │ │ │ ├── req_file.py │ │ │ ├── req_install.py │ │ │ ├── req_set.py │ │ │ ├── req_tracker.py │ │ │ └── req_uninstall.py │ │ ├── resolution │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── base.cpython-38.pyc │ │ │ ├── base.py │ │ │ ├── legacy │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── resolver.cpython-38.pyc │ │ │ │ └── resolver.py │ │ │ └── resolvelib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ ├── candidates.cpython-38.pyc │ │ │ │ ├── factory.cpython-38.pyc │ │ │ │ ├── found_candidates.cpython-38.pyc │ │ │ │ ├── provider.cpython-38.pyc │ │ │ │ ├── reporter.cpython-38.pyc │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ └── resolver.cpython-38.pyc │ │ │ │ ├── base.py │ │ │ │ ├── candidates.py │ │ │ │ ├── factory.py │ │ │ │ ├── found_candidates.py │ │ │ │ ├── provider.py │ │ │ │ ├── reporter.py │ │ │ │ ├── requirements.py │ │ │ │ └── resolver.py │ │ ├── self_outdated_check.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ ├── compatibility_tags.cpython-38.pyc │ │ │ │ ├── datetime.cpython-38.pyc │ │ │ │ ├── deprecation.cpython-38.pyc │ │ │ │ ├── direct_url_helpers.cpython-38.pyc │ │ │ │ ├── distutils_args.cpython-38.pyc │ │ │ │ ├── encoding.cpython-38.pyc │ │ │ │ ├── entrypoints.cpython-38.pyc │ │ │ │ ├── filesystem.cpython-38.pyc │ │ │ │ ├── filetypes.cpython-38.pyc │ │ │ │ ├── glibc.cpython-38.pyc │ │ │ │ ├── hashes.cpython-38.pyc │ │ │ │ ├── inject_securetransport.cpython-38.pyc │ │ │ │ ├── logging.cpython-38.pyc │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ ├── packaging.cpython-38.pyc │ │ │ │ ├── parallel.cpython-38.pyc │ │ │ │ ├── pkg_resources.cpython-38.pyc │ │ │ │ ├── setuptools_build.cpython-38.pyc │ │ │ │ ├── subprocess.cpython-38.pyc │ │ │ │ ├── temp_dir.cpython-38.pyc │ │ │ │ ├── typing.cpython-38.pyc │ │ │ │ ├── unpacking.cpython-38.pyc │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ ├── virtualenv.cpython-38.pyc │ │ │ │ └── wheel.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── misc.py │ │ │ ├── models.py │ │ │ ├── packaging.py │ │ │ ├── parallel.py │ │ │ ├── pkg_resources.py │ │ │ ├── setuptools_build.py │ │ │ ├── subprocess.py │ │ │ ├── temp_dir.py │ │ │ ├── typing.py │ │ │ ├── unpacking.py │ │ │ ├── urls.py │ │ │ ├── virtualenv.py │ │ │ └── wheel.py │ │ ├── vcs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── bazaar.cpython-38.pyc │ │ │ │ ├── git.cpython-38.pyc │ │ │ │ ├── mercurial.cpython-38.pyc │ │ │ │ ├── subversion.cpython-38.pyc │ │ │ │ └── versioncontrol.cpython-38.pyc │ │ │ ├── bazaar.py │ │ │ ├── git.py │ │ │ ├── mercurial.py │ │ │ ├── subversion.py │ │ │ └── versioncontrol.py │ │ └── wheel_builder.py │ └── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── appdirs.cpython-38.pyc │ │ ├── contextlib2.cpython-38.pyc │ │ ├── distro.cpython-38.pyc │ │ ├── ipaddress.cpython-38.pyc │ │ ├── pyparsing.cpython-38.pyc │ │ ├── retrying.cpython-38.pyc │ │ └── six.cpython-38.pyc │ │ ├── appdirs.py │ │ ├── cachecontrol │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _cmd.cpython-38.pyc │ │ │ ├── adapter.cpython-38.pyc │ │ │ ├── cache.cpython-38.pyc │ │ │ ├── compat.cpython-38.pyc │ │ │ ├── controller.cpython-38.pyc │ │ │ ├── filewrapper.cpython-38.pyc │ │ │ ├── heuristics.cpython-38.pyc │ │ │ ├── serialize.cpython-38.pyc │ │ │ └── wrapper.cpython-38.pyc │ │ ├── _cmd.py │ │ ├── adapter.py │ │ ├── cache.py │ │ ├── caches │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── file_cache.cpython-38.pyc │ │ │ │ └── redis_cache.cpython-38.pyc │ │ │ ├── file_cache.py │ │ │ └── redis_cache.py │ │ ├── compat.py │ │ ├── controller.py │ │ ├── filewrapper.py │ │ ├── heuristics.py │ │ ├── serialize.py │ │ └── wrapper.py │ │ ├── certifi │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── __main__.cpython-38.pyc │ │ │ └── core.cpython-38.pyc │ │ ├── cacert.pem │ │ └── core.py │ │ ├── chardet │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── big5freq.cpython-38.pyc │ │ │ ├── big5prober.cpython-38.pyc │ │ │ ├── chardistribution.cpython-38.pyc │ │ │ ├── charsetgroupprober.cpython-38.pyc │ │ │ ├── charsetprober.cpython-38.pyc │ │ │ ├── codingstatemachine.cpython-38.pyc │ │ │ ├── compat.cpython-38.pyc │ │ │ ├── cp949prober.cpython-38.pyc │ │ │ ├── enums.cpython-38.pyc │ │ │ ├── escprober.cpython-38.pyc │ │ │ ├── escsm.cpython-38.pyc │ │ │ ├── eucjpprober.cpython-38.pyc │ │ │ ├── euckrfreq.cpython-38.pyc │ │ │ ├── euckrprober.cpython-38.pyc │ │ │ ├── euctwfreq.cpython-38.pyc │ │ │ ├── euctwprober.cpython-38.pyc │ │ │ ├── gb2312freq.cpython-38.pyc │ │ │ ├── gb2312prober.cpython-38.pyc │ │ │ ├── hebrewprober.cpython-38.pyc │ │ │ ├── jisfreq.cpython-38.pyc │ │ │ ├── jpcntx.cpython-38.pyc │ │ │ ├── langbulgarianmodel.cpython-38.pyc │ │ │ ├── langcyrillicmodel.cpython-38.pyc │ │ │ ├── langgreekmodel.cpython-38.pyc │ │ │ ├── langhebrewmodel.cpython-38.pyc │ │ │ ├── langhungarianmodel.cpython-38.pyc │ │ │ ├── langthaimodel.cpython-38.pyc │ │ │ ├── langturkishmodel.cpython-38.pyc │ │ │ ├── latin1prober.cpython-38.pyc │ │ │ ├── mbcharsetprober.cpython-38.pyc │ │ │ ├── mbcsgroupprober.cpython-38.pyc │ │ │ ├── mbcssm.cpython-38.pyc │ │ │ ├── sbcharsetprober.cpython-38.pyc │ │ │ ├── sbcsgroupprober.cpython-38.pyc │ │ │ ├── sjisprober.cpython-38.pyc │ │ │ ├── universaldetector.cpython-38.pyc │ │ │ ├── utf8prober.cpython-38.pyc │ │ │ └── version.cpython-38.pyc │ │ ├── big5freq.py │ │ ├── big5prober.py │ │ ├── chardistribution.py │ │ ├── charsetgroupprober.py │ │ ├── charsetprober.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── chardetect.cpython-38.pyc │ │ │ └── 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 │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── ansi.cpython-38.pyc │ │ │ ├── ansitowin32.cpython-38.pyc │ │ │ ├── initialise.cpython-38.pyc │ │ │ ├── win32.cpython-38.pyc │ │ │ └── winterm.cpython-38.pyc │ │ ├── ansi.py │ │ ├── ansitowin32.py │ │ ├── initialise.py │ │ ├── win32.py │ │ └── winterm.py │ │ ├── contextlib2.py │ │ ├── distlib │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── compat.cpython-38.pyc │ │ │ ├── database.cpython-38.pyc │ │ │ ├── index.cpython-38.pyc │ │ │ ├── locators.cpython-38.pyc │ │ │ ├── manifest.cpython-38.pyc │ │ │ ├── markers.cpython-38.pyc │ │ │ ├── metadata.cpython-38.pyc │ │ │ ├── resources.cpython-38.pyc │ │ │ ├── scripts.cpython-38.pyc │ │ │ ├── util.cpython-38.pyc │ │ │ ├── version.cpython-38.pyc │ │ │ └── wheel.cpython-38.pyc │ │ ├── _backport │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ ├── shutil.cpython-38.pyc │ │ │ │ ├── sysconfig.cpython-38.pyc │ │ │ │ └── tarfile.cpython-38.pyc │ │ │ ├── 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 │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _ihatexml.cpython-38.pyc │ │ │ ├── _inputstream.cpython-38.pyc │ │ │ ├── _tokenizer.cpython-38.pyc │ │ │ ├── _utils.cpython-38.pyc │ │ │ ├── constants.cpython-38.pyc │ │ │ ├── html5parser.cpython-38.pyc │ │ │ └── serializer.cpython-38.pyc │ │ ├── _ihatexml.py │ │ ├── _inputstream.py │ │ ├── _tokenizer.py │ │ ├── _trie │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _base.cpython-38.pyc │ │ │ │ └── py.cpython-38.pyc │ │ │ ├── _base.py │ │ │ └── py.py │ │ ├── _utils.py │ │ ├── constants.py │ │ ├── filters │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── alphabeticalattributes.cpython-38.pyc │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ ├── inject_meta_charset.cpython-38.pyc │ │ │ │ ├── lint.cpython-38.pyc │ │ │ │ ├── optionaltags.cpython-38.pyc │ │ │ │ ├── sanitizer.cpython-38.pyc │ │ │ │ └── whitespace.cpython-38.pyc │ │ │ ├── alphabeticalattributes.py │ │ │ ├── base.py │ │ │ ├── inject_meta_charset.py │ │ │ ├── lint.py │ │ │ ├── optionaltags.py │ │ │ ├── sanitizer.py │ │ │ └── whitespace.py │ │ ├── html5parser.py │ │ ├── serializer.py │ │ ├── treeadapters │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── genshi.cpython-38.pyc │ │ │ │ └── sax.cpython-38.pyc │ │ │ ├── genshi.py │ │ │ └── sax.py │ │ ├── treebuilders │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ ├── dom.cpython-38.pyc │ │ │ │ ├── etree.cpython-38.pyc │ │ │ │ └── etree_lxml.cpython-38.pyc │ │ │ ├── base.py │ │ │ ├── dom.py │ │ │ ├── etree.py │ │ │ └── etree_lxml.py │ │ └── treewalkers │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── base.cpython-38.pyc │ │ │ ├── dom.cpython-38.pyc │ │ │ ├── etree.cpython-38.pyc │ │ │ ├── etree_lxml.cpython-38.pyc │ │ │ └── genshi.cpython-38.pyc │ │ │ ├── base.py │ │ │ ├── dom.py │ │ │ ├── etree.py │ │ │ ├── etree_lxml.py │ │ │ └── genshi.py │ │ ├── idna │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── codec.cpython-38.pyc │ │ │ ├── compat.cpython-38.pyc │ │ │ ├── core.cpython-38.pyc │ │ │ ├── idnadata.cpython-38.pyc │ │ │ ├── intranges.cpython-38.pyc │ │ │ ├── package_data.cpython-38.pyc │ │ │ └── uts46data.cpython-38.pyc │ │ ├── codec.py │ │ ├── compat.py │ │ ├── core.py │ │ ├── idnadata.py │ │ ├── intranges.py │ │ ├── package_data.py │ │ └── uts46data.py │ │ ├── ipaddress.py │ │ ├── msgpack │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _version.cpython-38.pyc │ │ │ ├── exceptions.cpython-38.pyc │ │ │ ├── ext.cpython-38.pyc │ │ │ └── fallback.cpython-38.pyc │ │ ├── _version.py │ │ ├── exceptions.py │ │ ├── ext.py │ │ └── fallback.py │ │ ├── packaging │ │ ├── __about__.py │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __about__.cpython-38.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _compat.cpython-38.pyc │ │ │ ├── _structures.cpython-38.pyc │ │ │ ├── _typing.cpython-38.pyc │ │ │ ├── markers.cpython-38.pyc │ │ │ ├── requirements.cpython-38.pyc │ │ │ ├── specifiers.cpython-38.pyc │ │ │ ├── tags.cpython-38.pyc │ │ │ ├── utils.cpython-38.pyc │ │ │ └── version.cpython-38.pyc │ │ ├── _compat.py │ │ ├── _structures.py │ │ ├── _typing.py │ │ ├── markers.py │ │ ├── requirements.py │ │ ├── specifiers.py │ │ ├── tags.py │ │ ├── utils.py │ │ └── version.py │ │ ├── pep517 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _in_process.cpython-38.pyc │ │ │ ├── build.cpython-38.pyc │ │ │ ├── check.cpython-38.pyc │ │ │ ├── colorlog.cpython-38.pyc │ │ │ ├── compat.cpython-38.pyc │ │ │ ├── dirtools.cpython-38.pyc │ │ │ ├── envbuild.cpython-38.pyc │ │ │ ├── meta.cpython-38.pyc │ │ │ └── wrappers.cpython-38.pyc │ │ ├── _in_process.py │ │ ├── build.py │ │ ├── check.py │ │ ├── colorlog.py │ │ ├── compat.py │ │ ├── dirtools.py │ │ ├── envbuild.py │ │ ├── meta.py │ │ └── wrappers.py │ │ ├── pkg_resources │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── py31compat.cpython-38.pyc │ │ └── py31compat.py │ │ ├── progress │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── bar.cpython-38.pyc │ │ │ ├── counter.cpython-38.pyc │ │ │ └── spinner.cpython-38.pyc │ │ ├── bar.py │ │ ├── counter.py │ │ └── spinner.py │ │ ├── pyparsing.py │ │ ├── requests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── __version__.cpython-38.pyc │ │ │ ├── _internal_utils.cpython-38.pyc │ │ │ ├── adapters.cpython-38.pyc │ │ │ ├── api.cpython-38.pyc │ │ │ ├── auth.cpython-38.pyc │ │ │ ├── certs.cpython-38.pyc │ │ │ ├── compat.cpython-38.pyc │ │ │ ├── cookies.cpython-38.pyc │ │ │ ├── exceptions.cpython-38.pyc │ │ │ ├── help.cpython-38.pyc │ │ │ ├── hooks.cpython-38.pyc │ │ │ ├── models.cpython-38.pyc │ │ │ ├── packages.cpython-38.pyc │ │ │ ├── sessions.cpython-38.pyc │ │ │ ├── status_codes.cpython-38.pyc │ │ │ ├── structures.cpython-38.pyc │ │ │ └── utils.cpython-38.pyc │ │ ├── __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 │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── providers.cpython-38.pyc │ │ │ ├── reporters.cpython-38.pyc │ │ │ ├── resolvers.cpython-38.pyc │ │ │ └── structs.cpython-38.pyc │ │ ├── compat │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── collections_abc.cpython-38.pyc │ │ │ └── collections_abc.py │ │ ├── providers.py │ │ ├── reporters.py │ │ ├── resolvers.py │ │ └── structs.py │ │ ├── retrying.py │ │ ├── six.py │ │ ├── toml │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── decoder.cpython-38.pyc │ │ │ ├── encoder.cpython-38.pyc │ │ │ ├── ordered.cpython-38.pyc │ │ │ └── tz.cpython-38.pyc │ │ ├── decoder.py │ │ ├── encoder.py │ │ ├── ordered.py │ │ └── tz.py │ │ ├── urllib3 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _collections.cpython-38.pyc │ │ │ ├── _version.cpython-38.pyc │ │ │ ├── connection.cpython-38.pyc │ │ │ ├── connectionpool.cpython-38.pyc │ │ │ ├── exceptions.cpython-38.pyc │ │ │ ├── fields.cpython-38.pyc │ │ │ ├── filepost.cpython-38.pyc │ │ │ ├── poolmanager.cpython-38.pyc │ │ │ ├── request.cpython-38.pyc │ │ │ └── response.cpython-38.pyc │ │ ├── _collections.py │ │ ├── _version.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _appengine_environ.cpython-38.pyc │ │ │ │ ├── appengine.cpython-38.pyc │ │ │ │ ├── ntlmpool.cpython-38.pyc │ │ │ │ ├── pyopenssl.cpython-38.pyc │ │ │ │ ├── securetransport.cpython-38.pyc │ │ │ │ └── socks.cpython-38.pyc │ │ │ ├── _appengine_environ.py │ │ │ ├── _securetransport │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── bindings.cpython-38.pyc │ │ │ │ │ └── low_level.cpython-38.pyc │ │ │ │ ├── bindings.py │ │ │ │ └── low_level.py │ │ │ ├── appengine.py │ │ │ ├── ntlmpool.py │ │ │ ├── pyopenssl.py │ │ │ ├── securetransport.py │ │ │ └── socks.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── filepost.py │ │ ├── packages │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── six.cpython-38.pyc │ │ │ ├── backports │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── makefile.cpython-38.pyc │ │ │ │ └── makefile.py │ │ │ ├── six.py │ │ │ └── ssl_match_hostname │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── _implementation.cpython-38.pyc │ │ │ │ └── _implementation.py │ │ ├── poolmanager.py │ │ ├── request.py │ │ ├── response.py │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── connection.cpython-38.pyc │ │ │ ├── proxy.cpython-38.pyc │ │ │ ├── queue.cpython-38.pyc │ │ │ ├── request.cpython-38.pyc │ │ │ ├── response.cpython-38.pyc │ │ │ ├── retry.cpython-38.pyc │ │ │ ├── ssl_.cpython-38.pyc │ │ │ ├── ssltransport.cpython-38.pyc │ │ │ ├── timeout.cpython-38.pyc │ │ │ ├── url.cpython-38.pyc │ │ │ └── wait.cpython-38.pyc │ │ │ ├── connection.py │ │ │ ├── proxy.py │ │ │ ├── queue.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ ├── retry.py │ │ │ ├── ssl_.py │ │ │ ├── ssltransport.py │ │ │ ├── timeout.py │ │ │ ├── url.py │ │ │ └── wait.py │ │ ├── vendor.txt │ │ └── webencodings │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── labels.cpython-38.pyc │ │ ├── mklabels.cpython-38.pyc │ │ ├── tests.cpython-38.pyc │ │ └── x_user_defined.cpython-38.pyc │ │ ├── labels.py │ │ ├── mklabels.py │ │ ├── tests.py │ │ └── x_user_defined.py │ ├── pkg_resources │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-38.pyc │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── appdirs.cpython-38.pyc │ │ │ └── pyparsing.cpython-38.pyc │ │ ├── appdirs.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ ├── _typing.cpython-38.pyc │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ └── version.cpython-38.pyc │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── _typing.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── pyparsing.py │ │ └── vendored.txt │ ├── api_tests.txt │ ├── extern │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-38.pyc │ └── tests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── test_find_distributions.cpython-38.pyc │ │ ├── test_markers.cpython-38.pyc │ │ ├── test_pkg_resources.cpython-38.pyc │ │ ├── test_resources.cpython-38.pyc │ │ └── test_working_set.cpython-38.pyc │ │ ├── data │ │ ├── my-test-package-source │ │ │ ├── __pycache__ │ │ │ │ └── setup.cpython-38.pyc │ │ │ ├── setup.cfg │ │ │ └── setup.py │ │ ├── my-test-package_unpacked-egg │ │ │ └── my_test_package-1.0-py3.7.egg │ │ │ │ └── EGG-INFO │ │ │ │ ├── PKG-INFO │ │ │ │ ├── SOURCES.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── top_level.txt │ │ │ │ └── zip-safe │ │ └── my-test-package_zipped-egg │ │ │ └── my_test_package-1.0-py3.7.egg │ │ ├── test_find_distributions.py │ │ ├── test_markers.py │ │ ├── test_pkg_resources.py │ │ ├── test_resources.py │ │ └── test_working_set.py │ ├── requests-2.25.1.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ └── top_level.txt │ ├── requests │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── __version__.cpython-38.pyc │ │ ├── _internal_utils.cpython-38.pyc │ │ ├── adapters.cpython-38.pyc │ │ ├── api.cpython-38.pyc │ │ ├── auth.cpython-38.pyc │ │ ├── certs.cpython-38.pyc │ │ ├── compat.cpython-38.pyc │ │ ├── cookies.cpython-38.pyc │ │ ├── exceptions.cpython-38.pyc │ │ ├── help.cpython-38.pyc │ │ ├── hooks.cpython-38.pyc │ │ ├── models.cpython-38.pyc │ │ ├── packages.cpython-38.pyc │ │ ├── sessions.cpython-38.pyc │ │ ├── status_codes.cpython-38.pyc │ │ ├── structures.cpython-38.pyc │ │ └── utils.cpython-38.pyc │ ├── __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 │ ├── setuptools-51.1.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── dependency_links.txt │ ├── entry_points.txt │ └── top_level.txt │ ├── setuptools │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── _deprecation_warning.cpython-38.pyc │ │ ├── _imp.cpython-38.pyc │ │ ├── archive_util.cpython-38.pyc │ │ ├── build_meta.cpython-38.pyc │ │ ├── config.cpython-38.pyc │ │ ├── dep_util.cpython-38.pyc │ │ ├── depends.cpython-38.pyc │ │ ├── dist.cpython-38.pyc │ │ ├── errors.cpython-38.pyc │ │ ├── extension.cpython-38.pyc │ │ ├── glob.cpython-38.pyc │ │ ├── installer.cpython-38.pyc │ │ ├── launch.cpython-38.pyc │ │ ├── lib2to3_ex.cpython-38.pyc │ │ ├── monkey.cpython-38.pyc │ │ ├── msvc.cpython-38.pyc │ │ ├── namespaces.cpython-38.pyc │ │ ├── package_index.cpython-38.pyc │ │ ├── py34compat.cpython-38.pyc │ │ ├── sandbox.cpython-38.pyc │ │ ├── ssl_support.cpython-38.pyc │ │ ├── unicode_utils.cpython-38.pyc │ │ ├── version.cpython-38.pyc │ │ ├── wheel.cpython-38.pyc │ │ └── windows_support.cpython-38.pyc │ ├── _deprecation_warning.py │ ├── _distutils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _msvccompiler.cpython-38.pyc │ │ │ ├── archive_util.cpython-38.pyc │ │ │ ├── bcppcompiler.cpython-38.pyc │ │ │ ├── ccompiler.cpython-38.pyc │ │ │ ├── cmd.cpython-38.pyc │ │ │ ├── config.cpython-38.pyc │ │ │ ├── core.cpython-38.pyc │ │ │ ├── cygwinccompiler.cpython-38.pyc │ │ │ ├── debug.cpython-38.pyc │ │ │ ├── dep_util.cpython-38.pyc │ │ │ ├── dir_util.cpython-38.pyc │ │ │ ├── dist.cpython-38.pyc │ │ │ ├── errors.cpython-38.pyc │ │ │ ├── extension.cpython-38.pyc │ │ │ ├── fancy_getopt.cpython-38.pyc │ │ │ ├── file_util.cpython-38.pyc │ │ │ ├── filelist.cpython-38.pyc │ │ │ ├── log.cpython-38.pyc │ │ │ ├── msvc9compiler.cpython-38.pyc │ │ │ ├── msvccompiler.cpython-38.pyc │ │ │ ├── py35compat.cpython-38.pyc │ │ │ ├── py38compat.cpython-38.pyc │ │ │ ├── spawn.cpython-38.pyc │ │ │ ├── sysconfig.cpython-38.pyc │ │ │ ├── text_file.cpython-38.pyc │ │ │ ├── unixccompiler.cpython-38.pyc │ │ │ ├── util.cpython-38.pyc │ │ │ ├── version.cpython-38.pyc │ │ │ └── versionpredicate.cpython-38.pyc │ │ ├── _msvccompiler.py │ │ ├── archive_util.py │ │ ├── bcppcompiler.py │ │ ├── ccompiler.py │ │ ├── cmd.py │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── bdist.cpython-38.pyc │ │ │ │ ├── bdist_dumb.cpython-38.pyc │ │ │ │ ├── bdist_msi.cpython-38.pyc │ │ │ │ ├── bdist_rpm.cpython-38.pyc │ │ │ │ ├── bdist_wininst.cpython-38.pyc │ │ │ │ ├── build.cpython-38.pyc │ │ │ │ ├── build_clib.cpython-38.pyc │ │ │ │ ├── build_ext.cpython-38.pyc │ │ │ │ ├── build_py.cpython-38.pyc │ │ │ │ ├── build_scripts.cpython-38.pyc │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ ├── clean.cpython-38.pyc │ │ │ │ ├── config.cpython-38.pyc │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ ├── install_data.cpython-38.pyc │ │ │ │ ├── install_egg_info.cpython-38.pyc │ │ │ │ ├── install_headers.cpython-38.pyc │ │ │ │ ├── install_lib.cpython-38.pyc │ │ │ │ ├── install_scripts.cpython-38.pyc │ │ │ │ ├── py37compat.cpython-38.pyc │ │ │ │ ├── register.cpython-38.pyc │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ └── upload.cpython-38.pyc │ │ │ ├── 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 │ │ │ ├── wininst-10.0-amd64.exe │ │ │ ├── wininst-10.0.exe │ │ │ ├── wininst-14.0-amd64.exe │ │ │ ├── wininst-14.0.exe │ │ │ ├── wininst-6.0.exe │ │ │ ├── wininst-7.1.exe │ │ │ ├── wininst-8.0.exe │ │ │ ├── wininst-9.0-amd64.exe │ │ │ └── wininst-9.0.exe │ │ ├── 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 │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── py35compat.cpython-38.pyc │ │ │ │ ├── py38compat.cpython-38.pyc │ │ │ │ ├── support.cpython-38.pyc │ │ │ │ ├── test_archive_util.cpython-38.pyc │ │ │ │ ├── test_bdist.cpython-38.pyc │ │ │ │ ├── test_bdist_dumb.cpython-38.pyc │ │ │ │ ├── test_bdist_msi.cpython-38.pyc │ │ │ │ ├── test_bdist_rpm.cpython-38.pyc │ │ │ │ ├── test_bdist_wininst.cpython-38.pyc │ │ │ │ ├── test_build.cpython-38.pyc │ │ │ │ ├── test_build_clib.cpython-38.pyc │ │ │ │ ├── test_build_ext.cpython-38.pyc │ │ │ │ ├── test_build_py.cpython-38.pyc │ │ │ │ ├── test_build_scripts.cpython-38.pyc │ │ │ │ ├── test_check.cpython-38.pyc │ │ │ │ ├── test_clean.cpython-38.pyc │ │ │ │ ├── test_cmd.cpython-38.pyc │ │ │ │ ├── test_config.cpython-38.pyc │ │ │ │ ├── test_config_cmd.cpython-38.pyc │ │ │ │ ├── test_core.cpython-38.pyc │ │ │ │ ├── test_cygwinccompiler.cpython-38.pyc │ │ │ │ ├── test_dep_util.cpython-38.pyc │ │ │ │ ├── test_dir_util.cpython-38.pyc │ │ │ │ ├── test_dist.cpython-38.pyc │ │ │ │ ├── test_extension.cpython-38.pyc │ │ │ │ ├── test_file_util.cpython-38.pyc │ │ │ │ ├── test_filelist.cpython-38.pyc │ │ │ │ ├── test_install.cpython-38.pyc │ │ │ │ ├── test_install_data.cpython-38.pyc │ │ │ │ ├── test_install_headers.cpython-38.pyc │ │ │ │ ├── test_install_lib.cpython-38.pyc │ │ │ │ ├── test_install_scripts.cpython-38.pyc │ │ │ │ ├── test_log.cpython-38.pyc │ │ │ │ ├── test_msvc9compiler.cpython-38.pyc │ │ │ │ ├── test_msvccompiler.cpython-38.pyc │ │ │ │ ├── test_register.cpython-38.pyc │ │ │ │ ├── test_sdist.cpython-38.pyc │ │ │ │ ├── test_spawn.cpython-38.pyc │ │ │ │ ├── test_sysconfig.cpython-38.pyc │ │ │ │ ├── test_text_file.cpython-38.pyc │ │ │ │ ├── test_unixccompiler.cpython-38.pyc │ │ │ │ ├── test_upload.cpython-38.pyc │ │ │ │ ├── test_util.cpython-38.pyc │ │ │ │ ├── test_version.cpython-38.pyc │ │ │ │ └── test_versionpredicate.cpython-38.pyc │ │ │ ├── py35compat.py │ │ │ ├── py38compat.py │ │ │ ├── support.py │ │ │ ├── test_archive_util.py │ │ │ ├── test_bdist.py │ │ │ ├── test_bdist_dumb.py │ │ │ ├── test_bdist_msi.py │ │ │ ├── test_bdist_rpm.py │ │ │ ├── test_bdist_wininst.py │ │ │ ├── test_build.py │ │ │ ├── test_build_clib.py │ │ │ ├── test_build_ext.py │ │ │ ├── test_build_py.py │ │ │ ├── test_build_scripts.py │ │ │ ├── test_check.py │ │ │ ├── test_clean.py │ │ │ ├── test_cmd.py │ │ │ ├── test_config.py │ │ │ ├── test_config_cmd.py │ │ │ ├── test_core.py │ │ │ ├── test_cygwinccompiler.py │ │ │ ├── test_dep_util.py │ │ │ ├── test_dir_util.py │ │ │ ├── test_dist.py │ │ │ ├── test_extension.py │ │ │ ├── test_file_util.py │ │ │ ├── test_filelist.py │ │ │ ├── test_install.py │ │ │ ├── test_install_data.py │ │ │ ├── test_install_headers.py │ │ │ ├── test_install_lib.py │ │ │ ├── test_install_scripts.py │ │ │ ├── test_log.py │ │ │ ├── test_msvc9compiler.py │ │ │ ├── test_msvccompiler.py │ │ │ ├── test_register.py │ │ │ ├── test_sdist.py │ │ │ ├── test_spawn.py │ │ │ ├── test_sysconfig.py │ │ │ ├── test_text_file.py │ │ │ ├── test_unixccompiler.py │ │ │ ├── test_upload.py │ │ │ ├── test_util.py │ │ │ ├── test_version.py │ │ │ └── test_versionpredicate.py │ │ ├── text_file.py │ │ ├── unixccompiler.py │ │ ├── util.py │ │ ├── version.py │ │ └── versionpredicate.py │ ├── _imp.py │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── ordered_set.cpython-38.pyc │ │ │ └── pyparsing.cpython-38.pyc │ │ ├── ordered_set.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ ├── _typing.cpython-38.pyc │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ └── version.cpython-38.pyc │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── _typing.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── pyparsing.py │ │ └── vendored.txt │ ├── archive_util.py │ ├── build_meta.py │ ├── cli-32.exe │ ├── cli-64.exe │ ├── cli.exe │ ├── command │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── alias.cpython-38.pyc │ │ │ ├── bdist_egg.cpython-38.pyc │ │ │ ├── bdist_rpm.cpython-38.pyc │ │ │ ├── bdist_wininst.cpython-38.pyc │ │ │ ├── build_clib.cpython-38.pyc │ │ │ ├── build_ext.cpython-38.pyc │ │ │ ├── build_py.cpython-38.pyc │ │ │ ├── develop.cpython-38.pyc │ │ │ ├── dist_info.cpython-38.pyc │ │ │ ├── easy_install.cpython-38.pyc │ │ │ ├── egg_info.cpython-38.pyc │ │ │ ├── install.cpython-38.pyc │ │ │ ├── install_egg_info.cpython-38.pyc │ │ │ ├── install_lib.cpython-38.pyc │ │ │ ├── install_scripts.cpython-38.pyc │ │ │ ├── py36compat.cpython-38.pyc │ │ │ ├── register.cpython-38.pyc │ │ │ ├── rotate.cpython-38.pyc │ │ │ ├── saveopts.cpython-38.pyc │ │ │ ├── sdist.cpython-38.pyc │ │ │ ├── setopt.cpython-38.pyc │ │ │ ├── test.cpython-38.pyc │ │ │ ├── upload.cpython-38.pyc │ │ │ └── upload_docs.cpython-38.pyc │ │ ├── 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 │ │ └── __pycache__ │ │ │ └── __init__.cpython-38.pyc │ ├── 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 │ ├── py34compat.py │ ├── sandbox.py │ ├── script (dev).tmpl │ ├── script.tmpl │ ├── ssl_support.py │ ├── tests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── contexts.cpython-38.pyc │ │ │ ├── environment.cpython-38.pyc │ │ │ ├── files.cpython-38.pyc │ │ │ ├── fixtures.cpython-38.pyc │ │ │ ├── mod_with_constant.cpython-38.pyc │ │ │ ├── namespaces.cpython-38.pyc │ │ │ ├── script-with-bom.cpython-38.pyc │ │ │ ├── server.cpython-38.pyc │ │ │ ├── test_archive_util.cpython-38.pyc │ │ │ ├── test_bdist_deprecations.cpython-38.pyc │ │ │ ├── test_bdist_egg.cpython-38.pyc │ │ │ ├── test_build_clib.cpython-38.pyc │ │ │ ├── test_build_ext.cpython-38.pyc │ │ │ ├── test_build_meta.cpython-38.pyc │ │ │ ├── test_build_py.cpython-38.pyc │ │ │ ├── test_config.cpython-38.pyc │ │ │ ├── test_dep_util.cpython-38.pyc │ │ │ ├── test_depends.cpython-38.pyc │ │ │ ├── test_develop.cpython-38.pyc │ │ │ ├── test_dist.cpython-38.pyc │ │ │ ├── test_dist_info.cpython-38.pyc │ │ │ ├── test_distutils_adoption.cpython-38.pyc │ │ │ ├── test_easy_install.cpython-38.pyc │ │ │ ├── test_egg_info.cpython-38.pyc │ │ │ ├── test_extern.cpython-38.pyc │ │ │ ├── test_find_packages.cpython-38.pyc │ │ │ ├── test_glob.cpython-38.pyc │ │ │ ├── test_install_scripts.cpython-38.pyc │ │ │ ├── test_integration.cpython-38.pyc │ │ │ ├── test_manifest.cpython-38.pyc │ │ │ ├── test_msvc.cpython-38.pyc │ │ │ ├── test_msvc14.cpython-38.pyc │ │ │ ├── test_namespaces.cpython-38.pyc │ │ │ ├── test_packageindex.cpython-38.pyc │ │ │ ├── test_register.cpython-38.pyc │ │ │ ├── test_sandbox.cpython-38.pyc │ │ │ ├── test_sdist.cpython-38.pyc │ │ │ ├── test_setopt.cpython-38.pyc │ │ │ ├── test_setuptools.cpython-38.pyc │ │ │ ├── test_test.cpython-38.pyc │ │ │ ├── test_unicode_utils.cpython-38.pyc │ │ │ ├── test_upload.cpython-38.pyc │ │ │ ├── test_upload_docs.cpython-38.pyc │ │ │ ├── test_virtualenv.cpython-38.pyc │ │ │ ├── test_wheel.cpython-38.pyc │ │ │ ├── test_windows_wrappers.cpython-38.pyc │ │ │ ├── text.cpython-38.pyc │ │ │ └── textwrap.cpython-38.pyc │ │ ├── contexts.py │ │ ├── environment.py │ │ ├── files.py │ │ ├── fixtures.py │ │ ├── indexes │ │ │ └── test_links_priority │ │ │ │ ├── external.html │ │ │ │ └── simple │ │ │ │ └── foobar │ │ │ │ └── index.html │ │ ├── mod_with_constant.py │ │ ├── namespaces.py │ │ ├── script-with-bom.py │ │ ├── server.py │ │ ├── test_archive_util.py │ │ ├── test_bdist_deprecations.py │ │ ├── test_bdist_egg.py │ │ ├── test_build_clib.py │ │ ├── test_build_ext.py │ │ ├── test_build_meta.py │ │ ├── test_build_py.py │ │ ├── test_config.py │ │ ├── test_dep_util.py │ │ ├── test_depends.py │ │ ├── test_develop.py │ │ ├── test_dist.py │ │ ├── test_dist_info.py │ │ ├── test_distutils_adoption.py │ │ ├── test_easy_install.py │ │ ├── test_egg_info.py │ │ ├── test_extern.py │ │ ├── test_find_packages.py │ │ ├── test_glob.py │ │ ├── test_install_scripts.py │ │ ├── test_integration.py │ │ ├── test_manifest.py │ │ ├── test_msvc.py │ │ ├── test_msvc14.py │ │ ├── test_namespaces.py │ │ ├── test_packageindex.py │ │ ├── test_register.py │ │ ├── test_sandbox.py │ │ ├── test_sdist.py │ │ ├── test_setopt.py │ │ ├── test_setuptools.py │ │ ├── test_test.py │ │ ├── test_unicode_utils.py │ │ ├── test_upload.py │ │ ├── test_upload_docs.py │ │ ├── test_virtualenv.py │ │ ├── test_wheel.py │ │ ├── test_windows_wrappers.py │ │ ├── text.py │ │ └── textwrap.py │ ├── unicode_utils.py │ ├── version.py │ ├── wheel.py │ └── windows_support.py │ ├── urllib3-1.26.2.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ └── urllib3 │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── _collections.cpython-38.pyc │ ├── _version.cpython-38.pyc │ ├── connection.cpython-38.pyc │ ├── connectionpool.cpython-38.pyc │ ├── exceptions.cpython-38.pyc │ ├── fields.cpython-38.pyc │ ├── filepost.cpython-38.pyc │ ├── poolmanager.cpython-38.pyc │ ├── request.cpython-38.pyc │ └── response.cpython-38.pyc │ ├── _collections.py │ ├── _version.py │ ├── connection.py │ ├── connectionpool.py │ ├── contrib │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── _appengine_environ.cpython-38.pyc │ │ ├── appengine.cpython-38.pyc │ │ ├── ntlmpool.cpython-38.pyc │ │ ├── pyopenssl.cpython-38.pyc │ │ ├── securetransport.cpython-38.pyc │ │ └── socks.cpython-38.pyc │ ├── _appengine_environ.py │ ├── _securetransport │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── bindings.cpython-38.pyc │ │ │ └── low_level.cpython-38.pyc │ │ ├── bindings.py │ │ └── low_level.py │ ├── appengine.py │ ├── ntlmpool.py │ ├── pyopenssl.py │ ├── securetransport.py │ └── socks.py │ ├── exceptions.py │ ├── fields.py │ ├── filepost.py │ ├── packages │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── six.cpython-38.pyc │ ├── backports │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── makefile.cpython-38.pyc │ │ └── makefile.py │ ├── six.py │ └── ssl_match_hostname │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── _implementation.cpython-38.pyc │ │ └── _implementation.py │ ├── poolmanager.py │ ├── request.py │ ├── response.py │ └── util │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── connection.cpython-38.pyc │ ├── proxy.cpython-38.pyc │ ├── queue.cpython-38.pyc │ ├── request.cpython-38.pyc │ ├── response.cpython-38.pyc │ ├── retry.cpython-38.pyc │ ├── ssl_.cpython-38.pyc │ ├── ssltransport.cpython-38.pyc │ ├── timeout.cpython-38.pyc │ ├── url.cpython-38.pyc │ └── wait.cpython-38.pyc │ ├── connection.py │ ├── proxy.py │ ├── queue.py │ ├── request.py │ ├── response.py │ ├── retry.py │ ├── ssl_.py │ ├── ssltransport.py │ ├── timeout.py │ ├── url.py │ └── wait.py ├── Scripts ├── Activate.ps1 ├── activate ├── activate.bat ├── chardetect.exe ├── deactivate.bat ├── easy_install-3.8.exe ├── easy_install.exe ├── pip.exe ├── pip3.8.exe ├── pip3.exe ├── pylupdate5.exe ├── pyrcc5.exe ├── python.exe ├── pythonw.exe └── pyuic5.exe └── pyvenv.cfg /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/SoftwareDownloader.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/.idea/SoftwareDownloader.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/search.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/__pycache__/search.cpython-38.pyc -------------------------------------------------------------------------------- /main/DownLoadWin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/main/DownLoadWin.py -------------------------------------------------------------------------------- /main/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/main/Main.py -------------------------------------------------------------------------------- /main/MainWin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/main/MainWin.py -------------------------------------------------------------------------------- /main/__pycache__/DownLoadWin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/main/__pycache__/DownLoadWin.cpython-38.pyc -------------------------------------------------------------------------------- /main/__pycache__/MainWin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/main/__pycache__/MainWin.cpython-38.pyc -------------------------------------------------------------------------------- /main/__pycache__/func.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/main/__pycache__/func.cpython-38.pyc -------------------------------------------------------------------------------- /main/__pycache__/main.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/main/__pycache__/main.cpython-38.pyc -------------------------------------------------------------------------------- /main/func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/main/func.py -------------------------------------------------------------------------------- /src/images/PureSoftwareDownloader.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/src/images/PureSoftwareDownloader.ico -------------------------------------------------------------------------------- /src/images/bkg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/src/images/bkg.jpg -------------------------------------------------------------------------------- /src/images/btn_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/src/images/btn_search.png -------------------------------------------------------------------------------- /src/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/src/images/download.png -------------------------------------------------------------------------------- /src/images/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/src/images/ico.png -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5-5.15.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5-5.15.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5-5.15.2.dist-info/METADATA -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5-5.15.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5-5.15.2.dist-info/RECORD -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5-5.15.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5-5.15.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5-5.15.2.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QAxContainer.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QAxContainer.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QAxContainer.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QAxContainer.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Bluetooth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Bluetooth.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Core.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5DBus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5DBus.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Designer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Designer.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Gui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Gui.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Help.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Help.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Location.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Location.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Multimedia.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Multimedia.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Network.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Network.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5NetworkAuth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5NetworkAuth.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Nfc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Nfc.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5OpenGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5OpenGL.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Positioning.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Positioning.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5PrintSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5PrintSupport.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Qml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Qml.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5QmlModels.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5QmlModels.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Quick.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Quick.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Quick3D.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Quick3D.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Quick3DRender.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Quick3DRender.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Quick3DUtils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Quick3DUtils.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5QuickControls2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5QuickControls2.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5QuickParticles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5QuickParticles.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5QuickShapes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5QuickShapes.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5QuickTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5QuickTest.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5QuickWidgets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5QuickWidgets.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5RemoteObjects.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5RemoteObjects.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Sensors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Sensors.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5SerialPort.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5SerialPort.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Sql.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Sql.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Svg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Svg.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Test.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Test.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5TextToSpeech.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5TextToSpeech.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5WebChannel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5WebChannel.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5WebSockets.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Widgets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Widgets.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5WinExtras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5WinExtras.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5Xml.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/Qt5XmlPatterns.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/Qt5XmlPatterns.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/concrt140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/concrt140.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/d3dcompiler_47.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/d3dcompiler_47.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/libEGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/libEGL.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/libGLESv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/libGLESv2.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/libcrypto-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/libcrypto-1_1-x64.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/libeay32.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/libssl-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/libssl-1_1-x64.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/msvcp140.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/msvcp140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/msvcp140_1.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/msvcp140_2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/msvcp140_2.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/opengl32sw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/opengl32sw.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/ssleay32.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/vcruntime140.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/bin/vcruntime140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/bin/vcruntime140_1.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/Qt/WebSockets/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/Qt/WebSockets/qmldir -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtBluetooth/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/QtBluetooth/qmldir -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtLocation/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/QtLocation/qmldir -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtMultimedia/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/QtMultimedia/qmldir -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtNfc/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/QtNfc/qmldir -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtPositioning/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/QtPositioning/qmldir -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtQml/Models.2/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/QtQml/Models.2/qmldir -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtQml/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/QtQml/qmldir -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtQml/qmlplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/QtQml/qmlplugin.dll -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtQuick.2/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/QtQuick.2/qmldir -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtQuick/Controls/Styles/Flat/plugins.qmltypes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtQuick/Extras/Private/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Extras.Private 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtQuick/Extras/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/QtQuick/Extras/qmldir -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtQuick/Shapes/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/QtQuick/Shapes/qmldir -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtQuick3D/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/QtQuick3D/qmldir -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtSensors/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/QtSensors/qmldir -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtTest/SignalSpy.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/QtTest/SignalSpy.qml -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtTest/TestCase.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/QtTest/TestCase.qml -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtTest/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/QtTest/qmldir -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtTest/testlogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/QtTest/testlogger.js -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtWebChannel/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/QtWebChannel/qmldir -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qml/QtWebSockets/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qml/QtWebSockets/qmldir -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/qsci/api/python/PyQt5.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/qsci/api/python/PyQt5.api -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_ar.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_ar.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_bg.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_bg.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_ca.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_ca.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_cs.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_cs.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_da.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_da.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_de.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_en.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_es.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_fa.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_fa.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_fi.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_fi.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_fr.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_gd.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_gd.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_gl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_gl.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_he.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_he.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_hu.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_hu.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_it.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_ja.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_ja.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_ko.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_lt.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_lt.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_lv.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_lv.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_pl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_pl.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_pt.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_pt.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_ru.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_sk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_sk.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_sl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_sl.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_sv.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_sv.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_tr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_tr.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_uk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_uk.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_zh_CN.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_zh_CN.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qt_zh_TW.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qt_zh_TW.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_ar.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_ar.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_bg.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_bg.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_ca.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_ca.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_cs.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_cs.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_da.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_da.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_de.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_en.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_es.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_fi.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_fi.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_fr.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_gd.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_gd.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_he.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_he.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_hu.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_hu.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_it.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_ja.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_ja.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_ko.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_lv.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_lv.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_pl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_pl.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_ru.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_sk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_sk.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_tr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_tr.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_uk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/Qt/translations/qtbase_uk.qm -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtBluetooth.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtBluetooth.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtBluetooth.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtBluetooth.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtCore.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtCore.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtCore.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtCore.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtDBus.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtDBus.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtDBus.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtDBus.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtDesigner.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtDesigner.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtDesigner.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtDesigner.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtGui.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtGui.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtGui.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtGui.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtHelp.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtHelp.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtHelp.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtHelp.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtLocation.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtLocation.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtLocation.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtLocation.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtMultimedia.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtMultimedia.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtMultimedia.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtMultimedia.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtMultimediaWidgets.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtMultimediaWidgets.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtMultimediaWidgets.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtMultimediaWidgets.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtNetwork.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtNetwork.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtNetwork.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtNetwork.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtNetworkAuth.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtNetworkAuth.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtNetworkAuth.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtNetworkAuth.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtNfc.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtNfc.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtNfc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtNfc.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtOpenGL.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtOpenGL.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtOpenGL.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtOpenGL.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtPositioning.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtPositioning.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtPositioning.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtPositioning.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtPrintSupport.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtPrintSupport.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtPrintSupport.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtPrintSupport.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtQml.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtQml.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtQml.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtQml.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtQuick.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtQuick.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtQuick.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtQuick.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtQuick3D.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtQuick3D.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtQuick3D.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtQuick3D.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtQuickWidgets.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtQuickWidgets.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtQuickWidgets.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtQuickWidgets.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtRemoteObjects.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtRemoteObjects.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtRemoteObjects.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtRemoteObjects.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtSensors.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtSensors.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtSensors.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtSensors.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtSerialPort.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtSerialPort.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtSerialPort.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtSerialPort.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtSql.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtSql.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtSql.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtSql.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtSvg.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtSvg.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtSvg.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtSvg.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtTest.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtTest.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtTest.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtTest.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtTextToSpeech.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtTextToSpeech.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtTextToSpeech.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtTextToSpeech.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtWebChannel.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtWebChannel.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtWebChannel.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtWebChannel.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtWebSockets.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtWebSockets.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtWebSockets.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtWebSockets.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtWidgets.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtWidgets.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtWidgets.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtWidgets.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtWinExtras.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtWinExtras.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtWinExtras.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtWinExtras.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtXml.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtXml.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtXml.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtXml.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtXmlPatterns.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtXmlPatterns.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/QtXmlPatterns.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/QtXmlPatterns.pyi -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/_QOpenGLFunctions_2_0.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/_QOpenGLFunctions_2_0.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/_QOpenGLFunctions_2_1.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/_QOpenGLFunctions_2_1.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/QtCore.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/QtCore.toml -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qbuffer.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qbuffer.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qchar.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qchar.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qdir.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qdir.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qfile.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qfile.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qglobal.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qglobal.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qlibrary.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qlibrary.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qline.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qline.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qlocale.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qlocale.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qlogging.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qlogging.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qmargins.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qmargins.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qmutex.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qmutex.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qnumeric.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qnumeric.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qobject.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qobject.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qpoint.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qpoint.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qprocess.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qprocess.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qrandom.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qrandom.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qrect.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qrect.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qregexp.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qregexp.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qsize.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qsize.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qstate.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qstate.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qstring.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qstring.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qsysinfo.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qsysinfo.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qthread.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qthread.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qtimer.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qtimer.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qurl.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qurl.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/quuid.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/quuid.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtCore/qvariant.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtCore/qvariant.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtDBus/QtDBus.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtDBus/QtDBus.toml -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/QtGui.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/QtGui.toml -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/QtGuimod.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/QtGuimod.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qbitmap.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qbitmap.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qbrush.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qbrush.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qcolor.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qcolor.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qcursor.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qcursor.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qdrag.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qdrag.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qevent.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qevent.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qfont.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qfont.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qfontinfo.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qfontinfo.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qglyphrun.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qglyphrun.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qicon.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qicon.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qimage.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qimage.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qmovie.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qmovie.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qpagesize.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qpagesize.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qpainter.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qpainter.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qpalette.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qpalette.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qpen.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qpen.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qpicture.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qpicture.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qpixmap.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qpixmap.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qpolygon.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qpolygon.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qrawfont.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qrawfont.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qregion.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qregion.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qrgb.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qrgb.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qrgba64.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qrgba64.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qscreen.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qscreen.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qsurface.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qsurface.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qtextlist.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qtextlist.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qvector2d.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qvector2d.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qvector3d.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qvector3d.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qvector4d.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qvector4d.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtGui/qwindow.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtGui/qwindow.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtHelp/QtHelp.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtHelp/QtHelp.toml -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtNetwork/qssl.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtNetwork/qssl.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtNfc/QtNfc.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtNfc/QtNfc.toml -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtNfc/QtNfcmod.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtNfc/QtNfcmod.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtOpenGL/qgl.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtOpenGL/qgl.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtQml/QtQml.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtQml/QtQml.toml -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtQml/QtQmlmod.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtQml/QtQmlmod.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtQml/qjsengine.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtQml/qjsengine.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtQml/qjsvalue.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtQml/qjsvalue.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtQml/qqml.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtQml/qqml.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtQml/qqmlerror.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtQml/qqmlerror.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtQml/qqmllist.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtQml/qqmllist.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtQuick/qsgnode.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtQuick/qsgnode.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtSql/QtSql.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtSql/QtSql.toml -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtSql/QtSqlmod.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtSql/QtSqlmod.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtSql/qsql.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtSql/qsql.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtSql/qsqlerror.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtSql/qsqlerror.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtSql/qsqlfield.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtSql/qsqlfield.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtSql/qsqlindex.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtSql/qsqlindex.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtSql/qsqlquery.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtSql/qsqlquery.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtSvg/QtSvg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtSvg/QtSvg.toml -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtSvg/QtSvgmod.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtSvg/QtSvgmod.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtTest/QtTest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtTest/QtTest.toml -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtWidgets/qdial.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtWidgets/qdial.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtWidgets/qmenu.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtWidgets/qmenu.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtXml/QtXml.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtXml/QtXml.toml -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtXml/QtXmlmod.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtXml/QtXmlmod.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtXml/qdom.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtXml/qdom.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/bindings/QtXml/qxml.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/bindings/QtXml/qxml.sip -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/pylupdate.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/pylupdate.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/pylupdate_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/pylupdate_main.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/pyrcc.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/pyrcc.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/pyrcc_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/pyrcc_main.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/sip.cp38-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/sip.cp38-win_amd64.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/Compiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/Compiler/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/Compiler/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/Compiler/compiler.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/Compiler/indenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/Compiler/indenter.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/Compiler/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/Compiler/misc.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/Compiler/qtproxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/Compiler/qtproxies.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/Loader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/Loader/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/Loader/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/Loader/loader.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/Loader/qobjectcreator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/Loader/qobjectcreator.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/driver.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/exceptions.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/icon_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/icon_cache.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/objcreator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/objcreator.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/port_v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/port_v2/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/port_v2/as_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/port_v2/as_string.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/port_v2/ascii_upper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/port_v2/ascii_upper.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/port_v2/proxy_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/port_v2/proxy_base.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/port_v2/string_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/port_v2/string_io.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/port_v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/port_v3/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/port_v3/as_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/port_v3/as_string.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/port_v3/ascii_upper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/port_v3/ascii_upper.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/port_v3/proxy_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/port_v3/proxy_base.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/port_v3/string_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/port_v3/string_io.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/properties.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/pyuic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/pyuic.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5/uic/uiparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5/uic/uiparser.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5_sip-12.8.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5_sip-12.8.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5_sip-12.8.1.dist-info/RECORD -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5_sip-12.8.1.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/PyQt5_sip-12.8.1.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyQt5_sip-12.8.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | PyQt5 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/_distutils_hack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/_distutils_hack/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/certifi-2020.12.5.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/certifi-2020.12.5.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/certifi-2020.12.5.dist-info/RECORD -------------------------------------------------------------------------------- /venv/Lib/site-packages/certifi-2020.12.5.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/certifi-2020.12.5.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/Lib/site-packages/certifi-2020.12.5.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.12.05" 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/certifi/__main__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/certifi/cacert.pem -------------------------------------------------------------------------------- /venv/Lib/site-packages/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/certifi/core.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet-4.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet-4.0.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet-4.0.0.dist-info/LICENSE -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet-4.0.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet-4.0.0.dist-info/METADATA -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet-4.0.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet-4.0.0.dist-info/RECORD -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet-4.0.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet-4.0.0.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet-4.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | chardet 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/big5freq.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/big5prober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/chardistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/chardistribution.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/charsetgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/charsetgroupprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/charsetprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/cli/chardetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/cli/chardetect.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/codingstatemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/codingstatemachine.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/cp949prober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/enums.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/escprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/escsm.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/eucjpprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/euckrfreq.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/euckrprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/euctwfreq.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/euctwprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/gb2312freq.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/gb2312prober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/hebrewprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/jisfreq.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/jpcntx.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/langbulgarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/langbulgarianmodel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/langgreekmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/langgreekmodel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/langhebrewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/langhebrewmodel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/langhungarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/langhungarianmodel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/langrussianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/langrussianmodel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/langthaimodel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/langturkishmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/langturkishmodel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/latin1prober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/mbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/mbcharsetprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/mbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/mbcsgroupprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/mbcssm.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/metadata/languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/metadata/languages.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/sbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/sbcharsetprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/sbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/sbcsgroupprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/sjisprober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/universaldetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/universaldetector.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/utf8prober.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/chardet/version.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/distutils-precedence.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/distutils-precedence.pth -------------------------------------------------------------------------------- /venv/Lib/site-packages/easy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/easy_install.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/idna-2.10.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/idna-2.10.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/idna-2.10.dist-info/LICENSE.rst -------------------------------------------------------------------------------- /venv/Lib/site-packages/idna-2.10.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/idna-2.10.dist-info/METADATA -------------------------------------------------------------------------------- /venv/Lib/site-packages/idna-2.10.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/idna-2.10.dist-info/RECORD -------------------------------------------------------------------------------- /venv/Lib/site-packages/idna-2.10.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/idna-2.10.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/Lib/site-packages/idna-2.10.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/idna/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/idna/codec.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/idna/compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/idna/core.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/idna/idnadata.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/idna/intranges.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.10' 2 | 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/idna/uts46data.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-20.3.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-20.3.3.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip-20.3.3.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-20.3.3.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip-20.3.3.dist-info/METADATA -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-20.3.3.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip-20.3.3.dist-info/RECORD -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-20.3.3.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip-20.3.3.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-20.3.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/build_env.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/cli/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/base_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/cli/base_command.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/cmdoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/cli/cmdoptions.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/cli/main.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/main_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/cli/main_parser.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/cli/parser.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/progress_bars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/cli/progress_bars.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/spinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/cli/spinners.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/commands/cache.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/commands/check.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/commands/debug.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/commands/hash.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/commands/help.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/commands/list.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/commands/show.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/commands/wheel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/configuration.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/exceptions.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/locations.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/main.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/models/index.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/models/link.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/models/scheme.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/models/wheel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/network/auth.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/network/cache.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/network/utils.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/network/xmlrpc.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/req/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/req/req_file.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/req/req_set.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/utils/appdirs.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/utils/compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/utils/datetime.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/utils/encoding.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/utils/glibc.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/utils/hashes.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/utils/logging.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/utils/misc.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/utils/models.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/utils/parallel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/temp_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/utils/temp_dir.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/utils/typing.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/utils/urls.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/utils/wheel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/vcs/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/vcs/bazaar.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/vcs/mercurial.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/subversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/vcs/subversion.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/wheel_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_internal/wheel_builder.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.11.08" 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/certifi/__main__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/certifi/cacert.pem -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/certifi/core.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/big5freq.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/enums.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/escsm.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/jisfreq.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/jpcntx.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/mbcssm.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/chardet/version.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/colorama/ansi.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/colorama/win32.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/colorama/winterm.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/contextlib2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/contextlib2.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/database.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/index.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/locators.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/manifest.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/markers.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/metadata.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/scripts.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/util.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/version.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/distlib/wheel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/distro.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/html5lib/_utils.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/idna/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/idna/idnadata.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/idna/intranges.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.10' 2 | 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/idna/uts46data.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/ipaddress.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/msgpack/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 0) 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/msgpack/ext.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/msgpack/fallback.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/build.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/check.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/colorlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/colorlog.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/dirtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/dirtools.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/envbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/envbuild.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/meta.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pep517/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/pep517/wrappers.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/progress/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/progress/bar.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/progress/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/progress/counter.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/progress/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/progress/spinner.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/pyparsing.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/requests/api.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/requests/auth.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/requests/certs.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/requests/compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/requests/cookies.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/requests/help.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/requests/hooks.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/requests/models.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/requests/utils.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/retrying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/retrying.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/six.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/toml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/toml/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/toml/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/toml/decoder.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/toml/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/toml/encoder.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/toml/ordered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/toml/ordered.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/toml/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/toml/tz.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.2" 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/fields.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/filepost.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/request.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/response.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/urllib3/util/url.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pip/_vendor/vendor.txt -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pkg_resources/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/api_tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/pkg_resources/api_tests.txt -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/tests/data/my-test-package-source/setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests-2.25.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests-2.25.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests-2.25.1.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/requests-2.25.1.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests-2.25.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/requests/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/requests/__version__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/requests/_internal_utils.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/requests/adapters.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/requests/api.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/requests/auth.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/requests/certs.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/requests/compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/requests/cookies.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/requests/exceptions.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/requests/help.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/requests/hooks.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/requests/models.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/requests/packages.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/requests/sessions.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/requests/status_codes.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/requests/structures.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/requests/utils.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-51.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-51.1.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/_distutils/cmd.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/_distutils/config.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/_distutils/core.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/_distutils/debug.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/_distutils/dist.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/_distutils/errors.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/_distutils/log.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/_distutils/spawn.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/_distutils/util.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/_imp.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/_vendor/pyparsing.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/vendored.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/_vendor/vendored.txt -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/archive_util.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/build_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/build_meta.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/command/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/command/alias.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/bdist_egg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/command/bdist_egg.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/bdist_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/command/bdist_rpm.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/command/build_ext.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/build_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/command/build_py.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/command/develop.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/dist_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/command/dist_info.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/command/egg_info.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/command/install.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/command/register.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/command/rotate.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/saveopts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/command/saveopts.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/command/sdist.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/setopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/command/setopt.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/command/test.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/command/upload.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/config.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/dep_util.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/errors.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/extension.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/extern/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/installer.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/lib2to3_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/lib2to3_ex.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/namespaces.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/package_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/package_index.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/py34compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/py34compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/sandbox.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/script (dev).tmpl -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/ssl_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/ssl_support.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/contexts.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/environment.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/files.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/fixtures.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/mod_with_constant.py: -------------------------------------------------------------------------------- 1 | value = 'three, sir!' 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/namespaces.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/script-with-bom.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | result = 'passed' 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/server.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/test_config.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/test_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/test_dist.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/test_extern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/test_extern.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/test_glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/test_glob.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/test_msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/test_msvc.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/test_msvc14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/test_msvc14.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/test_sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/test_sdist.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/test_setopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/test_setopt.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/test_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/test_test.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/test_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/test_upload.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/test_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/test_wheel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/text.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/tests/textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/tests/textwrap.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/unicode_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/unicode_utils.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/windows_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/setuptools/windows_support.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3-1.26.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3-1.26.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3-1.26.2.dist-info/RECORD -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3-1.26.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3-1.26.2.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3-1.26.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/_collections.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.2" 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/connection.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/connectionpool.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/exceptions.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/fields.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/filepost.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/packages/six.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/poolmanager.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/request.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/response.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/util/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/util/connection.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/util/proxy.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/util/queue.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/util/request.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/util/response.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/util/retry.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/util/ssltransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/util/ssltransport.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/util/timeout.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/util/url.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Lib/site-packages/urllib3/util/wait.py -------------------------------------------------------------------------------- /venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Scripts/activate -------------------------------------------------------------------------------- /venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /venv/Scripts/chardetect.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Scripts/chardetect.exe -------------------------------------------------------------------------------- /venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /venv/Scripts/easy_install-3.8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Scripts/easy_install-3.8.exe -------------------------------------------------------------------------------- /venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /venv/Scripts/pip3.8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Scripts/pip3.8.exe -------------------------------------------------------------------------------- /venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /venv/Scripts/pylupdate5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Scripts/pylupdate5.exe -------------------------------------------------------------------------------- /venv/Scripts/pyrcc5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Scripts/pyrcc5.exe -------------------------------------------------------------------------------- /venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Scripts/python.exe -------------------------------------------------------------------------------- /venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /venv/Scripts/pyuic5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/Scripts/pyuic5.exe -------------------------------------------------------------------------------- /venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lighterEB/SoftwareDownloader/HEAD/venv/pyvenv.cfg --------------------------------------------------------------------------------