├── LICENSE ├── README.md ├── WindowsMedicator ├── AdminPrivileges.py ├── MSVCP140.dll ├── VCRUNTIME140.dll ├── VCRUNTIME140_1.dll ├── WindowsMedicator.exe ├── _asyncio.pyd ├── _brotli.cp39-win_amd64.pyd ├── _bz2.pyd ├── _cffi_backend.cp39-win_amd64.pyd ├── _ctypes.pyd ├── _decimal.pyd ├── _elementtree.pyd ├── _hashlib.pyd ├── _lzma.pyd ├── _multiprocessing.pyd ├── _overlapped.pyd ├── _queue.pyd ├── _socket.pyd ├── _ssl.pyd ├── _win32sysloader.pyd ├── altgraph-0.17.2.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── top_level.txt │ └── zip-safe ├── api-ms-win-core-console-l1-1-0.dll ├── api-ms-win-core-datetime-l1-1-0.dll ├── api-ms-win-core-debug-l1-1-0.dll ├── api-ms-win-core-errorhandling-l1-1-0.dll ├── api-ms-win-core-file-l1-1-0.dll ├── api-ms-win-core-file-l1-2-0.dll ├── api-ms-win-core-file-l2-1-0.dll ├── api-ms-win-core-handle-l1-1-0.dll ├── api-ms-win-core-heap-l1-1-0.dll ├── api-ms-win-core-interlocked-l1-1-0.dll ├── api-ms-win-core-libraryloader-l1-1-0.dll ├── api-ms-win-core-localization-l1-2-0.dll ├── api-ms-win-core-memory-l1-1-0.dll ├── api-ms-win-core-namedpipe-l1-1-0.dll ├── api-ms-win-core-processenvironment-l1-1-0.dll ├── api-ms-win-core-processthreads-l1-1-0.dll ├── api-ms-win-core-processthreads-l1-1-1.dll ├── api-ms-win-core-profile-l1-1-0.dll ├── api-ms-win-core-rtlsupport-l1-1-0.dll ├── api-ms-win-core-string-l1-1-0.dll ├── api-ms-win-core-synch-l1-1-0.dll ├── api-ms-win-core-synch-l1-2-0.dll ├── api-ms-win-core-sysinfo-l1-1-0.dll ├── api-ms-win-core-timezone-l1-1-0.dll ├── api-ms-win-core-util-l1-1-0.dll ├── api-ms-win-crt-conio-l1-1-0.dll ├── api-ms-win-crt-convert-l1-1-0.dll ├── api-ms-win-crt-environment-l1-1-0.dll ├── api-ms-win-crt-filesystem-l1-1-0.dll ├── api-ms-win-crt-heap-l1-1-0.dll ├── api-ms-win-crt-locale-l1-1-0.dll ├── api-ms-win-crt-math-l1-1-0.dll ├── api-ms-win-crt-process-l1-1-0.dll ├── api-ms-win-crt-runtime-l1-1-0.dll ├── api-ms-win-crt-stdio-l1-1-0.dll ├── api-ms-win-crt-string-l1-1-0.dll ├── api-ms-win-crt-time-l1-1-0.dll ├── api-ms-win-crt-utility-l1-1-0.dll ├── base_library.zip ├── certifi │ └── cacert.pem ├── cffi-1.15.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt ├── cryptography-36.0.1.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── LICENSE.APACHE │ ├── LICENSE.BSD │ ├── LICENSE.PSF │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ └── top_level.txt ├── cryptography │ └── hazmat │ │ └── bindings │ │ ├── _openssl.pyd │ │ └── _rust.pyd ├── dnspython-2.1.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ └── top_level.txt ├── importlib_metadata-4.11.2.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── libcrypto-1_1.dll ├── libffi-7.dll ├── libopenblas.EL2C6PLE4ZYW3ECEVIV3OXXGRN2NRFM2.gfortran-win_amd64.dll ├── libssl-1_1.dll ├── numpy │ ├── core │ │ ├── _multiarray_tests.cp39-win_amd64.pyd │ │ └── _multiarray_umath.cp39-win_amd64.pyd │ ├── fft │ │ └── _pocketfft_internal.cp39-win_amd64.pyd │ ├── linalg │ │ ├── _umath_linalg.cp39-win_amd64.pyd │ │ └── lapack_lite.cp39-win_amd64.pyd │ └── random │ │ ├── _bounded_integers.cp39-win_amd64.pyd │ │ ├── _common.cp39-win_amd64.pyd │ │ ├── _generator.cp39-win_amd64.pyd │ │ ├── _mt19937.cp39-win_amd64.pyd │ │ ├── _pcg64.cp39-win_amd64.pyd │ │ ├── _philox.cp39-win_amd64.pyd │ │ ├── _sfc64.cp39-win_amd64.pyd │ │ ├── bit_generator.cp39-win_amd64.pyd │ │ └── mtrand.cp39-win_amd64.pyd ├── psutil │ └── _psutil_windows.cp39-win_amd64.pyd ├── pyexpat.pyd ├── pyinstaller-4.10.dist-info │ ├── COPYING.txt │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt ├── python3.dll ├── python39.dll ├── pywintypes39.dll ├── select.pyd ├── setuptools-60.9.3.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt ├── ucrtbase.dll ├── unicodedata.pyd ├── wheel-0.37.1.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt ├── win32api.pyd └── win32pdh.pyd ├── requirements.txt ├── src ├── AdminPrivileges.py └── WindowsMedicator.py ├── version.txt └── view └── v3.png /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Shervin Badanara 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Windows Medicator

2 |

Version 3.0.0

3 |

4 | a Windows Based Open Source Application For Fixing and Repairing your Windows OS Images and Verifying Corrupted Files. 5 |

6 |
7 | 8 |
9 |
10 | 11 |

Precendences

12 | 13 | - [x] Able To Check System's Health 14 | - [x] Able To Scan System's Health 15 | - [x] Able To Restore System's Health 16 | - [x] Able To Repair Corrupted Windows Image 17 | - [x] Able To Repair Some Broken Windows Files 18 | - [x] Able To Check System's Disks 19 | - [x] Able To Fix Internet Connection Problem 20 | - [x] Able To Enable Linux Features On Windows 21 | - [x] Able To Uninstall & Delete All Windows Builtins Apps 22 | - [x] Able To Reset Factory 23 | 24 |
25 |
26 |

Language and technologies used in This Project

27 | 28 | 29 | 30 | 31 | 32 |
33 |

WorkSpace

34 | 35 | 36 | 37 |
38 | 39 | 40 |
41 | 42 |

How To Run

43 | 44 | First of All Clone the project from here ``~ git clone https://github.com/shervinbdndev/WindowsMedicator.git`` 45 | 46 |
47 | 48 | Then go To Project's Directory with ``~ cd WindowsMedicator-master`` No Matters if Your Using Windows 49 | 50 |
51 | 52 | For Running in Python Console 👇 53 | 54 |
55 | 56 | First Run `` py -m pip install -r requirements.txt `` 57 | 58 |
59 | 60 | Then Run the Code Below 👇 61 | 62 |
63 | 64 | ```py 65 | ~ python WindowsMedicator.py 66 | ``` 67 | 68 | If You Want you can Use The Executable file in `` WindowsMedicator `` and run `` WindowsMedicator.exe `` -------------------------------------------------------------------------------- /WindowsMedicator/AdminPrivileges.py: -------------------------------------------------------------------------------- 1 | import os 2 | import ctypes 3 | import platform 4 | from colorama.ansi import Fore 5 | 6 | 7 | 8 | 9 | 10 | """ This Class Needs Access to System For Scanning Your System's Health """ 11 | class RunProgramAsAdmin: 12 | def IsAdmin(): 13 | if (platform.system()[0].upper() in ["W"]): 14 | try: 15 | return ctypes.windll.shell32.IsUserAnAdmin() 16 | except: 17 | return False 18 | 19 | 20 | 21 | 22 | class ScriptHeaders: 23 | def ShowHeaders(): 24 | os.system(command="mode 72,45") 25 | ASCII = """{0} 26 | /////////////. ,///////////// 27 | /////////////////// ./////////////////// 28 | /////////////////////// /////////////////////// 29 | ///////////////////////////////////////////////// 30 | /////////////////// //////////////////////////// 31 | ////////////////// //////. /////////////////// 32 | ///////////////// ,//// .///////////////// 33 | //////////////// /// ,///////////////. 34 | .///////////// , / , 35 | ,,, ,,, 36 | ,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,. 37 | ,,,,,,,,,,,,, ,,,,,,,,,,,,,, 38 | ,,,,,,,,,,, ,,,,,,,,,,,, 39 | ,,,,,,,,,,,,,,,,,,,,, 40 | ,,,,,,,,,,,,,,, 41 | ,,,,,,,,,, 42 | ,,,,, 43 | ,,, {1} Version : 3.0.0 44 | 45 | """.format(Fore.GREEN , Fore.WHITE) 46 | print(f"{ASCII}\n") 47 | print(f"{Fore.MAGENTA}[{Fore.GREEN}+{Fore.MAGENTA}] {Fore.WHITE}Windows Medicator Created By shervinbdndev\n\n\n") 48 | print(f"\t{Fore.GREEN}[ Safe Zone ]") 49 | print(f"{Fore.MAGENTA}[{Fore.GREEN}1{Fore.MAGENTA}] {Fore.CYAN}(FIX) {Fore.WHITE}Check System's Health") 50 | print(f"{Fore.MAGENTA}[{Fore.GREEN}2{Fore.MAGENTA}] {Fore.CYAN}(FIX) {Fore.WHITE}Scan System's Health") 51 | print(f"{Fore.MAGENTA}[{Fore.GREEN}3{Fore.MAGENTA}] {Fore.CYAN}(FIX) {Fore.WHITE}Restore System's Health") 52 | print(f"{Fore.MAGENTA}[{Fore.GREEN}4{Fore.MAGENTA}] {Fore.CYAN}(FIX) {Fore.WHITE}Repair install.esd Image") 53 | print(f"{Fore.MAGENTA}[{Fore.GREEN}5{Fore.MAGENTA}] {Fore.CYAN}(FIX) {Fore.WHITE}Repair windows Installation Image") 54 | print(f"{Fore.MAGENTA}[{Fore.GREEN}6{Fore.MAGENTA}] {Fore.CYAN}(FIX) {Fore.WHITE}Check System's Disks") 55 | print(f"{Fore.MAGENTA}[{Fore.GREEN}7{Fore.MAGENTA}] {Fore.CYAN}(FIX) {Fore.WHITE}Internet Connection Problem") 56 | print(f"{Fore.MAGENTA}[{Fore.GREEN}8{Fore.MAGENTA}] {Fore.CYAN}(FIX) {Fore.WHITE}Enable Linux Features On Windows\n\n") 57 | print(f"\t{Fore.RED}[ Danger Zone ]") 58 | print(f"{Fore.MAGENTA}[{Fore.GREEN}9{Fore.MAGENTA}] {Fore.YELLOW}(DANGER) {Fore.WHITE}Uninstall & Delete All Windows Builtins Apps") 59 | print(f"{Fore.MAGENTA}[{Fore.GREEN}10{Fore.MAGENTA}] {Fore.RED}(DANGER) {Fore.WHITE}Reset Factory PC\n\n") 60 | print(f"{Fore.MAGENTA}[{Fore.GREEN}00{Fore.MAGENTA}] {Fore.WHITE}Exit") -------------------------------------------------------------------------------- /WindowsMedicator/MSVCP140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/MSVCP140.dll -------------------------------------------------------------------------------- /WindowsMedicator/VCRUNTIME140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/VCRUNTIME140.dll -------------------------------------------------------------------------------- /WindowsMedicator/VCRUNTIME140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/VCRUNTIME140_1.dll -------------------------------------------------------------------------------- /WindowsMedicator/WindowsMedicator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/WindowsMedicator.exe -------------------------------------------------------------------------------- /WindowsMedicator/_asyncio.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/_asyncio.pyd -------------------------------------------------------------------------------- /WindowsMedicator/_brotli.cp39-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/_brotli.cp39-win_amd64.pyd -------------------------------------------------------------------------------- /WindowsMedicator/_bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/_bz2.pyd -------------------------------------------------------------------------------- /WindowsMedicator/_cffi_backend.cp39-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/_cffi_backend.cp39-win_amd64.pyd -------------------------------------------------------------------------------- /WindowsMedicator/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/_ctypes.pyd -------------------------------------------------------------------------------- /WindowsMedicator/_decimal.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/_decimal.pyd -------------------------------------------------------------------------------- /WindowsMedicator/_elementtree.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/_elementtree.pyd -------------------------------------------------------------------------------- /WindowsMedicator/_hashlib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/_hashlib.pyd -------------------------------------------------------------------------------- /WindowsMedicator/_lzma.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/_lzma.pyd -------------------------------------------------------------------------------- /WindowsMedicator/_multiprocessing.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/_multiprocessing.pyd -------------------------------------------------------------------------------- /WindowsMedicator/_overlapped.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/_overlapped.pyd -------------------------------------------------------------------------------- /WindowsMedicator/_queue.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/_queue.pyd -------------------------------------------------------------------------------- /WindowsMedicator/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/_socket.pyd -------------------------------------------------------------------------------- /WindowsMedicator/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/_ssl.pyd -------------------------------------------------------------------------------- /WindowsMedicator/_win32sysloader.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/_win32sysloader.pyd -------------------------------------------------------------------------------- /WindowsMedicator/altgraph-0.17.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WindowsMedicator/altgraph-0.17.2.dist-info/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2004 Istvan Albert unless otherwise noted. 2 | Copyright (c) 2006-2010 Bob Ippolito 3 | Copyright (2) 2010-2020 Ronald Oussoren, et. al. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to 7 | deal in the Software without restriction, including without limitation the 8 | rights to use, copy, modify, merge, publish, distribute, sublicense, 9 | and/or sell copies of the Software, and to permit persons to whom the 10 | Software is furnished to do so. 11 | 12 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 14 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 15 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 16 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 17 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 18 | IN THE SOFTWARE. 19 | -------------------------------------------------------------------------------- /WindowsMedicator/altgraph-0.17.2.dist-info/METADATA: -------------------------------------------------------------------------------- 1 | Metadata-Version: 2.1 2 | Name: altgraph 3 | Version: 0.17.2 4 | Summary: Python graph (network) package 5 | Home-page: https://altgraph.readthedocs.io 6 | Author: Ronald Oussoren 7 | Author-email: ronaldoussoren@mac.com 8 | Maintainer: Ronald Oussoren 9 | Maintainer-email: ronaldoussoren@mac.com 10 | License: MIT 11 | Download-URL: http://pypi.python.org/pypi/altgraph 12 | Keywords: graph 13 | Platform: any 14 | Classifier: Intended Audience :: Developers 15 | Classifier: License :: OSI Approved :: MIT License 16 | Classifier: Programming Language :: Python 17 | Classifier: Programming Language :: Python :: 2 18 | Classifier: Programming Language :: Python :: 2.7 19 | Classifier: Programming Language :: Python :: 3 20 | Classifier: Programming Language :: Python :: 3.4 21 | Classifier: Programming Language :: Python :: 3.5 22 | Classifier: Programming Language :: Python :: 3.6 23 | Classifier: Programming Language :: Python :: 3.7 24 | Classifier: Programming Language :: Python :: 3.8 25 | Classifier: Programming Language :: Python :: 3.9 26 | Classifier: Programming Language :: Python :: 3.10 27 | Classifier: Topic :: Software Development :: Libraries :: Python Modules 28 | Classifier: Topic :: Scientific/Engineering :: Mathematics 29 | Classifier: Topic :: Scientific/Engineering :: Visualization 30 | Description-Content-Type: text/x-rst; charset=UTF-8 31 | License-File: LICENSE 32 | Project-URL: Documentation, https://altgraph.readthedocs.io/en/latest/ 33 | Project-URL: Issue tracker, https://github.com/ronaldoussoren/altgraph/issues 34 | Project-URL: Repository, https://github.com/ronaldoussoren/altgraph 35 | 36 | altgraph is a fork of graphlib: a graph (network) package for constructing 37 | graphs, BFS and DFS traversals, topological sort, shortest paths, etc. with 38 | graphviz output. 39 | 40 | altgraph includes some additional usage of Python 2.6+ features and 41 | enhancements related to modulegraph and macholib. 42 | 43 | CI status 44 | --------- 45 | 46 | .. image:: https://github.com/ronaldoussoren/altgraph/workflows/Lint/badge.svg 47 | .. image:: https://github.com/ronaldoussoren/altgraph/workflows/Test/badge.svg 48 | 49 | Project links 50 | ------------- 51 | 52 | * `Documentation `_ 53 | 54 | * `Issue Tracker `_ 55 | 56 | * `Repository `_ 57 | 58 | 59 | Release history 60 | =============== 61 | 62 | 0.17.1 63 | ------ 64 | 65 | * Explicitly mark Python 3.10 as supported in wheel metadata. 66 | 67 | 0.17 68 | ---- 69 | 70 | * Explicitly mark Python 3.8 as supported in wheel metadata. 71 | 72 | * Migrate from Bitbucket to GitHub 73 | 74 | * Run black on the entire repository 75 | 76 | 0.16.1 77 | ------ 78 | 79 | * Explicitly mark Python 3.7 as supported in wheel metadata. 80 | 81 | 0.16 82 | ---- 83 | 84 | * Add LICENSE file 85 | 86 | 0.15 87 | ---- 88 | 89 | * ``ObjectGraph.get_edges``, ``ObjectGraph.getEdgeData`` and ``ObjectGraph.updateEdgeData`` 90 | accept *None* as the node to get and treat this as an alias for *self* (as other 91 | methods already did). 92 | 93 | 0.14 94 | ---- 95 | 96 | - Issue #7: Remove use of ``iteritems`` in altgraph.GraphAlgo code 97 | 98 | 0.13 99 | ---- 100 | 101 | - Issue #4: Graph._bfs_subgraph and back_bfs_subgraph return subgraphs with reversed edges 102 | 103 | Fix by "pombredanne" on bitbucket. 104 | 105 | 106 | 0.12 107 | ---- 108 | 109 | - Added ``ObjectGraph.edgeData`` to retrieve the edge data 110 | from a specific edge. 111 | 112 | - Added ``AltGraph.update_edge_data`` and ``ObjectGraph.updateEdgeData`` 113 | to update the data associated with a graph edge. 114 | 115 | 0.11 116 | ---- 117 | 118 | - Stabilize the order of elements in dot file exports, 119 | patch from bitbucket user 'pombredanne'. 120 | 121 | - Tweak setup.py file to remove dependency on distribute (but 122 | keep the dependency on setuptools) 123 | 124 | 125 | 0.10.2 126 | ------ 127 | 128 | - There where no classifiers in the package metadata due to a bug 129 | in setup.py 130 | 131 | 0.10.1 132 | ------ 133 | 134 | This is a bugfix release 135 | 136 | Bug fixes: 137 | 138 | - Issue #3: The source archive contains a README.txt 139 | while the setup file refers to ReadMe.txt. 140 | 141 | This is caused by a misfeature in distutils, as a 142 | workaround I've renamed ReadMe.txt to README.txt 143 | in the source tree and setup file. 144 | 145 | 146 | 0.10 147 | ----- 148 | 149 | This is a minor feature release 150 | 151 | Features: 152 | 153 | - Do not use "2to3" to support Python 3. 154 | 155 | As a side effect of this altgraph now supports 156 | Python 2.6 and later, and no longer supports 157 | earlier releases of Python. 158 | 159 | - The order of attributes in the Dot output 160 | is now always alphabetical. 161 | 162 | With this change the output will be consistent 163 | between runs and Python versions. 164 | 165 | 0.9 166 | --- 167 | 168 | This is a minor bugfix release 169 | 170 | Features: 171 | 172 | - Added ``altgraph.ObjectGraph.ObjectGraph.nodes``, a method 173 | yielding all nodes in an object graph. 174 | 175 | Bugfixes: 176 | 177 | - The 0.8 release didn't work with py2app when using 178 | python 3.x. 179 | 180 | 181 | 0.8 182 | ----- 183 | 184 | This is a minor feature release. The major new feature 185 | is a extensive set of unittests, which explains almost 186 | all other changes in this release. 187 | 188 | Bugfixes: 189 | 190 | - Installing failed with Python 2.5 due to using a distutils 191 | class that isn't available in that version of Python 192 | (issue #1 on the issue tracker) 193 | 194 | - ``altgraph.GraphStat.degree_dist`` now actually works 195 | 196 | - ``altgraph.Graph.add_edge(a, b, create_nodes=False)`` will 197 | no longer create the edge when one of the nodes doesn't 198 | exist. 199 | 200 | - ``altgraph.Graph.forw_topo_sort`` failed for some sparse graphs. 201 | 202 | - ``altgraph.Graph.back_topo_sort`` was completely broken in 203 | previous releases. 204 | 205 | - ``altgraph.Graph.forw_bfs_subgraph`` now actually works. 206 | 207 | - ``altgraph.Graph.back_bfs_subgraph`` now actually works. 208 | 209 | - ``altgraph.Graph.iterdfs`` now returns the correct result 210 | when the ``forward`` argument is ``False``. 211 | 212 | - ``altgraph.Graph.iterdata`` now returns the correct result 213 | when the ``forward`` argument is ``False``. 214 | 215 | 216 | Features: 217 | 218 | - The ``altgraph.Graph`` constructor now accepts an argument 219 | that contains 2- and 3-tuples instead of requireing that 220 | all items have the same size. The (optional) argument can now 221 | also be any iterator. 222 | 223 | - ``altgraph.Graph.Graph.add_node`` has no effect when you 224 | add a hidden node. 225 | 226 | - The private method ``altgraph.Graph._bfs`` is no longer 227 | present. 228 | 229 | - The private method ``altgraph.Graph._dfs`` is no longer 230 | present. 231 | 232 | - ``altgraph.ObjectGraph`` now has a ``__contains__`` methods, 233 | which means you can use the ``in`` operator to check if a 234 | node is part of a graph. 235 | 236 | - ``altgraph.GraphUtil.generate_random_graph`` will raise 237 | ``GraphError`` instead of looping forever when it is 238 | impossible to create the requested graph. 239 | 240 | - ``altgraph.Dot.edge_style`` raises ``GraphError`` when 241 | one of the nodes is not present in the graph. The method 242 | silently added the tail in the past, but without ensuring 243 | a consistent graph state. 244 | 245 | - ``altgraph.Dot.save_img`` now works when the mode is 246 | ``"neato"``. 247 | 248 | 0.7.2 249 | ----- 250 | 251 | This is a minor bugfix release 252 | 253 | Bugfixes: 254 | 255 | - distutils didn't include the documentation subtree 256 | 257 | 0.7.1 258 | ----- 259 | 260 | This is a minor feature release 261 | 262 | Features: 263 | 264 | - Documentation is now generated using `sphinx `_ 265 | and can be viewed at . 266 | 267 | - The repository has moved to bitbucket 268 | 269 | - ``altgraph.GraphStat.avg_hops`` is no longer present, the function had no 270 | implementation and no specified behaviour. 271 | 272 | - the module ``altgraph.compat`` is gone, which means altgraph will no 273 | longer work with Python 2.3. 274 | 275 | 276 | 0.7.0 277 | ----- 278 | 279 | This is a minor feature release. 280 | 281 | Features: 282 | 283 | - Support for Python 3 284 | 285 | - It is now possible to run tests using 'python setup.py test' 286 | 287 | (The actual testsuite is still very minimal though) 288 | 289 | 290 | -------------------------------------------------------------------------------- /WindowsMedicator/altgraph-0.17.2.dist-info/RECORD: -------------------------------------------------------------------------------- 1 | altgraph-0.17.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 2 | altgraph-0.17.2.dist-info/LICENSE,sha256=bBlNbbDGTUVTXRDJUUK5sM2nt9zH8d3uMCs9U289vkY,1002 3 | altgraph-0.17.2.dist-info/METADATA,sha256=F3Nk9zBKSMii3kNr_Ju4si34--Zoud_UMHFHsZT6yt8,7221 4 | altgraph-0.17.2.dist-info/RECORD,, 5 | altgraph-0.17.2.dist-info/WHEEL,sha256=Z-nyYpwrcSqxfdux5Mbn_DQ525iP7J2DG3JgGvOYyTQ,110 6 | altgraph-0.17.2.dist-info/top_level.txt,sha256=HEBeRWf5ItVPc7Y9hW7hGlrLXZjPoL4by6CAhBV_BwA,9 7 | altgraph-0.17.2.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1 8 | altgraph/Dot.py,sha256=fHS-GozpcEKyWxW2v110JaFMS68iIc0oYFlFDuNQgOQ,9901 9 | altgraph/Graph.py,sha256=6b6fSHLA5QSqMDnSHIO7_WJnBYIdq3K5Bt8VipRODwg,20788 10 | altgraph/GraphAlgo.py,sha256=Uu9aTjSKWi38iQ_e9ZrwCnzQaI1WWFDhJ6kfmu0jxAA,5645 11 | altgraph/GraphStat.py,sha256=vj3VqCOkzpAKggxVFLE_AlMIfPm1WN17DX4rbZjXAx4,1890 12 | altgraph/GraphUtil.py,sha256=1T4DJc2bJn6EIU_Ct4m0oiKlXWkXvqcXE8CGL2K9en8,3990 13 | altgraph/ObjectGraph.py,sha256=o7fPJtyBEgJSXAkUjzvj35B-FOY4uKzfLGqSvTitx8c,6490 14 | altgraph/__init__.py,sha256=YtY-rHf6X_lYk8820da2uVZT-C-B9KGpGXvBg1oZ0Fc,5015 15 | altgraph/__pycache__/Dot.cpython-39.pyc,, 16 | altgraph/__pycache__/Graph.cpython-39.pyc,, 17 | altgraph/__pycache__/GraphAlgo.cpython-39.pyc,, 18 | altgraph/__pycache__/GraphStat.cpython-39.pyc,, 19 | altgraph/__pycache__/GraphUtil.cpython-39.pyc,, 20 | altgraph/__pycache__/ObjectGraph.cpython-39.pyc,, 21 | altgraph/__pycache__/__init__.cpython-39.pyc,, 22 | -------------------------------------------------------------------------------- /WindowsMedicator/altgraph-0.17.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /WindowsMedicator/altgraph-0.17.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | altgraph 2 | -------------------------------------------------------------------------------- /WindowsMedicator/altgraph-0.17.2.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-console-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-console-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-datetime-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-datetime-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-debug-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-debug-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-errorhandling-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-errorhandling-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-file-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-file-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-file-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-file-l1-2-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-file-l2-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-file-l2-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-handle-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-handle-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-heap-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-heap-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-interlocked-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-interlocked-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-libraryloader-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-libraryloader-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-localization-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-localization-l1-2-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-memory-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-memory-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-namedpipe-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-namedpipe-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-processenvironment-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-processenvironment-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-processthreads-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-processthreads-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-processthreads-l1-1-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-processthreads-l1-1-1.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-profile-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-profile-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-rtlsupport-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-rtlsupport-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-string-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-string-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-synch-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-synch-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-synch-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-synch-l1-2-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-sysinfo-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-sysinfo-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-timezone-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-timezone-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-core-util-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-core-util-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-crt-conio-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-crt-conio-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-crt-convert-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-crt-convert-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-crt-environment-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-crt-environment-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-crt-filesystem-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-crt-filesystem-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-crt-heap-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-crt-heap-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-crt-locale-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-crt-locale-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-crt-math-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-crt-math-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-crt-process-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-crt-process-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-crt-runtime-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-crt-runtime-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-crt-stdio-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-crt-stdio-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-crt-string-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-crt-string-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-crt-time-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-crt-time-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/api-ms-win-crt-utility-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/api-ms-win-crt-utility-l1-1-0.dll -------------------------------------------------------------------------------- /WindowsMedicator/base_library.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/base_library.zip -------------------------------------------------------------------------------- /WindowsMedicator/cffi-1.15.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WindowsMedicator/cffi-1.15.0.dist-info/LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Except when otherwise stated (look for LICENSE files in directories or 3 | information at the beginning of each file) all software and 4 | documentation is licensed as follows: 5 | 6 | The MIT License 7 | 8 | Permission is hereby granted, free of charge, to any person 9 | obtaining a copy of this software and associated documentation 10 | files (the "Software"), to deal in the Software without 11 | restriction, including without limitation the rights to use, 12 | copy, modify, merge, publish, distribute, sublicense, and/or 13 | sell copies of the Software, and to permit persons to whom the 14 | Software is furnished to do so, subject to the following conditions: 15 | 16 | The above copyright notice and this permission notice shall be included 17 | in all copies or substantial portions of the Software. 18 | 19 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 20 | OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 21 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 22 | THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 23 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 24 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 25 | DEALINGS IN THE SOFTWARE. 26 | 27 | -------------------------------------------------------------------------------- /WindowsMedicator/cffi-1.15.0.dist-info/METADATA: -------------------------------------------------------------------------------- 1 | Metadata-Version: 2.1 2 | Name: cffi 3 | Version: 1.15.0 4 | Summary: Foreign Function Interface for Python calling C code. 5 | Home-page: http://cffi.readthedocs.org 6 | Author: Armin Rigo, Maciej Fijalkowski 7 | Author-email: python-cffi@googlegroups.com 8 | License: MIT 9 | Platform: UNKNOWN 10 | Classifier: Programming Language :: Python 11 | Classifier: Programming Language :: Python :: 2 12 | Classifier: Programming Language :: Python :: 2.7 13 | Classifier: Programming Language :: Python :: 3 14 | Classifier: Programming Language :: Python :: 3.6 15 | Classifier: Programming Language :: Python :: 3.7 16 | Classifier: Programming Language :: Python :: 3.8 17 | Classifier: Programming Language :: Python :: 3.9 18 | Classifier: Programming Language :: Python :: 3.10 19 | Classifier: Programming Language :: Python :: Implementation :: CPython 20 | Classifier: Programming Language :: Python :: Implementation :: PyPy 21 | Classifier: License :: OSI Approved :: MIT License 22 | License-File: LICENSE 23 | Requires-Dist: pycparser 24 | 25 | 26 | CFFI 27 | ==== 28 | 29 | Foreign Function Interface for Python calling C code. 30 | Please see the `Documentation `_. 31 | 32 | Contact 33 | ------- 34 | 35 | `Mailing list `_ 36 | 37 | 38 | -------------------------------------------------------------------------------- /WindowsMedicator/cffi-1.15.0.dist-info/RECORD: -------------------------------------------------------------------------------- 1 | _cffi_backend.cp39-win_amd64.pyd,sha256=iEUfMicHsixDs2eWw3EbrOZPUO97IslPvymgSig45TM,183296 2 | cffi-1.15.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 3 | cffi-1.15.0.dist-info/LICENSE,sha256=esEZUOct9bRcUXFqeyLnuzSzJNZ_Bl4pOBUt1HLEgV8,1320 4 | cffi-1.15.0.dist-info/METADATA,sha256=eo1521k3Cf0aEkta5nFxpMpLkd-kufSatsH1IAJqd-Y,1164 5 | cffi-1.15.0.dist-info/RECORD,, 6 | cffi-1.15.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 7 | cffi-1.15.0.dist-info/WHEEL,sha256=MRZ_p7RU4olp1XL4U2EYLkuYikriaVRqXBoKVLH_OSE,100 8 | cffi-1.15.0.dist-info/entry_points.txt,sha256=Q9f5C9IpjYxo0d2PK9eUcnkgxHc9pHWwjEMaANPKNCI,76 9 | cffi-1.15.0.dist-info/top_level.txt,sha256=rE7WR3rZfNKxWI9-jn6hsHCAl7MDkB-FmuQbxWjFehQ,19 10 | cffi/__init__.py,sha256=fUtCZsANzF8L4lqN3ntzr_g_gJYpJd7gLKBMXnIeFBs,527 11 | cffi/__pycache__/__init__.cpython-39.pyc,, 12 | cffi/__pycache__/api.cpython-39.pyc,, 13 | cffi/__pycache__/backend_ctypes.cpython-39.pyc,, 14 | cffi/__pycache__/cffi_opcode.cpython-39.pyc,, 15 | cffi/__pycache__/commontypes.cpython-39.pyc,, 16 | cffi/__pycache__/cparser.cpython-39.pyc,, 17 | cffi/__pycache__/error.cpython-39.pyc,, 18 | cffi/__pycache__/ffiplatform.cpython-39.pyc,, 19 | cffi/__pycache__/lock.cpython-39.pyc,, 20 | cffi/__pycache__/model.cpython-39.pyc,, 21 | cffi/__pycache__/pkgconfig.cpython-39.pyc,, 22 | cffi/__pycache__/recompiler.cpython-39.pyc,, 23 | cffi/__pycache__/setuptools_ext.cpython-39.pyc,, 24 | cffi/__pycache__/vengine_cpy.cpython-39.pyc,, 25 | cffi/__pycache__/vengine_gen.cpython-39.pyc,, 26 | cffi/__pycache__/verifier.cpython-39.pyc,, 27 | cffi/_cffi_errors.h,sha256=G0bGOb-6SNIO0UY8KEN3cM40Yd1JuR5bETQ8Ni5PxWY,4057 28 | cffi/_cffi_include.h,sha256=H7cgdZR-POwmUFrIup4jOGzmje8YoQHhN99gVFg7w08,15185 29 | cffi/_embedding.h,sha256=chQESHjLOleuOiPVeOtKsofXhG44yFyZkIfOCevMAAg,18108 30 | cffi/api.py,sha256=Xs_dAN5x1ehfnn_F9ZTdA3Ce0bmPrqeIOkO4Ya1tfbQ,43029 31 | cffi/backend_ctypes.py,sha256=BHN3q2giL2_Y8wMDST2CIcc_qoMrs65qV9Ob5JvxBZ4,43575 32 | cffi/cffi_opcode.py,sha256=57P2NHLZkuTWueZybu5iosWljb6ocQmUXzGrCplrnyE,5911 33 | cffi/commontypes.py,sha256=mEZD4g0qtadnv6O6CEXvMQaJ1K6SRbG5S1h4YvVZHOU,2769 34 | cffi/cparser.py,sha256=CwVk2V3ATYlCoywG6zN35w6UQ7zj2EWX68KjoJp2Mzk,45237 35 | cffi/error.py,sha256=Bka7fSV22aIglTQDPIDfpnxTc1aWZLMQdQOJY-h_PUA,908 36 | cffi/ffiplatform.py,sha256=qioydJeC63dEvrQ3ht5_BPmSs7wzzzuWnZAJtfhic7I,4173 37 | cffi/lock.py,sha256=vnbsel7392Ib8gGBifIfAfc7MHteSwd3nP725pvc25Q,777 38 | cffi/model.py,sha256=HRD0WEYHF2Vr6RjS-4wyncElrZxU2256zY0fbMkSKec,22385 39 | cffi/parse_c_type.h,sha256=fKYNqWNX5f9kZNNhbXcRLTOlpRGRhh8eCLyHmTXIZnQ,6157 40 | cffi/pkgconfig.py,sha256=9zDcDf0XKIJaxFHLg7e-W8-Xb8Yq5hdhqH7kLg-ugRo,4495 41 | cffi/recompiler.py,sha256=LmEalHqs90dgp5od-BiZizsu2M2WJV7S6ctNSxj3FsA,66149 42 | cffi/setuptools_ext.py,sha256=8y14TOlRAkgdczmwtPOahyFXJHNyIqhLjUHMYQmjOHs,9150 43 | cffi/vengine_cpy.py,sha256=ukugKCIsURxJzHxlxS265tGjQfPTFDbThwsqBrwKh-A,44396 44 | cffi/vengine_gen.py,sha256=mykUhLFJIcV6AyQ5cMJ3n_7dbqw0a9WEjXW0E-WfgiI,27359 45 | cffi/verifier.py,sha256=AZuuR7MxjMYZc8IsZjGsF8mdGajCsOY60AZLwZZ_Z2Y,11560 46 | -------------------------------------------------------------------------------- /WindowsMedicator/cffi-1.15.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/cffi-1.15.0.dist-info/REQUESTED -------------------------------------------------------------------------------- /WindowsMedicator/cffi-1.15.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: false 4 | Tag: cp39-cp39-win_amd64 5 | 6 | -------------------------------------------------------------------------------- /WindowsMedicator/cffi-1.15.0.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [distutils.setup_keywords] 2 | cffi_modules = cffi.setuptools_ext:cffi_modules 3 | 4 | -------------------------------------------------------------------------------- /WindowsMedicator/cffi-1.15.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _cffi_backend 2 | cffi 3 | -------------------------------------------------------------------------------- /WindowsMedicator/cryptography-36.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WindowsMedicator/cryptography-36.0.1.dist-info/LICENSE: -------------------------------------------------------------------------------- 1 | This software is made available under the terms of *either* of the licenses 2 | found in LICENSE.APACHE or LICENSE.BSD. Contributions to cryptography are made 3 | under the terms of *both* these licenses. 4 | 5 | The code used in the OS random engine is derived from CPython, and is licensed 6 | under the terms of the PSF License Agreement. 7 | -------------------------------------------------------------------------------- /WindowsMedicator/cryptography-36.0.1.dist-info/LICENSE.APACHE: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | https://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright [yyyy] [name of copyright owner] 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | https://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. 203 | -------------------------------------------------------------------------------- /WindowsMedicator/cryptography-36.0.1.dist-info/LICENSE.BSD: -------------------------------------------------------------------------------- 1 | Copyright (c) Individual contributors. 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms, with or without 5 | modification, are permitted provided that the following conditions are met: 6 | 7 | 1. Redistributions of source code must retain the above copyright notice, 8 | this list of conditions and the following disclaimer. 9 | 10 | 2. Redistributions in binary form must reproduce the above copyright 11 | notice, this list of conditions and the following disclaimer in the 12 | documentation and/or other materials provided with the distribution. 13 | 14 | 3. Neither the name of PyCA Cryptography nor the names of its contributors 15 | may be used to endorse or promote products derived from this software 16 | without specific prior written permission. 17 | 18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 19 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 20 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 21 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR 22 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 23 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 24 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 25 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 27 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 | -------------------------------------------------------------------------------- /WindowsMedicator/cryptography-36.0.1.dist-info/LICENSE.PSF: -------------------------------------------------------------------------------- 1 | 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and 2 | the Individual or Organization ("Licensee") accessing and otherwise using Python 3 | 2.7.12 software in source or binary form and its associated documentation. 4 | 5 | 2. Subject to the terms and conditions of this License Agreement, PSF hereby 6 | grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, 7 | analyze, test, perform and/or display publicly, prepare derivative works, 8 | distribute, and otherwise use Python 2.7.12 alone or in any derivative 9 | version, provided, however, that PSF's License Agreement and PSF's notice of 10 | copyright, i.e., "Copyright © 2001-2016 Python Software Foundation; All Rights 11 | Reserved" are retained in Python 2.7.12 alone or in any derivative version 12 | prepared by Licensee. 13 | 14 | 3. In the event Licensee prepares a derivative work that is based on or 15 | incorporates Python 2.7.12 or any part thereof, and wants to make the 16 | derivative work available to others as provided herein, then Licensee hereby 17 | agrees to include in any such work a brief summary of the changes made to Python 18 | 2.7.12. 19 | 20 | 4. PSF is making Python 2.7.12 available to Licensee on an "AS IS" basis. 21 | PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF 22 | EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR 23 | WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE 24 | USE OF PYTHON 2.7.12 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. 25 | 26 | 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 2.7.12 27 | FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF 28 | MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 2.7.12, OR ANY DERIVATIVE 29 | THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. 30 | 31 | 6. This License Agreement will automatically terminate upon a material breach of 32 | its terms and conditions. 33 | 34 | 7. Nothing in this License Agreement shall be deemed to create any relationship 35 | of agency, partnership, or joint venture between PSF and Licensee. This License 36 | Agreement does not grant permission to use PSF trademarks or trade name in a 37 | trademark sense to endorse or promote products or services of Licensee, or any 38 | third party. 39 | 40 | 8. By copying, installing or otherwise using Python 2.7.12, Licensee agrees 41 | to be bound by the terms and conditions of this License Agreement. 42 | -------------------------------------------------------------------------------- /WindowsMedicator/cryptography-36.0.1.dist-info/METADATA: -------------------------------------------------------------------------------- 1 | Metadata-Version: 2.1 2 | Name: cryptography 3 | Version: 36.0.1 4 | Summary: cryptography is a package which provides cryptographic recipes and primitives to Python developers. 5 | Home-page: https://github.com/pyca/cryptography 6 | Author: The Python Cryptographic Authority and individual contributors 7 | Author-email: cryptography-dev@python.org 8 | License: BSD or Apache License, Version 2.0 9 | Project-URL: Documentation, https://cryptography.io/ 10 | Project-URL: Source, https://github.com/pyca/cryptography/ 11 | Project-URL: Issues, https://github.com/pyca/cryptography/issues 12 | Project-URL: Changelog, https://cryptography.io/en/latest/changelog/ 13 | Platform: UNKNOWN 14 | Classifier: Development Status :: 5 - Production/Stable 15 | Classifier: Intended Audience :: Developers 16 | Classifier: License :: OSI Approved :: Apache Software License 17 | Classifier: License :: OSI Approved :: BSD License 18 | Classifier: Natural Language :: English 19 | Classifier: Operating System :: MacOS :: MacOS X 20 | Classifier: Operating System :: POSIX 21 | Classifier: Operating System :: POSIX :: BSD 22 | Classifier: Operating System :: POSIX :: Linux 23 | Classifier: Operating System :: Microsoft :: Windows 24 | Classifier: Programming Language :: Python 25 | Classifier: Programming Language :: Python :: 3 26 | Classifier: Programming Language :: Python :: 3 :: Only 27 | Classifier: Programming Language :: Python :: 3.6 28 | Classifier: Programming Language :: Python :: 3.7 29 | Classifier: Programming Language :: Python :: 3.8 30 | Classifier: Programming Language :: Python :: 3.9 31 | Classifier: Programming Language :: Python :: 3.10 32 | Classifier: Programming Language :: Python :: Implementation :: CPython 33 | Classifier: Programming Language :: Python :: Implementation :: PyPy 34 | Classifier: Topic :: Security :: Cryptography 35 | Requires-Python: >=3.6 36 | Description-Content-Type: text/x-rst 37 | Requires-Dist: cffi (>=1.12) 38 | Provides-Extra: docs 39 | Requires-Dist: sphinx (!=1.8.0,!=3.1.0,!=3.1.1,>=1.6.5) ; extra == 'docs' 40 | Requires-Dist: sphinx-rtd-theme ; extra == 'docs' 41 | Provides-Extra: docstest 42 | Requires-Dist: pyenchant (>=1.6.11) ; extra == 'docstest' 43 | Requires-Dist: twine (>=1.12.0) ; extra == 'docstest' 44 | Requires-Dist: sphinxcontrib-spelling (>=4.0.1) ; extra == 'docstest' 45 | Provides-Extra: pep8test 46 | Requires-Dist: black ; extra == 'pep8test' 47 | Requires-Dist: flake8 ; extra == 'pep8test' 48 | Requires-Dist: flake8-import-order ; extra == 'pep8test' 49 | Requires-Dist: pep8-naming ; extra == 'pep8test' 50 | Provides-Extra: sdist 51 | Requires-Dist: setuptools-rust (>=0.11.4) ; extra == 'sdist' 52 | Provides-Extra: ssh 53 | Requires-Dist: bcrypt (>=3.1.5) ; extra == 'ssh' 54 | Provides-Extra: test 55 | Requires-Dist: pytest (>=6.2.0) ; extra == 'test' 56 | Requires-Dist: pytest-cov ; extra == 'test' 57 | Requires-Dist: pytest-subtests ; extra == 'test' 58 | Requires-Dist: pytest-xdist ; extra == 'test' 59 | Requires-Dist: pretend ; extra == 'test' 60 | Requires-Dist: iso8601 ; extra == 'test' 61 | Requires-Dist: pytz ; extra == 'test' 62 | Requires-Dist: hypothesis (!=3.79.2,>=1.11.4) ; extra == 'test' 63 | 64 | pyca/cryptography 65 | ================= 66 | 67 | .. image:: https://img.shields.io/pypi/v/cryptography.svg 68 | :target: https://pypi.org/project/cryptography/ 69 | :alt: Latest Version 70 | 71 | .. image:: https://readthedocs.org/projects/cryptography/badge/?version=latest 72 | :target: https://cryptography.io 73 | :alt: Latest Docs 74 | 75 | .. image:: https://github.com/pyca/cryptography/workflows/CI/badge.svg?branch=main 76 | :target: https://github.com/pyca/cryptography/actions?query=workflow%3ACI+branch%3Amain 77 | 78 | .. image:: https://codecov.io/github/pyca/cryptography/coverage.svg?branch=main 79 | :target: https://codecov.io/github/pyca/cryptography?branch=main 80 | 81 | 82 | ``cryptography`` is a package which provides cryptographic recipes and 83 | primitives to Python developers. Our goal is for it to be your "cryptographic 84 | standard library". It supports Python 3.6+ and PyPy3 7.2+. 85 | 86 | ``cryptography`` includes both high level recipes and low level interfaces to 87 | common cryptographic algorithms such as symmetric ciphers, message digests, and 88 | key derivation functions. For example, to encrypt something with 89 | ``cryptography``'s high level symmetric encryption recipe: 90 | 91 | .. code-block:: pycon 92 | 93 | >>> from cryptography.fernet import Fernet 94 | >>> # Put this somewhere safe! 95 | >>> key = Fernet.generate_key() 96 | >>> f = Fernet(key) 97 | >>> token = f.encrypt(b"A really secret message. Not for prying eyes.") 98 | >>> token 99 | '...' 100 | >>> f.decrypt(token) 101 | 'A really secret message. Not for prying eyes.' 102 | 103 | You can find more information in the `documentation`_. 104 | 105 | You can install ``cryptography`` with: 106 | 107 | .. code-block:: console 108 | 109 | $ pip install cryptography 110 | 111 | For full details see `the installation documentation`_. 112 | 113 | Discussion 114 | ~~~~~~~~~~ 115 | 116 | If you run into bugs, you can file them in our `issue tracker`_. 117 | 118 | We maintain a `cryptography-dev`_ mailing list for development discussion. 119 | 120 | You can also join ``#pyca`` on ``irc.libera.chat`` to ask questions or get 121 | involved. 122 | 123 | Security 124 | ~~~~~~~~ 125 | 126 | Need to report a security issue? Please consult our `security reporting`_ 127 | documentation. 128 | 129 | 130 | .. _`documentation`: https://cryptography.io/ 131 | .. _`the installation documentation`: https://cryptography.io/en/latest/installation.html 132 | .. _`issue tracker`: https://github.com/pyca/cryptography/issues 133 | .. _`cryptography-dev`: https://mail.python.org/mailman/listinfo/cryptography-dev 134 | .. _`security reporting`: https://cryptography.io/en/latest/security.html 135 | 136 | 137 | -------------------------------------------------------------------------------- /WindowsMedicator/cryptography-36.0.1.dist-info/RECORD: -------------------------------------------------------------------------------- 1 | cryptography-36.0.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 2 | cryptography-36.0.1.dist-info/LICENSE,sha256=lwxrwPq1kRegtl6abV94epkb6-gq_zKgHE4abgL04QU,329 3 | cryptography-36.0.1.dist-info/LICENSE.APACHE,sha256=6N4ac5NFfpyIdot45rp5BiL777BAzkgZTCyw8bbU6f8,11562 4 | cryptography-36.0.1.dist-info/LICENSE.BSD,sha256=Zh0Yky3YS7JjqO5Bird3TtlO7DPIP9HbW1M_eOt3TKQ,1559 5 | cryptography-36.0.1.dist-info/LICENSE.PSF,sha256=wu0PJySsps7HFs4Wn9IskbeaIf9iXDcl1ccb4aeXdDA,2456 6 | cryptography-36.0.1.dist-info/METADATA,sha256=qLASrEZo-j9d-r-EeJ5wFiefySFBBklaVNyTXJKcuK4,5317 7 | cryptography-36.0.1.dist-info/RECORD,, 8 | cryptography-36.0.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 9 | cryptography-36.0.1.dist-info/WHEEL,sha256=g0Gp_9X_YiwOuaF1hZMQNaS1qKUg2WIXRJjlZWggGSw,100 10 | cryptography-36.0.1.dist-info/top_level.txt,sha256=zYbdX67v4JFZPfsaNue7ZV4-mgoRqYCAhMsNgt22LqA,22 11 | cryptography/__about__.py,sha256=HZqVKaF92RRPP9d7twna3QuZh51XHhR0slTBtLaxRzI,432 12 | cryptography/__init__.py,sha256=owfnhPuteOJ5wJoJrUfwZO_G-Xset6L0eZ5AWxp6thI,364 13 | cryptography/__pycache__/__about__.cpython-39.pyc,, 14 | cryptography/__pycache__/__init__.cpython-39.pyc,, 15 | cryptography/__pycache__/exceptions.cpython-39.pyc,, 16 | cryptography/__pycache__/fernet.cpython-39.pyc,, 17 | cryptography/__pycache__/utils.cpython-39.pyc,, 18 | cryptography/exceptions.py,sha256=M_o9oQwaudzeEXbPG3jWy2Gf4SpD_tBBY6jgqUc4DvA,1266 19 | cryptography/fernet.py,sha256=eNP8oyN9QcHO0kpOoFmc2u956SGyw66neFGziyV93eI,6617 20 | cryptography/hazmat/__init__.py,sha256=S_xLCNv2CgauPCN1V-8isxUSAcxkyxn053y7WgS3Ock,428 21 | cryptography/hazmat/__pycache__/__init__.cpython-39.pyc,, 22 | cryptography/hazmat/__pycache__/_oid.cpython-39.pyc,, 23 | cryptography/hazmat/_oid.py,sha256=wwRae-YK8PRzrj5ku_xCXeMtgweWrb8U95vo7k8NSDU,15431 24 | cryptography/hazmat/backends/__init__.py,sha256=naVAjVFq2cDv8jhZ9ufb6SxnttXYgEINJJxNqxAJmyQ,377 25 | cryptography/hazmat/backends/__pycache__/__init__.cpython-39.pyc,, 26 | cryptography/hazmat/backends/__pycache__/interfaces.cpython-39.pyc,, 27 | cryptography/hazmat/backends/interfaces.py,sha256=VF_38-0pv2pchYzbwRPuA6bEK0J6bc-BUQY7TA5QFa0,10735 28 | cryptography/hazmat/backends/openssl/__init__.py,sha256=QWtZshv7N_SCMHiRhTviqozfelED9oyHh5PKbaUuFRM,280 29 | cryptography/hazmat/backends/openssl/__pycache__/__init__.cpython-39.pyc,, 30 | cryptography/hazmat/backends/openssl/__pycache__/aead.cpython-39.pyc,, 31 | cryptography/hazmat/backends/openssl/__pycache__/backend.cpython-39.pyc,, 32 | cryptography/hazmat/backends/openssl/__pycache__/ciphers.cpython-39.pyc,, 33 | cryptography/hazmat/backends/openssl/__pycache__/cmac.cpython-39.pyc,, 34 | cryptography/hazmat/backends/openssl/__pycache__/decode_asn1.cpython-39.pyc,, 35 | cryptography/hazmat/backends/openssl/__pycache__/dh.cpython-39.pyc,, 36 | cryptography/hazmat/backends/openssl/__pycache__/dsa.cpython-39.pyc,, 37 | cryptography/hazmat/backends/openssl/__pycache__/ec.cpython-39.pyc,, 38 | cryptography/hazmat/backends/openssl/__pycache__/ed25519.cpython-39.pyc,, 39 | cryptography/hazmat/backends/openssl/__pycache__/ed448.cpython-39.pyc,, 40 | cryptography/hazmat/backends/openssl/__pycache__/encode_asn1.cpython-39.pyc,, 41 | cryptography/hazmat/backends/openssl/__pycache__/hashes.cpython-39.pyc,, 42 | cryptography/hazmat/backends/openssl/__pycache__/hmac.cpython-39.pyc,, 43 | cryptography/hazmat/backends/openssl/__pycache__/poly1305.cpython-39.pyc,, 44 | cryptography/hazmat/backends/openssl/__pycache__/rsa.cpython-39.pyc,, 45 | cryptography/hazmat/backends/openssl/__pycache__/utils.cpython-39.pyc,, 46 | cryptography/hazmat/backends/openssl/__pycache__/x25519.cpython-39.pyc,, 47 | cryptography/hazmat/backends/openssl/__pycache__/x448.cpython-39.pyc,, 48 | cryptography/hazmat/backends/openssl/__pycache__/x509.cpython-39.pyc,, 49 | cryptography/hazmat/backends/openssl/aead.py,sha256=F31mUDG3t-BZpcKLjhMsAg0lwBobPsvkOHQ1JpY45Nw,6420 50 | cryptography/hazmat/backends/openssl/backend.py,sha256=vhL8PKoPeRI0iqmT0gwMNHYzEs2IGiitW3ZqRwnNP90,90322 51 | cryptography/hazmat/backends/openssl/ciphers.py,sha256=UGPXsN1AmGPUr9h44Eg9ftKApTRD96oszl-f37qxs44,10645 52 | cryptography/hazmat/backends/openssl/cmac.py,sha256=7VasnTM4dz82DvHVDxfjXjMa6CtRasCxyiq3X0I9JB0,2926 53 | cryptography/hazmat/backends/openssl/decode_asn1.py,sha256=Wa7KZ8qf3NB1Mfr0G8B3d5g2UP5NyCh_NllQD6aKRnM,1144 54 | cryptography/hazmat/backends/openssl/dh.py,sha256=IHBO09o2suMk7Y98yi48mVUKRmGkMQ2KNshGkHmhN1I,11502 55 | cryptography/hazmat/backends/openssl/dsa.py,sha256=tkorzicTmA7zzOyeMwkJvSgmj5dYbkg8RsIBhpBsh2E,10996 56 | cryptography/hazmat/backends/openssl/ec.py,sha256=U3mAkbDhZZwZHlY_jGuWYhQYnckz5TAFCB3ei-48xs0,13213 57 | cryptography/hazmat/backends/openssl/ed25519.py,sha256=8Z2BRb3nXR4HsSxsjZ8xXh6OP3lqJSpc49sRdSKB5fU,5940 58 | cryptography/hazmat/backends/openssl/ed448.py,sha256=kCUleGNpxJN06f9KlZhwqMUPEybWADiaCppTYMIdcBY,5895 59 | cryptography/hazmat/backends/openssl/encode_asn1.py,sha256=Be-H53rON593Akbk8bXIiQdTvXQOnbtVKj-yKUHv098,588 60 | cryptography/hazmat/backends/openssl/hashes.py,sha256=OXD2V-JKAv4EdEPRIlYI6YlifScepuSAnB80PDtntis,3178 61 | cryptography/hazmat/backends/openssl/hmac.py,sha256=lvrwz_Og-IP5G3_ia_qAKikBSVHHkSbzQY3SD-BkOOY,3017 62 | cryptography/hazmat/backends/openssl/poly1305.py,sha256=kRVoXKBILdkvIt1t5bXgoH424yrJD57HgXV9xIgKifQ,2410 63 | cryptography/hazmat/backends/openssl/rsa.py,sha256=Hxb3VVKxsWWQrmif9c7kUhOeOhhFifEY3mncIjKGaug,22038 64 | cryptography/hazmat/backends/openssl/utils.py,sha256=Rzp1FaMAdQ2WOZMGf-Px980SwD3jJgHMP6tmHzweZW8,2518 65 | cryptography/hazmat/backends/openssl/x25519.py,sha256=XmAD0PmM7y-uMT5PkvZytDfU7KNmbLVzPwNCZwtA97I,4750 66 | cryptography/hazmat/backends/openssl/x448.py,sha256=3yujO9OV7fWtHCb1Z4i7Sim-N6-VeCxKiE_lomvLtlc,4253 67 | cryptography/hazmat/backends/openssl/x509.py,sha256=AIcX36LhXA1vuW6fAhskVYZ10_j0-bmYfosoMO7vUKM,1497 68 | cryptography/hazmat/bindings/__init__.py,sha256=J2gAwAvJVLQKNfFFCqnvKOAgxqvkCnpceaEYlXlOVNc,183 69 | cryptography/hazmat/bindings/__pycache__/__init__.cpython-39.pyc,, 70 | cryptography/hazmat/bindings/_openssl.pyd,sha256=Wgp5A-81s20YYidHOcAVlM6XJEQul7tcLw2C3UgEwNA,2985984 71 | cryptography/hazmat/bindings/_rust.pyd,sha256=4MXogMqbx3XiMpZ5aNwRKqYHSWlmT6mVlHyeQE0Lu2I,1973248 72 | cryptography/hazmat/bindings/_rust/__init__.pyi,sha256=snoSGuixwzbU9U838JBgG7rYOkziv4T-OfLvTV1DCBU,105 73 | cryptography/hazmat/bindings/_rust/asn1.pyi,sha256=eepeHJZmyEi6MVz7Y6RFwxr9oDNi04K6AaBq_ZVDBXY,423 74 | cryptography/hazmat/bindings/_rust/ocsp.pyi,sha256=EwHsCB0crCe8oqaZsJZ3iAKYWkLeQ-IuJj7u1m7TOF4,790 75 | cryptography/hazmat/bindings/_rust/x509.pyi,sha256=J_s3PlRNEF5yighfdnON-MxnfWLKBCwr-7shjGZPbV4,1533 76 | cryptography/hazmat/bindings/openssl/__init__.py,sha256=J2gAwAvJVLQKNfFFCqnvKOAgxqvkCnpceaEYlXlOVNc,183 77 | cryptography/hazmat/bindings/openssl/__pycache__/__init__.cpython-39.pyc,, 78 | cryptography/hazmat/bindings/openssl/__pycache__/_conditional.cpython-39.pyc,, 79 | cryptography/hazmat/bindings/openssl/__pycache__/binding.cpython-39.pyc,, 80 | cryptography/hazmat/bindings/openssl/_conditional.py,sha256=d1LQfj0UFxo7cCzihYoE1J8QXp-9nyBSfyC7KFX66Ts,9189 81 | cryptography/hazmat/bindings/openssl/binding.py,sha256=1pIRbvZ6FOyGsHrwzkssLiA2wC-mItphVRFTJprADWE,7613 82 | cryptography/hazmat/primitives/__init__.py,sha256=J2gAwAvJVLQKNfFFCqnvKOAgxqvkCnpceaEYlXlOVNc,183 83 | cryptography/hazmat/primitives/__pycache__/__init__.cpython-39.pyc,, 84 | cryptography/hazmat/primitives/__pycache__/_asymmetric.cpython-39.pyc,, 85 | cryptography/hazmat/primitives/__pycache__/_cipheralgorithm.cpython-39.pyc,, 86 | cryptography/hazmat/primitives/__pycache__/_serialization.cpython-39.pyc,, 87 | cryptography/hazmat/primitives/__pycache__/cmac.cpython-39.pyc,, 88 | cryptography/hazmat/primitives/__pycache__/constant_time.cpython-39.pyc,, 89 | cryptography/hazmat/primitives/__pycache__/hashes.cpython-39.pyc,, 90 | cryptography/hazmat/primitives/__pycache__/hmac.cpython-39.pyc,, 91 | cryptography/hazmat/primitives/__pycache__/keywrap.cpython-39.pyc,, 92 | cryptography/hazmat/primitives/__pycache__/padding.cpython-39.pyc,, 93 | cryptography/hazmat/primitives/__pycache__/poly1305.cpython-39.pyc,, 94 | cryptography/hazmat/primitives/_asymmetric.py,sha256=KvYNbtuGLSyxnDuZPRIufu8KHwTtDUHAwsLBct8-jjA,502 95 | cryptography/hazmat/primitives/_cipheralgorithm.py,sha256=vq3bx72MBs1la657yA6hXZIjbzOwP5LZvo6sO4pjK_4,1038 96 | cryptography/hazmat/primitives/_serialization.py,sha256=bwa3jXWqTqvocp90h7Wz2z9RhAMnkb8XFXFtohcD-gQ,1396 97 | cryptography/hazmat/primitives/asymmetric/__init__.py,sha256=2dEjGcEXMqruUQ1gBRBxD5KqP3EuJiNGZVtVtsJVYV4,991 98 | cryptography/hazmat/primitives/asymmetric/__pycache__/__init__.cpython-39.pyc,, 99 | cryptography/hazmat/primitives/asymmetric/__pycache__/dh.cpython-39.pyc,, 100 | cryptography/hazmat/primitives/asymmetric/__pycache__/dsa.cpython-39.pyc,, 101 | cryptography/hazmat/primitives/asymmetric/__pycache__/ec.cpython-39.pyc,, 102 | cryptography/hazmat/primitives/asymmetric/__pycache__/ed25519.cpython-39.pyc,, 103 | cryptography/hazmat/primitives/asymmetric/__pycache__/ed448.cpython-39.pyc,, 104 | cryptography/hazmat/primitives/asymmetric/__pycache__/padding.cpython-39.pyc,, 105 | cryptography/hazmat/primitives/asymmetric/__pycache__/rsa.cpython-39.pyc,, 106 | cryptography/hazmat/primitives/asymmetric/__pycache__/types.cpython-39.pyc,, 107 | cryptography/hazmat/primitives/asymmetric/__pycache__/utils.cpython-39.pyc,, 108 | cryptography/hazmat/primitives/asymmetric/__pycache__/x25519.cpython-39.pyc,, 109 | cryptography/hazmat/primitives/asymmetric/__pycache__/x448.cpython-39.pyc,, 110 | cryptography/hazmat/primitives/asymmetric/dh.py,sha256=lJOF2EOnfaFuNt7nGm7HKM_mpuv6aO8h8gZTcCtpxFg,6814 111 | cryptography/hazmat/primitives/asymmetric/dsa.py,sha256=hnK47trxR35oYgdHObkVD4kHvDE5AucQQU7w3YHEHGo,8707 112 | cryptography/hazmat/primitives/asymmetric/ec.py,sha256=eRGm_kGiH2hSm74mC4dkRhk_-U34EmMEd7QciO2LeqE,15559 113 | cryptography/hazmat/primitives/asymmetric/ed25519.py,sha256=JnS2YVVxpSfiJedu74wbdTszDN1z2LsyAujbtNFMOYE,2820 114 | cryptography/hazmat/primitives/asymmetric/ed448.py,sha256=uFyWrJMe8PjmY0gRcvEpT_Y2m3edV50dPoGcytNIkyI,2734 115 | cryptography/hazmat/primitives/asymmetric/padding.py,sha256=EqR225JCnteAzsiw2-sR4H3-eVmJRVdBH3AGEbUHWg0,2220 116 | cryptography/hazmat/primitives/asymmetric/rsa.py,sha256=V90-HUq-Q3Lo50s5o4aY5JpIxSrVtVXkfFI4siZSBQA,12234 117 | cryptography/hazmat/primitives/asymmetric/types.py,sha256=sxffDGVun7gK8PlI3Ct29O3n6iEh5d8QbP5VhONthF4,936 118 | cryptography/hazmat/primitives/asymmetric/utils.py,sha256=cXSaDnB3HW__L4YuEzHlTF08PfclSJ8nXF2KGfVR71o,764 119 | cryptography/hazmat/primitives/asymmetric/x25519.py,sha256=Zvi-JyqzH4pvBGv2JWzQqstoWC4EylB2tBbILCZAilM,2669 120 | cryptography/hazmat/primitives/asymmetric/x448.py,sha256=XneUonsJ3a5eiy0PIyD3U2oadfUpNd5-X_dXajZRw3c,2637 121 | cryptography/hazmat/primitives/ciphers/__init__.py,sha256=e7K5RbjxjjzHesV13lHioZJNDjBX5m6Cbs5aZ7RRT-M,673 122 | cryptography/hazmat/primitives/ciphers/__pycache__/__init__.cpython-39.pyc,, 123 | cryptography/hazmat/primitives/ciphers/__pycache__/aead.cpython-39.pyc,, 124 | cryptography/hazmat/primitives/ciphers/__pycache__/algorithms.cpython-39.pyc,, 125 | cryptography/hazmat/primitives/ciphers/__pycache__/base.cpython-39.pyc,, 126 | cryptography/hazmat/primitives/ciphers/__pycache__/modes.cpython-39.pyc,, 127 | cryptography/hazmat/primitives/ciphers/aead.py,sha256=WrQ97ILj71lRtMLwrJzhlfS5hCO5dQWNRpFX3NA4hBg,9573 128 | cryptography/hazmat/primitives/ciphers/algorithms.py,sha256=zFns1Ss1JAbf1w-25x8un6Ee7MN01vj4IRY9K9_WeVs,4316 129 | cryptography/hazmat/primitives/ciphers/base.py,sha256=6bijtqMmFRYI-7oXXk6K6rrG0UwRxnBuLDQTXL1r8kw,6874 130 | cryptography/hazmat/primitives/ciphers/modes.py,sha256=PpxBAPwgPLmEVYnxWX12F7KyQHQfjeGZTRP_cimDh6w,7676 131 | cryptography/hazmat/primitives/cmac.py,sha256=9bhBwVtRp6y8h0lFP1o8Y0gQkalTQrb_ExaCv8QoteM,1885 132 | cryptography/hazmat/primitives/constant_time.py,sha256=nJv3H3jB74Hh9uT8WVmcg3bCQL_rAROCWI3G4pv121c,400 133 | cryptography/hazmat/primitives/hashes.py,sha256=eJpvcj9MWnCWLSQPQk_uL9cIt5EXr9G5UZbZx9a9blU,6213 134 | cryptography/hazmat/primitives/hmac.py,sha256=xmyJooDVXZ-vhDFjVZKgVsl8J5e1RczZIR1iqWJziAs,2092 135 | cryptography/hazmat/primitives/kdf/__init__.py,sha256=bFxMLf9zjHnrfWQDDsQuGvpiN0kcD-ikfGvExHJ_mBY,737 136 | cryptography/hazmat/primitives/kdf/__pycache__/__init__.cpython-39.pyc,, 137 | cryptography/hazmat/primitives/kdf/__pycache__/concatkdf.cpython-39.pyc,, 138 | cryptography/hazmat/primitives/kdf/__pycache__/hkdf.cpython-39.pyc,, 139 | cryptography/hazmat/primitives/kdf/__pycache__/kbkdf.cpython-39.pyc,, 140 | cryptography/hazmat/primitives/kdf/__pycache__/pbkdf2.cpython-39.pyc,, 141 | cryptography/hazmat/primitives/kdf/__pycache__/scrypt.cpython-39.pyc,, 142 | cryptography/hazmat/primitives/kdf/__pycache__/x963kdf.cpython-39.pyc,, 143 | cryptography/hazmat/primitives/kdf/concatkdf.py,sha256=3cNKbZmJxN8emBJgrOm8B6OZjs1wgn5_Zn_lZlAGcjk,3902 144 | cryptography/hazmat/primitives/kdf/hkdf.py,sha256=0IxcMnfYjolp-4PXSPp1AqAzkkOJqZgOUpQnpb2Miw0,3134 145 | cryptography/hazmat/primitives/kdf/kbkdf.py,sha256=5ks6S5eGcvGbEsKx79JFXg_X999TygckNOCDf8AjnrQ,7924 146 | cryptography/hazmat/primitives/kdf/pbkdf2.py,sha256=uY4K6xEh1JVX2GblkU3sSUA_xadDT941TQ0_Ti7Lhuc,2097 147 | cryptography/hazmat/primitives/kdf/scrypt.py,sha256=bQdPLtedZ77lJ2B8G-VUrRNV52lIoCHmiUcHIR_tBfo,2302 148 | cryptography/hazmat/primitives/kdf/x963kdf.py,sha256=5dUigu0q7b7HqFyqI5Lq2hFXfBQ9AM1-pDRrRdlJLgs,2069 149 | cryptography/hazmat/primitives/keywrap.py,sha256=SWMJjdz1QLts_NBfXyivCzHRUBp6_o7X5suhGukUaRU,5929 150 | cryptography/hazmat/primitives/padding.py,sha256=ytJToSnTMl46pNyLpkzQYH3ZP1WfY66T7Qn6QLDnfHg,6411 151 | cryptography/hazmat/primitives/poly1305.py,sha256=ZiStoLLJo4hOvXL7UqQZfHJpG-kRBweDzPK_8Ll5IWE,1767 152 | cryptography/hazmat/primitives/serialization/__init__.py,sha256=VhFpFbdsh80N5ob8gZ8_dBP06j_VmdeRHrW9DDVpWvw,1174 153 | cryptography/hazmat/primitives/serialization/__pycache__/__init__.cpython-39.pyc,, 154 | cryptography/hazmat/primitives/serialization/__pycache__/base.cpython-39.pyc,, 155 | cryptography/hazmat/primitives/serialization/__pycache__/pkcs12.cpython-39.pyc,, 156 | cryptography/hazmat/primitives/serialization/__pycache__/pkcs7.cpython-39.pyc,, 157 | cryptography/hazmat/primitives/serialization/__pycache__/ssh.cpython-39.pyc,, 158 | cryptography/hazmat/primitives/serialization/base.py,sha256=-uNPo1Wu23CuhIHHSavfZXG10TV0OOBV5LC2SAPc7Mg,1825 159 | cryptography/hazmat/primitives/serialization/pkcs12.py,sha256=hN6-aIJ7AMoaEcBoiz52pysW8sIlJuGrH3QtbTBOsJw,6455 160 | cryptography/hazmat/primitives/serialization/pkcs7.py,sha256=8RScPoU4_AsDvY7qAodyrfIJCexC7e9HjZ1r606OLTQ,5496 161 | cryptography/hazmat/primitives/serialization/ssh.py,sha256=1dImn0ccyVD94XA03v_q-t6Re1_nGM84AJl2a8GzVYY,22702 162 | cryptography/hazmat/primitives/twofactor/__init__.py,sha256=u7IhHlxTdBRMgFl688tm7JKT6IEr8Q0k8xWBGlrX37Y,229 163 | cryptography/hazmat/primitives/twofactor/__pycache__/__init__.cpython-39.pyc,, 164 | cryptography/hazmat/primitives/twofactor/__pycache__/hotp.cpython-39.pyc,, 165 | cryptography/hazmat/primitives/twofactor/__pycache__/totp.cpython-39.pyc,, 166 | cryptography/hazmat/primitives/twofactor/hotp.py,sha256=0-p_dMHs8cz8t5DCiC5cP8vfinFbCMla_BkjIGuhXSw,3209 167 | cryptography/hazmat/primitives/twofactor/totp.py,sha256=UyMQxCHbhfJudx2JK8KAOXmShg8Jzb2GnXtqZx8uDHI,1505 168 | cryptography/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 169 | cryptography/utils.py,sha256=dkz0OB2-dKKqVmczo11jvQeyPUB0_OzCTVnWdLapBwc,5668 170 | cryptography/x509/__init__.py,sha256=qMpHYHjWvQPKFhsoFksGOSQvMPdHzkM5id79vNZ2xhk,7903 171 | cryptography/x509/__pycache__/__init__.cpython-39.pyc,, 172 | cryptography/x509/__pycache__/base.cpython-39.pyc,, 173 | cryptography/x509/__pycache__/certificate_transparency.cpython-39.pyc,, 174 | cryptography/x509/__pycache__/extensions.cpython-39.pyc,, 175 | cryptography/x509/__pycache__/general_name.cpython-39.pyc,, 176 | cryptography/x509/__pycache__/name.cpython-39.pyc,, 177 | cryptography/x509/__pycache__/ocsp.cpython-39.pyc,, 178 | cryptography/x509/__pycache__/oid.cpython-39.pyc,, 179 | cryptography/x509/base.py,sha256=lxZST2E27MF3nqfP9FbkZ0yJLW0SGSDT-xHj9hDyAh0,34854 180 | cryptography/x509/certificate_transparency.py,sha256=8XV5JFIbLwsWag4WcKHpmtCEavNGUl-C6yusIclLtNI,1167 181 | cryptography/x509/extensions.py,sha256=NyaI_qcqhr5JAo1-NJtoy_L1ORYtKKIKnVv9HoNafDs,69923 182 | cryptography/x509/general_name.py,sha256=VaXih_FvsDB3s9NqwmKNUVYBQuo0_2g4Lg4XXWiDv8s,8754 183 | cryptography/x509/name.py,sha256=_ymMWxYiQpN7SCjHxsKipOjdJ42WEPxDAkCsaK7fFlc,10631 184 | cryptography/x509/ocsp.py,sha256=TJIH2346J-vu2XZBfxZJyPxJhaM5rGgpQ0jYdexlJos,15044 185 | cryptography/x509/oid.py,sha256=l-_4FcPzmcAHXZxDAxpsv8y1ualS2s4TtJQFXAu_RD4,826 186 | -------------------------------------------------------------------------------- /WindowsMedicator/cryptography-36.0.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/cryptography-36.0.1.dist-info/REQUESTED -------------------------------------------------------------------------------- /WindowsMedicator/cryptography-36.0.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: false 4 | Tag: cp36-abi3-win_amd64 5 | 6 | -------------------------------------------------------------------------------- /WindowsMedicator/cryptography-36.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _openssl 2 | cryptography 3 | -------------------------------------------------------------------------------- /WindowsMedicator/cryptography/hazmat/bindings/_openssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/cryptography/hazmat/bindings/_openssl.pyd -------------------------------------------------------------------------------- /WindowsMedicator/cryptography/hazmat/bindings/_rust.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/cryptography/hazmat/bindings/_rust.pyd -------------------------------------------------------------------------------- /WindowsMedicator/dnspython-2.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WindowsMedicator/dnspython-2.1.0.dist-info/LICENSE: -------------------------------------------------------------------------------- 1 | ISC License 2 | 3 | Copyright (C) Dnspython Contributors 4 | 5 | Permission to use, copy, modify, and/or distribute this software for 6 | any purpose with or without fee is hereby granted, provided that the 7 | above copyright notice and this permission notice appear in all 8 | copies. 9 | 10 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL 11 | WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED 12 | WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE 13 | AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL 14 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR 15 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 16 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 17 | PERFORMANCE OF THIS SOFTWARE. 18 | 19 | 20 | 21 | Copyright (C) 2001-2017 Nominum, Inc. 22 | Copyright (C) Google Inc. 23 | 24 | Permission to use, copy, modify, and distribute this software and its 25 | documentation for any purpose with or without fee is hereby granted, 26 | provided that the above copyright notice and this permission notice 27 | appear in all copies. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES 30 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 31 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR 32 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 33 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 34 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT 35 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 36 | -------------------------------------------------------------------------------- /WindowsMedicator/dnspython-2.1.0.dist-info/METADATA: -------------------------------------------------------------------------------- 1 | Metadata-Version: 2.1 2 | Name: dnspython 3 | Version: 2.1.0 4 | Summary: DNS toolkit 5 | Home-page: http://www.dnspython.org 6 | Author: Bob Halley 7 | Author-email: halley@dnspython.org 8 | License: ISC 9 | Platform: UNKNOWN 10 | Classifier: Development Status :: 5 - Production/Stable 11 | Classifier: Intended Audience :: Developers 12 | Classifier: Intended Audience :: System Administrators 13 | Classifier: License :: OSI Approved :: ISC License (ISCL) 14 | Classifier: Operating System :: POSIX 15 | Classifier: Operating System :: Microsoft :: Windows 16 | Classifier: Programming Language :: Python 17 | Classifier: Topic :: Internet :: Name Service (DNS) 18 | Classifier: Topic :: Software Development :: Libraries :: Python Modules 19 | Classifier: Programming Language :: Python :: 3 20 | Classifier: Programming Language :: Python :: 3.6 21 | Classifier: Programming Language :: Python :: 3.7 22 | Classifier: Programming Language :: Python :: 3.8 23 | Classifier: Programming Language :: Python :: 3.9 24 | Provides: dns 25 | Requires-Python: >=3.6 26 | Provides-Extra: dnssec 27 | Requires-Dist: cryptography (>=2.6) ; extra == 'dnssec' 28 | Provides-Extra: doh 29 | Requires-Dist: requests ; extra == 'doh' 30 | Requires-Dist: requests-toolbelt ; extra == 'doh' 31 | Provides-Extra: idna 32 | Requires-Dist: idna (>=2.1) ; extra == 'idna' 33 | Provides-Extra: curio 34 | Requires-Dist: curio (>=1.2) ; extra == 'curio' 35 | Requires-Dist: sniffio (>=1.1) ; extra == 'curio' 36 | Provides-Extra: trio 37 | Requires-Dist: trio (>=0.14.0) ; extra == 'trio' 38 | Requires-Dist: sniffio (>=1.1) ; extra == 'trio' 39 | 40 | dnspython is a DNS toolkit for Python. It supports almost all 41 | record types. It can be used for queries, zone transfers, and dynamic 42 | updates. It supports TSIG authenticated messages and EDNS0. 43 | 44 | dnspython provides both high and low level access to DNS. The high 45 | level classes perform queries for data of a given name, type, and 46 | class, and return an answer set. The low level classes allow 47 | direct manipulation of DNS zones, messages, names, and records. 48 | 49 | -------------------------------------------------------------------------------- /WindowsMedicator/dnspython-2.1.0.dist-info/RECORD: -------------------------------------------------------------------------------- 1 | dns/__init__.py,sha256=Tnvxutf2E4hCu2RMU7ADmiVnqOikSWxgCcSJ9xuR-v4,1597 2 | dns/__pycache__/__init__.cpython-39.pyc,, 3 | dns/__pycache__/_asyncbackend.cpython-39.pyc,, 4 | dns/__pycache__/_asyncio_backend.cpython-39.pyc,, 5 | dns/__pycache__/_curio_backend.cpython-39.pyc,, 6 | dns/__pycache__/_immutable_attr.cpython-39.pyc,, 7 | dns/__pycache__/_immutable_ctx.cpython-39.pyc,, 8 | dns/__pycache__/_trio_backend.cpython-39.pyc,, 9 | dns/__pycache__/asyncbackend.cpython-39.pyc,, 10 | dns/__pycache__/asyncquery.cpython-39.pyc,, 11 | dns/__pycache__/asyncresolver.cpython-39.pyc,, 12 | dns/__pycache__/dnssec.cpython-39.pyc,, 13 | dns/__pycache__/e164.cpython-39.pyc,, 14 | dns/__pycache__/edns.cpython-39.pyc,, 15 | dns/__pycache__/entropy.cpython-39.pyc,, 16 | dns/__pycache__/enum.cpython-39.pyc,, 17 | dns/__pycache__/exception.cpython-39.pyc,, 18 | dns/__pycache__/flags.cpython-39.pyc,, 19 | dns/__pycache__/grange.cpython-39.pyc,, 20 | dns/__pycache__/immutable.cpython-39.pyc,, 21 | dns/__pycache__/inet.cpython-39.pyc,, 22 | dns/__pycache__/ipv4.cpython-39.pyc,, 23 | dns/__pycache__/ipv6.cpython-39.pyc,, 24 | dns/__pycache__/message.cpython-39.pyc,, 25 | dns/__pycache__/name.cpython-39.pyc,, 26 | dns/__pycache__/namedict.cpython-39.pyc,, 27 | dns/__pycache__/node.cpython-39.pyc,, 28 | dns/__pycache__/opcode.cpython-39.pyc,, 29 | dns/__pycache__/query.cpython-39.pyc,, 30 | dns/__pycache__/rcode.cpython-39.pyc,, 31 | dns/__pycache__/rdata.cpython-39.pyc,, 32 | dns/__pycache__/rdataclass.cpython-39.pyc,, 33 | dns/__pycache__/rdataset.cpython-39.pyc,, 34 | dns/__pycache__/rdatatype.cpython-39.pyc,, 35 | dns/__pycache__/renderer.cpython-39.pyc,, 36 | dns/__pycache__/resolver.cpython-39.pyc,, 37 | dns/__pycache__/reversename.cpython-39.pyc,, 38 | dns/__pycache__/rrset.cpython-39.pyc,, 39 | dns/__pycache__/serial.cpython-39.pyc,, 40 | dns/__pycache__/set.cpython-39.pyc,, 41 | dns/__pycache__/tokenizer.cpython-39.pyc,, 42 | dns/__pycache__/transaction.cpython-39.pyc,, 43 | dns/__pycache__/tsig.cpython-39.pyc,, 44 | dns/__pycache__/tsigkeyring.cpython-39.pyc,, 45 | dns/__pycache__/ttl.cpython-39.pyc,, 46 | dns/__pycache__/update.cpython-39.pyc,, 47 | dns/__pycache__/version.cpython-39.pyc,, 48 | dns/__pycache__/versioned.cpython-39.pyc,, 49 | dns/__pycache__/wire.cpython-39.pyc,, 50 | dns/__pycache__/xfr.cpython-39.pyc,, 51 | dns/__pycache__/zone.cpython-39.pyc,, 52 | dns/__pycache__/zonefile.cpython-39.pyc,, 53 | dns/_asyncbackend.py,sha256=Vty2_T1cfaqxoDNcdyui2mdoKpiAM8ABd5KOO3INuz8,1563 54 | dns/_asyncio_backend.py,sha256=G_j996L5NAQCgAWtkYN9XZCw0mcFIyWQh2Ni_GvELf4,4440 55 | dns/_curio_backend.py,sha256=X8tCR7ebSsGTMBElWItF43DC2TUAlce2OHY-Si8GkRw,3413 56 | dns/_immutable_attr.py,sha256=xXtq0KOyRkGXizeVxODovAN9WgV8KRNq3KSx9NCiqCE,2989 57 | dns/_immutable_ctx.py,sha256=Z8DQkCvYkHiCyDUQTmS1CRolsA3b0P5QfkFm8mm4mGM,2458 58 | dns/_trio_backend.py,sha256=feyWscMAqHECP3_3T-8roH48ndsHDh4Wddpu4KqfWdw,3771 59 | dns/asyncbackend.py,sha256=c4JybPcz_iAm8tuPs7TtXDPcvHKoiOsOanFAyS87JWI,3077 60 | dns/asyncquery.py,sha256=SAn4uWYRidQn-2PWtQ6aFEf13B90fYjALWft7ugsQ0A,17818 61 | dns/asyncresolver.py,sha256=6fZl4lphzKXDRBmf5emlnmegTUp_cYTa6ZggV4_M6a0,8915 62 | dns/dnssec.py,sha256=VJdI1F6yqU0WgwTH-4a32moIUhlOaGuPojTTtny9_PE,19648 63 | dns/e164.py,sha256=lVQxMZTruqlv7FKruGqaVjhLidN-N15g_xu8yqPYOW4,3690 64 | dns/edns.py,sha256=d6UhHZ-h8wEJ0GHyf7mChGMJqrA0ADlgzOtWf_NkXAE,10982 65 | dns/entropy.py,sha256=bCCf7rtDG77aBjowjjCZTz4VpSzy7Af5_6kaXXw9mro,4163 66 | dns/enum.py,sha256=9r8EiMBvqeXiqFgwfejjwXOVXxYA4sdi_yHNpp8OMi0,2817 67 | dns/exception.py,sha256=oTWP-hM4mdvU9yRtxDQtqZ5ut8bmK3gt9UTY7kqNDtk,5255 68 | dns/flags.py,sha256=KhmIWEhaHsP0m0gm9MaQY0h_L08qGhYjI7_5cYYMw9U,2642 69 | dns/grange.py,sha256=r9dSdF6w4F2zX7ZWyFHWvvQQmh4DrKmjkmP4ex8yasg,2092 70 | dns/immutable.py,sha256=LOSKanIDSVc3DNQSspY59lVP-51BmMB8o-xka7t5D6Q,2022 71 | dns/inet.py,sha256=uqHy22Y7TjVpMK-TUr9yMgFnJ60Z7E71InZZify89_s,4857 72 | dns/ipv4.py,sha256=fLVc7CapzxRw-1Tj0j99MP776AgKDgZvdxMqZmy8FnM,1980 73 | dns/ipv6.py,sha256=jpCnU0LMBXy04InQMmCWja-t7E8EiGmA0ktKOC31EYs,6059 74 | dns/message.py,sha256=ZxZzjiH-lqzfS4FmVIQOE7tPYZXrgC1ot1L7A8kMqK0,53995 75 | dns/name.py,sha256=Le8Xp5-oyLrnABXeo16sA5LZMXso-N2im3Fdc6zz76A,32299 76 | dns/namedict.py,sha256=3Ps9v1AcEDD6dnUvPo87BYXJLTlk3t9ObJ32FBI-zEY,3918 77 | dns/node.py,sha256=YyZ2U-HeOn5NJ-cdX6WPCXNa67y2eFIPUz75XHbv_XY,6576 78 | dns/opcode.py,sha256=Qxwga_fAR2Bc2EdlTSguKKvrBxphVYnAcMkQc2VGSO0,2647 79 | dns/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 80 | dns/query.py,sha256=3jF60-wnY9cnicj3uxiWnDpPY4xuJRm_d5cAPWcICQ8,41428 81 | dns/rcode.py,sha256=7g-6cX96AnUSFxQpv6ZzSOnhjBd_ZQwLECNddk_5690,3991 82 | dns/rdata.py,sha256=ERRPOa7kaLbb4kBfRJE2LnXnrWerlfo9p-J714B8nrg,24905 83 | dns/rdataclass.py,sha256=V99UXfb2bXERDWEH3v5NK9owly62PlLDkrGmDAOgqZg,2881 84 | dns/rdataset.py,sha256=2tf_5VndB_fX8q0mW-YPSWbd97rD-OpaAsKU-_eWGxE,14884 85 | dns/rdatatype.py,sha256=KlOTlNkbP5KwcgwkWgQXfo5-7wx-3XlH48Y7q21txqY,6797 86 | dns/rdtypes/ANY/AFSDB.py,sha256=SUdLEDU_H23BnN_kYsL5hDHn6lAvfkNg3oGXt6FnFVc,1662 87 | dns/rdtypes/ANY/AMTRELAY.py,sha256=ndfIZ8ffnZC_Q30eWuYvJRdmrw0ZRpvMDPHRo4-E4t4,3439 88 | dns/rdtypes/ANY/AVC.py,sha256=LHF3DeIbJVQPHsHx1W5_0d2QB5u8wx3CCvbDcTzMAig,1025 89 | dns/rdtypes/ANY/CAA.py,sha256=noqfT9RZ6yTiP-vvwjjRDQevzWc6B1VcRihxGnJ8mpI,2531 90 | dns/rdtypes/ANY/CDNSKEY.py,sha256=P0dTZBCeUBw1GvvwQZFOAhJZnATQXeI8-h78kOdl_zQ,1148 91 | dns/rdtypes/ANY/CDS.py,sha256=wf9jQDyAxH1N6yBbE0kMdg9tghMJUZT1gIpKKoSFfiE,998 92 | dns/rdtypes/ANY/CERT.py,sha256=54x63FbLjrx234wGDsWzZD5tcpsvjCFkZ1PULKbI22Y,3412 93 | dns/rdtypes/ANY/CNAME.py,sha256=OvSnWyZ6gomsicHCgxES9G3upRKbGLxLK5Vt2IhUXcc,1207 94 | dns/rdtypes/ANY/CSYNC.py,sha256=8FXo7LZ8aaKW_KVC27M8Ev-2nAv4LJEVfaTOa3XWq6E,2444 95 | dns/rdtypes/ANY/DLV.py,sha256=9AQWoYOS9i-GdlsIn6Y-3x9MWKLeDddAyDXZWT8Hsik,987 96 | dns/rdtypes/ANY/DNAME.py,sha256=Oil8B_mgVQ6_YvxDIVNO3AssA_RtsyeZmZJTUBXD_0g,1151 97 | dns/rdtypes/ANY/DNSKEY.py,sha256=an8gUCA7Cbm14weUBh7_gP7q237OQ29Cpjjnq9ylPfM,1146 98 | dns/rdtypes/ANY/DS.py,sha256=KWhwhK-mKuJvjb4jujnfeiRwHVjznsZ8MfBJ-fmz0WI,996 99 | dns/rdtypes/ANY/EUI48.py,sha256=BvcEhncVjcRktBxZw0dWx_wYP5JGVBnpAzMypixTW7w,1152 100 | dns/rdtypes/ANY/EUI64.py,sha256=qfqRmkc-wXmPpN4p559kpH4sc0JG5uBpQjsx0ZNaU30,1162 101 | dns/rdtypes/ANY/GPOS.py,sha256=L39btXLAXcsO-L1pebF_Q7rS_wwV4OjxHKi2uABrq24,4521 102 | dns/rdtypes/ANY/HINFO.py,sha256=iGNYKrnopV6nxz_Ium3If9kWxnHXlaUPks8hfObcQj8,2266 103 | dns/rdtypes/ANY/HIP.py,sha256=oUVNi3dCbUsodR2yU9mUuxeoU5RbR4DPQ0XJ-jdDBbw,3235 104 | dns/rdtypes/ANY/ISDN.py,sha256=oAS0EzlxLlJS-N5LTuuMDH-WVqo0uPkNZkTDMUEqoFE,2726 105 | dns/rdtypes/ANY/LOC.py,sha256=SmSbb0--W5yIAizRqFPkMX_Ij5Zeh2zpiKFOUzczNn4,11994 106 | dns/rdtypes/ANY/MX.py,sha256=OWfJEANZXF1gKYgXXRAkpz_BYlxxQ8cy0QgKPc7K0bA,996 107 | dns/rdtypes/ANY/NINFO.py,sha256=Fn7D8tXFbUIBRSEKlsd92T9M_O1xOGqKvsgX6aeRAco,1042 108 | dns/rdtypes/ANY/NS.py,sha256=OdaHATafwdGDk5AABbW8E3DIUtr5zuItWNRB7AUg-Go,996 109 | dns/rdtypes/ANY/NSEC.py,sha256=un6wfA5m6oTBCIPp2l4dEzn3iQWN7c4tRUCmi-M_HkU,2480 110 | dns/rdtypes/ANY/NSEC3.py,sha256=zzOvduy1lW6M3NNAIicBZQxFX0ewQaspzgfRL4jFGJ0,4073 111 | dns/rdtypes/ANY/NSEC3PARAM.py,sha256=jnJbT83o2lIxPj2lUY6Euid6txdJ-vDuXmuUrLiLylM,2703 112 | dns/rdtypes/ANY/OPENPGPKEY.py,sha256=ecAhn5sfg4Eub7UsPsA6I82qEJgPg5T-f-VKkUDgrzE,1855 113 | dns/rdtypes/ANY/OPT.py,sha256=shPDGC4x-Sjy_DHQ9hWaf_7ZBUGcKQYprJE-U29wwrs,2560 114 | dns/rdtypes/ANY/PTR.py,sha256=GrTYECslYH8wafdIyNhdOqwOMHm-h8cO954DRw3VMNg,998 115 | dns/rdtypes/ANY/RP.py,sha256=pkJD4LZ2UHDdIp4byPFGg0-JvRcBkuvwY8zu9KFlh4c,2189 116 | dns/rdtypes/ANY/RRSIG.py,sha256=fpeg_Wc3GtbLxYQtGKLXioQ7A-KVz3JNGq5K0NCk12k,4701 117 | dns/rdtypes/ANY/RT.py,sha256=9CHkE9dKz2n_RZpuG4zOOWOi4fW3tahxllRXF8043WI,1014 118 | dns/rdtypes/ANY/SMIMEA.py,sha256=6yjHuVDfIEodBU9wxbCGCDZ5cWYwyY6FCk-aq2VNU0s,222 119 | dns/rdtypes/ANY/SOA.py,sha256=ptfmGk_2onH8wRfhGqaIcM_M77Cj2bCsEYauDm6YfzQ,3107 120 | dns/rdtypes/ANY/SPF.py,sha256=wHsKdQWUL0UcohQlbjkNkIfZUADtC-FZyIJNw8NFrIY,1023 121 | dns/rdtypes/ANY/SSHFP.py,sha256=9XPZLu3W4LB6SD6EoIebCxOR5yXdjE70ecy4xdE8UT4,2657 122 | dns/rdtypes/ANY/TKEY.py,sha256=_izCFRCLueKXuxtKiPiw-GSTsx27v1vmrFAy3Nw7UHo,4830 123 | dns/rdtypes/ANY/TLSA.py,sha256=EYP7AXBh4zMtBgnfz828qfoLkFLCm5g8vR-6oX_DTbE,219 124 | dns/rdtypes/ANY/TSIG.py,sha256=d1lRKt7nz9Cn-mpF5LW78p7M4ANtKL5eAq2BSwLd880,4463 125 | dns/rdtypes/ANY/TXT.py,sha256=7IAIjgZ0hX_MIh_b0ApzKvxLXHTS0rteR-KXt4HLaV0,1001 126 | dns/rdtypes/ANY/URI.py,sha256=AyJu4jsApByz6h6wPci9Kdhg6V_MQtvHwRteP4sft94,2933 127 | dns/rdtypes/ANY/X25.py,sha256=sd0jJcuowZYP7P1aABLHwNffp9Ls5Ru0hrCK4e9EkIQ,1949 128 | dns/rdtypes/ANY/__init__.py,sha256=SbSmfdF3JXJDwfu6jdF-8Zg0HvSbzKBSfYN5q5CaPh0,1411 129 | dns/rdtypes/ANY/__pycache__/AFSDB.cpython-39.pyc,, 130 | dns/rdtypes/ANY/__pycache__/AMTRELAY.cpython-39.pyc,, 131 | dns/rdtypes/ANY/__pycache__/AVC.cpython-39.pyc,, 132 | dns/rdtypes/ANY/__pycache__/CAA.cpython-39.pyc,, 133 | dns/rdtypes/ANY/__pycache__/CDNSKEY.cpython-39.pyc,, 134 | dns/rdtypes/ANY/__pycache__/CDS.cpython-39.pyc,, 135 | dns/rdtypes/ANY/__pycache__/CERT.cpython-39.pyc,, 136 | dns/rdtypes/ANY/__pycache__/CNAME.cpython-39.pyc,, 137 | dns/rdtypes/ANY/__pycache__/CSYNC.cpython-39.pyc,, 138 | dns/rdtypes/ANY/__pycache__/DLV.cpython-39.pyc,, 139 | dns/rdtypes/ANY/__pycache__/DNAME.cpython-39.pyc,, 140 | dns/rdtypes/ANY/__pycache__/DNSKEY.cpython-39.pyc,, 141 | dns/rdtypes/ANY/__pycache__/DS.cpython-39.pyc,, 142 | dns/rdtypes/ANY/__pycache__/EUI48.cpython-39.pyc,, 143 | dns/rdtypes/ANY/__pycache__/EUI64.cpython-39.pyc,, 144 | dns/rdtypes/ANY/__pycache__/GPOS.cpython-39.pyc,, 145 | dns/rdtypes/ANY/__pycache__/HINFO.cpython-39.pyc,, 146 | dns/rdtypes/ANY/__pycache__/HIP.cpython-39.pyc,, 147 | dns/rdtypes/ANY/__pycache__/ISDN.cpython-39.pyc,, 148 | dns/rdtypes/ANY/__pycache__/LOC.cpython-39.pyc,, 149 | dns/rdtypes/ANY/__pycache__/MX.cpython-39.pyc,, 150 | dns/rdtypes/ANY/__pycache__/NINFO.cpython-39.pyc,, 151 | dns/rdtypes/ANY/__pycache__/NS.cpython-39.pyc,, 152 | dns/rdtypes/ANY/__pycache__/NSEC.cpython-39.pyc,, 153 | dns/rdtypes/ANY/__pycache__/NSEC3.cpython-39.pyc,, 154 | dns/rdtypes/ANY/__pycache__/NSEC3PARAM.cpython-39.pyc,, 155 | dns/rdtypes/ANY/__pycache__/OPENPGPKEY.cpython-39.pyc,, 156 | dns/rdtypes/ANY/__pycache__/OPT.cpython-39.pyc,, 157 | dns/rdtypes/ANY/__pycache__/PTR.cpython-39.pyc,, 158 | dns/rdtypes/ANY/__pycache__/RP.cpython-39.pyc,, 159 | dns/rdtypes/ANY/__pycache__/RRSIG.cpython-39.pyc,, 160 | dns/rdtypes/ANY/__pycache__/RT.cpython-39.pyc,, 161 | dns/rdtypes/ANY/__pycache__/SMIMEA.cpython-39.pyc,, 162 | dns/rdtypes/ANY/__pycache__/SOA.cpython-39.pyc,, 163 | dns/rdtypes/ANY/__pycache__/SPF.cpython-39.pyc,, 164 | dns/rdtypes/ANY/__pycache__/SSHFP.cpython-39.pyc,, 165 | dns/rdtypes/ANY/__pycache__/TKEY.cpython-39.pyc,, 166 | dns/rdtypes/ANY/__pycache__/TLSA.cpython-39.pyc,, 167 | dns/rdtypes/ANY/__pycache__/TSIG.cpython-39.pyc,, 168 | dns/rdtypes/ANY/__pycache__/TXT.cpython-39.pyc,, 169 | dns/rdtypes/ANY/__pycache__/URI.cpython-39.pyc,, 170 | dns/rdtypes/ANY/__pycache__/X25.cpython-39.pyc,, 171 | dns/rdtypes/ANY/__pycache__/__init__.cpython-39.pyc,, 172 | dns/rdtypes/CH/A.py,sha256=00CyWdEU67RT--0dXVrz-uBi_bR-hxP6QxSqB6rdv9A,2220 173 | dns/rdtypes/CH/__init__.py,sha256=Ef8Z58kdxbLpTqtgP_u3MfVQoqwb3If2T68YEwIMosw,923 174 | dns/rdtypes/CH/__pycache__/A.cpython-39.pyc,, 175 | dns/rdtypes/CH/__pycache__/__init__.cpython-39.pyc,, 176 | dns/rdtypes/IN/A.py,sha256=jlL0tINvsyzigE0IsHrrhscuygv0Vwv8_r44q4eNkXw,1819 177 | dns/rdtypes/IN/AAAA.py,sha256=jVoTTLgLqQF2qjkXvanm4tdC5bE_BPG27qeJTXwrdYQ,1825 178 | dns/rdtypes/IN/APL.py,sha256=dpJx_etUQ78ZxBQMe3rf6I7BmE0ijE6sNS2lrVqtZRE,5088 179 | dns/rdtypes/IN/DHCID.py,sha256=3OsqQ8rJ44QBNR6IBI_DHc0Rv78rEUP-sWS7P-IB_NA,1844 180 | dns/rdtypes/IN/HTTPS.py,sha256=wzVAayp-i1AACNh4v6RY1ZKSbIq61-jDc9Fmeoat6Sc,219 181 | dns/rdtypes/IN/IPSECKEY.py,sha256=JFwSGGE3GeawuOJ2siVWcaPTL_c7cyoiQ9ik8-rKY7A,3435 182 | dns/rdtypes/IN/KX.py,sha256=govh0YTer2-mpfhxUwc-fQb1WnqMkEkq5jIRo20nh1E,1014 183 | dns/rdtypes/IN/NAPTR.py,sha256=fA44HJzsza7pf7wNZSkDJsbxstTDO_z7xny75fTiDZQ,3658 184 | dns/rdtypes/IN/NSAP.py,sha256=_7Qf9fQK_1JRHrTBIyac_04E6gpz2iznmU3unPxLgrw,2170 185 | dns/rdtypes/IN/NSAP_PTR.py,sha256=hTnieARrAxO-yuFeMppj4wlRX6gv6RC089hLaurs-UQ,1016 186 | dns/rdtypes/IN/PX.py,sha256=yYN7HI4yx8lAG1-PHgGKBwuqThTUSImp044Byvsk8Bo,2737 187 | dns/rdtypes/IN/SRV.py,sha256=47B__Aztd9VFl0lOAY5cuDTg_T0ja1Vboy0o7NaNFRw,2782 188 | dns/rdtypes/IN/SVCB.py,sha256=SrGsGjBqrnskBmxBOZQej_uyPqtBnZmki0jlPoSTud0,217 189 | dns/rdtypes/IN/WKS.py,sha256=w6Cwy4dXSaAYehSDkUzGIo9NIDXNgFbxtcQfHZx1LNo,3554 190 | dns/rdtypes/IN/__init__.py,sha256=mNZ9A4tfstUe-moGqbJUVC0QVih_72I1cyeOe7nyREY,1058 191 | dns/rdtypes/IN/__pycache__/A.cpython-39.pyc,, 192 | dns/rdtypes/IN/__pycache__/AAAA.cpython-39.pyc,, 193 | dns/rdtypes/IN/__pycache__/APL.cpython-39.pyc,, 194 | dns/rdtypes/IN/__pycache__/DHCID.cpython-39.pyc,, 195 | dns/rdtypes/IN/__pycache__/HTTPS.cpython-39.pyc,, 196 | dns/rdtypes/IN/__pycache__/IPSECKEY.cpython-39.pyc,, 197 | dns/rdtypes/IN/__pycache__/KX.cpython-39.pyc,, 198 | dns/rdtypes/IN/__pycache__/NAPTR.cpython-39.pyc,, 199 | dns/rdtypes/IN/__pycache__/NSAP.cpython-39.pyc,, 200 | dns/rdtypes/IN/__pycache__/NSAP_PTR.cpython-39.pyc,, 201 | dns/rdtypes/IN/__pycache__/PX.cpython-39.pyc,, 202 | dns/rdtypes/IN/__pycache__/SRV.cpython-39.pyc,, 203 | dns/rdtypes/IN/__pycache__/SVCB.cpython-39.pyc,, 204 | dns/rdtypes/IN/__pycache__/WKS.cpython-39.pyc,, 205 | dns/rdtypes/IN/__pycache__/__init__.cpython-39.pyc,, 206 | dns/rdtypes/__init__.py,sha256=aQ6_FR44VZIeSILzd8xM5qTnWGg9oQ4im2yS__zK2Rw,1072 207 | dns/rdtypes/__pycache__/__init__.cpython-39.pyc,, 208 | dns/rdtypes/__pycache__/dnskeybase.cpython-39.pyc,, 209 | dns/rdtypes/__pycache__/dsbase.cpython-39.pyc,, 210 | dns/rdtypes/__pycache__/euibase.cpython-39.pyc,, 211 | dns/rdtypes/__pycache__/mxbase.cpython-39.pyc,, 212 | dns/rdtypes/__pycache__/nsbase.cpython-39.pyc,, 213 | dns/rdtypes/__pycache__/svcbbase.cpython-39.pyc,, 214 | dns/rdtypes/__pycache__/tlsabase.cpython-39.pyc,, 215 | dns/rdtypes/__pycache__/txtbase.cpython-39.pyc,, 216 | dns/rdtypes/__pycache__/util.cpython-39.pyc,, 217 | dns/rdtypes/dnskeybase.py,sha256=b35nr-NbOV9TbQbRBeG_Yi1lYQIZo4_oFKCOZHThdkE,2836 218 | dns/rdtypes/dsbase.py,sha256=CwKTXERTq79qYGqtDPS-O-AHKbNlVLbVFISvi6f22p0,2874 219 | dns/rdtypes/euibase.py,sha256=UwuEufV2iG4wgvKgMNyMSc42ASRNslAPNRBiF_E2x8I,2684 220 | dns/rdtypes/mxbase.py,sha256=N5i0iHl6Xoe0V8iSrT8C4Nprc2iyV9qut90bRJvQST4,3203 221 | dns/rdtypes/nsbase.py,sha256=gofwZ0GN3BCTLTT56JiXxr2IfuwsNZz13H5y_IjWl9g,2329 222 | dns/rdtypes/svcbbase.py,sha256=AUxfEU2RfruZIcFiPiTu3svrRkTmCLAWC6ELyZkxdWI,16696 223 | dns/rdtypes/tlsabase.py,sha256=JPH5F8sFhub3nkpbWpVTT7UZjKi117gI8BXjeSbr2fo,2755 224 | dns/rdtypes/txtbase.py,sha256=GQKGQfdrfLKMVCkNXrxEbZbH1rPFBQEWl4uveDLIxrE,3140 225 | dns/rdtypes/util.py,sha256=sFUovM4j_34_BBzavYOAsGgPW2biVUsGQdxrqV1PCHc,8107 226 | dns/renderer.py,sha256=f88abs7RQwZtKT4LlZuXQh3P9DJz_3uzbYGRlraI04c,8799 227 | dns/resolver.py,sha256=fLX8pDbmQOuwNQgL_rFxaklHrD_T9C96Ys4axl3chPk,60714 228 | dns/reversename.py,sha256=KXXAMSs9TWZL10lzAlygJzT_Ye_p7rPAxMgR1cutKME,3733 229 | dns/rrset.py,sha256=Xk2qJanJFq4ZUsCxlQR1aPbIC5MkMrx_RmJWjYoBStk,7622 230 | dns/serial.py,sha256=QdTGtDYck-htn0X0Ix6fKVF2LtGhOh-ZnBaTIUQr3wI,3615 231 | dns/set.py,sha256=IbEuUBTaiPCm51JUJiLOb6rarfZ8ldPfmzMK1NkkyUw,7823 232 | dns/tokenizer.py,sha256=GbxFyCcnv5xYqkUTMr7votptgT4gUQs7q42tgevZH7w,22384 233 | dns/transaction.py,sha256=OA_6u0EkLuoSEZ0-y0EHgFdwN-yN-4RNg7rkLV30s08,17338 234 | dns/tsig.py,sha256=ytT7EGpYn8ZhcNaei3vbH7VU0LBT_7w97HXlHYiswWQ,11190 235 | dns/tsigkeyring.py,sha256=G1eBcht3QgBfaVcdR4yJR6olCBnkwwVHR3zKdoDftBY,2485 236 | dns/ttl.py,sha256=YWsMbFJj_P2K7CGuaaJbVuH7sSNmxnE6DcLbT3gxaOE,2646 237 | dns/update.py,sha256=hOhO4I0hlFgb-DmcidAE4nNsJn3D6OWphgfQEIDAm5s,10807 238 | dns/version.py,sha256=5jGVvBBcglYVVxDDsdU5O2CACwhU7dKZoiuuzYzv9F8,1591 239 | dns/versioned.py,sha256=785KAykvwkTBhyAImQnTWb3xo_85lr2QREH0pqinNzo,16289 240 | dns/wire.py,sha256=ywbS4oTzkf0zz_CZK5ne5yZjZafGmfob1kXapI_PeXA,2540 241 | dns/xfr.py,sha256=GtwdPBSpAhXRfAhJ_mT4PlfxQdfDG9qh-kLRU1Kh_S8,11888 242 | dns/zone.py,sha256=d70yn0JbmjaBcr7DmUJEVne_ePBGrO5mspBXiilRG4k,35073 243 | dns/zonefile.py,sha256=6Ddm-pJelDNvud-wC9qe8u515aQjYOfgFIDE_V3uT8c,15620 244 | dnspython-2.1.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 245 | dnspython-2.1.0.dist-info/LICENSE,sha256=w-o_9WVLMpwZ07xfdIGvYjw93tSmFFWFSZ-EOtPXQc0,1526 246 | dnspython-2.1.0.dist-info/METADATA,sha256=dV21TuqbbFikip0bL4q-ImdIcFs0Rnv_DtqKjnGma0A,1903 247 | dnspython-2.1.0.dist-info/RECORD,, 248 | dnspython-2.1.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 249 | dnspython-2.1.0.dist-info/WHEEL,sha256=EVRjI69F5qVjm_YgqcTXPnTAv3BfSUr0WVAHuSP3Xoo,92 250 | dnspython-2.1.0.dist-info/top_level.txt,sha256=pNgzNfVoNIdUseB5acMPCTmUyu6m6aH47olUCAzzWTo,4 251 | -------------------------------------------------------------------------------- /WindowsMedicator/dnspython-2.1.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/dnspython-2.1.0.dist-info/REQUESTED -------------------------------------------------------------------------------- /WindowsMedicator/dnspython-2.1.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.35.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /WindowsMedicator/dnspython-2.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dns 2 | -------------------------------------------------------------------------------- /WindowsMedicator/importlib_metadata-4.11.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WindowsMedicator/importlib_metadata-4.11.2.dist-info/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2017-2019 Jason R. Coombs, Barry Warsaw 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /WindowsMedicator/importlib_metadata-4.11.2.dist-info/METADATA: -------------------------------------------------------------------------------- 1 | Metadata-Version: 2.1 2 | Name: importlib-metadata 3 | Version: 4.11.2 4 | Summary: Read metadata from Python packages 5 | Home-page: https://github.com/python/importlib_metadata 6 | Author: Jason R. Coombs 7 | Author-email: jaraco@jaraco.com 8 | License: UNKNOWN 9 | Platform: UNKNOWN 10 | Classifier: Development Status :: 5 - Production/Stable 11 | Classifier: Intended Audience :: Developers 12 | Classifier: License :: OSI Approved :: Apache Software License 13 | Classifier: Programming Language :: Python :: 3 14 | Classifier: Programming Language :: Python :: 3 :: Only 15 | Requires-Python: >=3.7 16 | License-File: LICENSE 17 | Requires-Dist: zipp (>=0.5) 18 | Requires-Dist: typing-extensions (>=3.6.4) ; python_version < "3.8" 19 | Provides-Extra: docs 20 | Requires-Dist: sphinx ; extra == 'docs' 21 | Requires-Dist: jaraco.packaging (>=9) ; extra == 'docs' 22 | Requires-Dist: rst.linker (>=1.9) ; extra == 'docs' 23 | Provides-Extra: perf 24 | Requires-Dist: ipython ; extra == 'perf' 25 | Provides-Extra: testing 26 | Requires-Dist: pytest (>=6) ; extra == 'testing' 27 | Requires-Dist: pytest-checkdocs (>=2.4) ; extra == 'testing' 28 | Requires-Dist: pytest-flake8 ; extra == 'testing' 29 | Requires-Dist: pytest-cov ; extra == 'testing' 30 | Requires-Dist: pytest-enabler (>=1.0.1) ; extra == 'testing' 31 | Requires-Dist: packaging ; extra == 'testing' 32 | Requires-Dist: pyfakefs ; extra == 'testing' 33 | Requires-Dist: flufl.flake8 ; extra == 'testing' 34 | Requires-Dist: pytest-perf (>=0.9.2) ; extra == 'testing' 35 | Requires-Dist: pytest-black (>=0.3.7) ; (platform_python_implementation != "PyPy") and extra == 'testing' 36 | Requires-Dist: pytest-mypy (>=0.9.1) ; (platform_python_implementation != "PyPy") and extra == 'testing' 37 | Requires-Dist: importlib-resources (>=1.3) ; (python_version < "3.9") and extra == 'testing' 38 | 39 | .. image:: https://img.shields.io/pypi/v/importlib_metadata.svg 40 | :target: `PyPI link`_ 41 | 42 | .. image:: https://img.shields.io/pypi/pyversions/importlib_metadata.svg 43 | :target: `PyPI link`_ 44 | 45 | .. _PyPI link: https://pypi.org/project/importlib_metadata 46 | 47 | .. image:: https://github.com/python/importlib_metadata/workflows/tests/badge.svg 48 | :target: https://github.com/python/importlib_metadata/actions?query=workflow%3A%22tests%22 49 | :alt: tests 50 | 51 | .. image:: https://img.shields.io/badge/code%20style-black-000000.svg 52 | :target: https://github.com/psf/black 53 | :alt: Code style: Black 54 | 55 | .. image:: https://readthedocs.org/projects/importlib-metadata/badge/?version=latest 56 | :target: https://importlib-metadata.readthedocs.io/en/latest/?badge=latest 57 | 58 | .. image:: https://img.shields.io/badge/skeleton-2022-informational 59 | :target: https://blog.jaraco.com/skeleton 60 | 61 | 62 | Library to access the metadata for a Python package. 63 | 64 | This package supplies third-party access to the functionality of 65 | `importlib.metadata `_ 66 | including improvements added to subsequent Python versions. 67 | 68 | 69 | Compatibility 70 | ============= 71 | 72 | New features are introduced in this third-party library and later merged 73 | into CPython. The following table indicates which versions of this library 74 | were contributed to different versions in the standard library: 75 | 76 | .. list-table:: 77 | :header-rows: 1 78 | 79 | * - importlib_metadata 80 | - stdlib 81 | * - 4.8 82 | - 3.11 83 | * - 4.4 84 | - 3.10 85 | * - 1.4 86 | - 3.8 87 | 88 | 89 | Usage 90 | ===== 91 | 92 | See the `online documentation `_ 93 | for usage details. 94 | 95 | `Finder authors 96 | `_ can 97 | also add support for custom package installers. See the above documentation 98 | for details. 99 | 100 | 101 | Caveats 102 | ======= 103 | 104 | This project primarily supports third-party packages installed by PyPA 105 | tools (or other conforming packages). It does not support: 106 | 107 | - Packages in the stdlib. 108 | - Packages installed without metadata. 109 | 110 | Project details 111 | =============== 112 | 113 | * Project home: https://github.com/python/importlib_metadata 114 | * Report bugs at: https://github.com/python/importlib_metadata/issues 115 | * Code hosting: https://github.com/python/importlib_metadata 116 | * Documentation: https://importlib_metadata.readthedocs.io/ 117 | 118 | 119 | -------------------------------------------------------------------------------- /WindowsMedicator/importlib_metadata-4.11.2.dist-info/RECORD: -------------------------------------------------------------------------------- 1 | importlib_metadata-4.11.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 2 | importlib_metadata-4.11.2.dist-info/LICENSE,sha256=wNe6dAchmJ1VvVB8D9oTc-gHHadCuaSBAev36sYEM6U,571 3 | importlib_metadata-4.11.2.dist-info/METADATA,sha256=aLVX705iWXUmNd76I785C1hui1qBkF7rUX4X1RlOCF8,3997 4 | importlib_metadata-4.11.2.dist-info/RECORD,, 5 | importlib_metadata-4.11.2.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92 6 | importlib_metadata-4.11.2.dist-info/top_level.txt,sha256=CO3fD9yylANiXkrMo4qHLV_mqXL2sC5JFKgt1yWAT-A,19 7 | importlib_metadata/__init__.py,sha256=5RTd8-OIyrkaDDItxVj_mXrggjfXok6q-QU2WVBV0AM,30331 8 | importlib_metadata/__pycache__/__init__.cpython-39.pyc,, 9 | importlib_metadata/__pycache__/_adapters.cpython-39.pyc,, 10 | importlib_metadata/__pycache__/_collections.cpython-39.pyc,, 11 | importlib_metadata/__pycache__/_compat.cpython-39.pyc,, 12 | importlib_metadata/__pycache__/_functools.cpython-39.pyc,, 13 | importlib_metadata/__pycache__/_itertools.cpython-39.pyc,, 14 | importlib_metadata/__pycache__/_meta.cpython-39.pyc,, 15 | importlib_metadata/__pycache__/_text.cpython-39.pyc,, 16 | importlib_metadata/_adapters.py,sha256=B6fCi5-8mLVDFUZj3krI5nAo-mKp1dH_qIavyIyFrJs,1862 17 | importlib_metadata/_collections.py,sha256=CJ0OTCHIjWA0ZIVS4voORAsn2R4R2cQBEtPsZEJpASY,743 18 | importlib_metadata/_compat.py,sha256=EU2XCFBPFByuI0Of6XkAuBYbzqSyjwwwwqmsK4ccna0,1826 19 | importlib_metadata/_functools.py,sha256=PsY2-4rrKX4RVeRC1oGp1lB1pmC9eKN88_f-bD9uOoA,2895 20 | importlib_metadata/_itertools.py,sha256=cvr_2v8BRbxcIl5x5ldfqdHjhI8Yi8s8yk50G_nm6jQ,2068 21 | importlib_metadata/_meta.py,sha256=_F48Hu_jFxkfKWz5wcYS8vO23qEygbVdF9r-6qh-hjE,1154 22 | importlib_metadata/_text.py,sha256=HCsFksZpJLeTP3NEk_ngrAeXVRRtTrtyh9eOABoRP4A,2166 23 | importlib_metadata/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 24 | -------------------------------------------------------------------------------- /WindowsMedicator/importlib_metadata-4.11.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /WindowsMedicator/importlib_metadata-4.11.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | importlib_metadata 2 | -------------------------------------------------------------------------------- /WindowsMedicator/libcrypto-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/libcrypto-1_1.dll -------------------------------------------------------------------------------- /WindowsMedicator/libffi-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/libffi-7.dll -------------------------------------------------------------------------------- /WindowsMedicator/libopenblas.EL2C6PLE4ZYW3ECEVIV3OXXGRN2NRFM2.gfortran-win_amd64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/libopenblas.EL2C6PLE4ZYW3ECEVIV3OXXGRN2NRFM2.gfortran-win_amd64.dll -------------------------------------------------------------------------------- /WindowsMedicator/libssl-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/libssl-1_1.dll -------------------------------------------------------------------------------- /WindowsMedicator/numpy/core/_multiarray_tests.cp39-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/numpy/core/_multiarray_tests.cp39-win_amd64.pyd -------------------------------------------------------------------------------- /WindowsMedicator/numpy/core/_multiarray_umath.cp39-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/numpy/core/_multiarray_umath.cp39-win_amd64.pyd -------------------------------------------------------------------------------- /WindowsMedicator/numpy/fft/_pocketfft_internal.cp39-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/numpy/fft/_pocketfft_internal.cp39-win_amd64.pyd -------------------------------------------------------------------------------- /WindowsMedicator/numpy/linalg/_umath_linalg.cp39-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/numpy/linalg/_umath_linalg.cp39-win_amd64.pyd -------------------------------------------------------------------------------- /WindowsMedicator/numpy/linalg/lapack_lite.cp39-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/numpy/linalg/lapack_lite.cp39-win_amd64.pyd -------------------------------------------------------------------------------- /WindowsMedicator/numpy/random/_bounded_integers.cp39-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/numpy/random/_bounded_integers.cp39-win_amd64.pyd -------------------------------------------------------------------------------- /WindowsMedicator/numpy/random/_common.cp39-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/numpy/random/_common.cp39-win_amd64.pyd -------------------------------------------------------------------------------- /WindowsMedicator/numpy/random/_generator.cp39-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/numpy/random/_generator.cp39-win_amd64.pyd -------------------------------------------------------------------------------- /WindowsMedicator/numpy/random/_mt19937.cp39-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/numpy/random/_mt19937.cp39-win_amd64.pyd -------------------------------------------------------------------------------- /WindowsMedicator/numpy/random/_pcg64.cp39-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/numpy/random/_pcg64.cp39-win_amd64.pyd -------------------------------------------------------------------------------- /WindowsMedicator/numpy/random/_philox.cp39-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/numpy/random/_philox.cp39-win_amd64.pyd -------------------------------------------------------------------------------- /WindowsMedicator/numpy/random/_sfc64.cp39-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/numpy/random/_sfc64.cp39-win_amd64.pyd -------------------------------------------------------------------------------- /WindowsMedicator/numpy/random/bit_generator.cp39-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/numpy/random/bit_generator.cp39-win_amd64.pyd -------------------------------------------------------------------------------- /WindowsMedicator/numpy/random/mtrand.cp39-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/numpy/random/mtrand.cp39-win_amd64.pyd -------------------------------------------------------------------------------- /WindowsMedicator/psutil/_psutil_windows.cp39-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/psutil/_psutil_windows.cp39-win_amd64.pyd -------------------------------------------------------------------------------- /WindowsMedicator/pyexpat.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/pyexpat.pyd -------------------------------------------------------------------------------- /WindowsMedicator/pyinstaller-4.10.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WindowsMedicator/pyinstaller-4.10.dist-info/METADATA: -------------------------------------------------------------------------------- 1 | Metadata-Version: 2.1 2 | Name: pyinstaller 3 | Version: 4.10 4 | Summary: PyInstaller bundles a Python application and all its dependencies into a single package. 5 | Home-page: http://www.pyinstaller.org/ 6 | Author: Hartmut Goebel, Giovanni Bajo, David Vierra, David Cortesi, Martin Zibricky 7 | License: GPLv2-or-later with a special exception which allows to use PyInstaller to build and distribute non-free programs (including commercial ones) 8 | Keywords: packaging, app, apps, bundle, convert, standalone, executable,pyinstaller, cxfreeze, freeze, py2exe, py2app, bbfreeze 9 | Platform: UNKNOWN 10 | Classifier: Development Status :: 6 - Mature 11 | Classifier: Environment :: Console 12 | Classifier: Intended Audience :: Developers 13 | Classifier: Intended Audience :: Other Audience 14 | Classifier: Intended Audience :: System Administrators 15 | Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2) 16 | Classifier: Natural Language :: English 17 | Classifier: Operating System :: MacOS :: MacOS X 18 | Classifier: Operating System :: Microsoft :: Windows 19 | Classifier: Operating System :: POSIX 20 | Classifier: Operating System :: POSIX :: AIX 21 | Classifier: Operating System :: POSIX :: BSD 22 | Classifier: Operating System :: POSIX :: Linux 23 | Classifier: Operating System :: POSIX :: SunOS/Solaris 24 | Classifier: Programming Language :: C 25 | Classifier: Programming Language :: Python 26 | Classifier: Programming Language :: Python :: 3 27 | Classifier: Programming Language :: Python :: 3 :: Only 28 | Classifier: Programming Language :: Python :: 3.6 29 | Classifier: Programming Language :: Python :: 3.7 30 | Classifier: Programming Language :: Python :: 3.8 31 | Classifier: Programming Language :: Python :: 3.9 32 | Classifier: Programming Language :: Python :: 3.10 33 | Classifier: Programming Language :: Python :: Implementation :: CPython 34 | Classifier: Topic :: Software Development 35 | Classifier: Topic :: Software Development :: Build Tools 36 | Classifier: Topic :: Software Development :: Interpreters 37 | Classifier: Topic :: Software Development :: Libraries :: Python Modules 38 | Classifier: Topic :: System :: Installation/Setup 39 | Classifier: Topic :: System :: Software Distribution 40 | Classifier: Topic :: Utilities 41 | Requires-Python: <3.11,>=3.6 42 | Description-Content-Type: text/x-rst 43 | License-File: COPYING.txt 44 | Requires-Dist: setuptools 45 | Requires-Dist: altgraph 46 | Requires-Dist: pyinstaller-hooks-contrib (>=2020.6) 47 | Requires-Dist: importlib-metadata ; python_version < "3.8" 48 | Requires-Dist: macholib (>=1.8) ; sys_platform == "darwin" 49 | Requires-Dist: pefile (>=2017.8.1) ; sys_platform == "win32" 50 | Requires-Dist: pywin32-ctypes (>=0.2.0) ; sys_platform == "win32" 51 | Provides-Extra: encryption 52 | Requires-Dist: tinyaes (>=1.0.0) ; extra == 'encryption' 53 | Provides-Extra: hook_testing 54 | Requires-Dist: pytest (>=2.7.3) ; extra == 'hook_testing' 55 | Requires-Dist: execnet (>=1.5.0) ; extra == 'hook_testing' 56 | Requires-Dist: psutil ; extra == 'hook_testing' 57 | 58 | PyInstaller Overview 59 | ==================== 60 | 61 | PyInstaller bundles a Python application and all its dependencies into a single 62 | package. The user can run the packaged app without installing a Python 63 | interpreter or any modules. 64 | 65 | :Documentation: https://pyinstaller.readthedocs.io/en/v4.10 66 | :Website: http://www.pyinstaller.org/ 67 | :Code: https://github.com/pyinstaller/pyinstaller 68 | 69 | PyInstaller reads a Python script written by you. It analyzes your code 70 | to discover every other module and library your script needs in order to 71 | execute. Then it collects copies of all those files -- including the active 72 | Python interpreter! -- and puts them with your script in a single folder, or 73 | optionally in a single executable file. 74 | 75 | 76 | PyInstaller is tested against Windows, Mac OS X, and GNU/Linux. 77 | However, it is not a cross-compiler: 78 | to make a Windows app you run PyInstaller in Windows; to make 79 | a GNU/Linux app you run it in GNU/Linux, etc. 80 | PyInstaller has been used successfully 81 | with AIX, Solaris, FreeBSD and OpenBSD, 82 | but is not tested against them as part of the continuous integration tests. 83 | 84 | 85 | Main Advantages 86 | --------------- 87 | 88 | - Works out-of-the-box with any Python version 3.6-3.10. 89 | - Fully multi-platform, and uses the OS support to load the dynamic libraries, 90 | thus ensuring full compatibility. 91 | - Correctly bundles the major Python packages such as numpy, PyQt5, 92 | PySide2, Django, wxPython, matplotlib and others out-of-the-box. 93 | - Compatible with many 3rd-party packages out-of-the-box. (All the required 94 | tricks to make external packages work are already integrated.) 95 | - Libraries like PyQt5, PySide2, wxPython, matplotlib or Django are fully 96 | supported, without having to handle plugins or external data files manually. 97 | - Works with code signing on OS X. 98 | - Bundles MS Visual C++ DLLs on Windows. 99 | 100 | 101 | Installation 102 | ------------ 103 | 104 | PyInstaller is available on PyPI. You can install it through `pip`:: 105 | 106 | pip install pyinstaller 107 | 108 | 109 | Requirements and Tested Platforms 110 | --------------------------------- 111 | 112 | - Python: 113 | 114 | - 3.6-3.10 115 | - tinyaes_ 1.0+ (only if using bytecode encryption). 116 | Instead of installing tinyaes, ``pip install pyinstaller[encryption]`` instead. 117 | 118 | - Windows (32bit/64bit): 119 | 120 | - PyInstaller should work on Windows 7 or newer, but we only officially support Windows 8+. 121 | 122 | - Support for Python installed from the Windows store without using virtual 123 | environments requires PyInstaller 4.4 or later. 124 | 125 | - GNU/Linux (32bit/64bit) 126 | 127 | - ldd: Console application to print the shared libraries required 128 | by each program or shared library. This typically can be found in 129 | the distribution-package `glibc` or `libc-bin`. 130 | - objdump: Console application to display information from 131 | object files. This typically can be found in the 132 | distribution-package `binutils`. 133 | - objcopy: Console application to copy and translate object files. 134 | This typically can be found in the distribution-package `binutils`, 135 | too. 136 | 137 | - Mac OS X (64bit): 138 | 139 | - Mac OS X 10.13 (High Sierra) or newer. 140 | 141 | 142 | Usage 143 | ----- 144 | 145 | Basic usage is very simple, just run it against your main script:: 146 | 147 | pyinstaller /path/to/yourscript.py 148 | 149 | For more details, see the `manual`_. 150 | 151 | 152 | Untested Platforms 153 | ------------------ 154 | 155 | The following platforms have been contributed and any feedback or 156 | enhancements on these are welcome. 157 | 158 | - FreeBSD 159 | 160 | - ldd 161 | 162 | - Solaris 163 | 164 | - ldd 165 | - objdump 166 | 167 | - AIX 168 | 169 | - AIX 6.1 or newer. PyInstaller will not work with statically 170 | linked Python libraries. 171 | - ldd 172 | 173 | - PowerPC GNU/Linux (Debian) 174 | 175 | 176 | Before using any contributed platform, you need to build the PyInstaller 177 | bootloader, as we do not ship binary packages. Download PyInstaller 178 | source, and build the bootloader:: 179 | 180 | cd bootloader 181 | python ./waf all 182 | 183 | Then install PyInstaller:: 184 | 185 | python setup.py install 186 | 187 | or simply use it directly from the source (pyinstaller.py). 188 | 189 | 190 | Support 191 | ------- 192 | 193 | See http://www.pyinstaller.org/support.html for how to find help as well as 194 | for commercial support. 195 | 196 | 197 | Changes in this Release 198 | ----------------------- 199 | 200 | You can find a detailed list of changes in this release 201 | in the `Changelog`_ section of the manual. 202 | 203 | 204 | .. _tinyaes: https://github.com/naufraghi/tinyaes-py 205 | .. _`manual`: https://pyinstaller.readthedocs.io/en/v4.10/ 206 | .. _`Changelog`: https://pyinstaller.readthedocs.io/en/v4.10/CHANGES.html 207 | 208 | 209 | -------------------------------------------------------------------------------- /WindowsMedicator/pyinstaller-4.10.dist-info/REQUESTED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/pyinstaller-4.10.dist-info/REQUESTED -------------------------------------------------------------------------------- /WindowsMedicator/pyinstaller-4.10.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-win_amd64 5 | 6 | -------------------------------------------------------------------------------- /WindowsMedicator/pyinstaller-4.10.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pyi-archive_viewer = PyInstaller.utils.cliutils.archive_viewer:run 3 | pyi-bindepend = PyInstaller.utils.cliutils.bindepend:run 4 | pyi-grab_version = PyInstaller.utils.cliutils.grab_version:run 5 | pyi-makespec = PyInstaller.utils.cliutils.makespec:run 6 | pyi-set_version = PyInstaller.utils.cliutils.set_version:run 7 | pyinstaller = PyInstaller.__main__:run 8 | 9 | -------------------------------------------------------------------------------- /WindowsMedicator/pyinstaller-4.10.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | PyInstaller 2 | -------------------------------------------------------------------------------- /WindowsMedicator/python3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/python3.dll -------------------------------------------------------------------------------- /WindowsMedicator/python39.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/python39.dll -------------------------------------------------------------------------------- /WindowsMedicator/pywintypes39.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/pywintypes39.dll -------------------------------------------------------------------------------- /WindowsMedicator/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/select.pyd -------------------------------------------------------------------------------- /WindowsMedicator/setuptools-60.9.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WindowsMedicator/setuptools-60.9.3.dist-info/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright Jason R. Coombs 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to 5 | deal in the Software without restriction, including without limitation the 6 | rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 7 | sell copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 18 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 19 | IN THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /WindowsMedicator/setuptools-60.9.3.dist-info/METADATA: -------------------------------------------------------------------------------- 1 | Metadata-Version: 2.1 2 | Name: setuptools 3 | Version: 60.9.3 4 | Summary: Easily download, build, install, upgrade, and uninstall Python packages 5 | Home-page: https://github.com/pypa/setuptools 6 | Author: Python Packaging Authority 7 | Author-email: distutils-sig@python.org 8 | License: UNKNOWN 9 | Project-URL: Documentation, https://setuptools.pypa.io/ 10 | Keywords: CPAN PyPI distutils eggs package management 11 | Platform: UNKNOWN 12 | Classifier: Development Status :: 5 - Production/Stable 13 | Classifier: Intended Audience :: Developers 14 | Classifier: License :: OSI Approved :: MIT License 15 | Classifier: Programming Language :: Python :: 3 16 | Classifier: Programming Language :: Python :: 3 :: Only 17 | Classifier: Topic :: Software Development :: Libraries :: Python Modules 18 | Classifier: Topic :: System :: Archiving :: Packaging 19 | Classifier: Topic :: System :: Systems Administration 20 | Classifier: Topic :: Utilities 21 | Requires-Python: >=3.7 22 | License-File: LICENSE 23 | Provides-Extra: certs 24 | Provides-Extra: docs 25 | Requires-Dist: sphinx ; extra == 'docs' 26 | Requires-Dist: jaraco.packaging (>=9) ; extra == 'docs' 27 | Requires-Dist: rst.linker (>=1.9) ; extra == 'docs' 28 | Requires-Dist: jaraco.tidelift (>=1.4) ; extra == 'docs' 29 | Requires-Dist: pygments-github-lexers (==0.0.5) ; extra == 'docs' 30 | Requires-Dist: sphinx-favicon ; extra == 'docs' 31 | Requires-Dist: sphinx-inline-tabs ; extra == 'docs' 32 | Requires-Dist: sphinxcontrib-towncrier ; extra == 'docs' 33 | Requires-Dist: furo ; extra == 'docs' 34 | Provides-Extra: ssl 35 | Provides-Extra: testing 36 | Requires-Dist: pytest (>=6) ; extra == 'testing' 37 | Requires-Dist: pytest-checkdocs (>=2.4) ; extra == 'testing' 38 | Requires-Dist: pytest-flake8 ; extra == 'testing' 39 | Requires-Dist: pytest-enabler (>=1.0.1) ; extra == 'testing' 40 | Requires-Dist: pytest-perf ; extra == 'testing' 41 | Requires-Dist: mock ; extra == 'testing' 42 | Requires-Dist: flake8-2020 ; extra == 'testing' 43 | Requires-Dist: virtualenv (>=13.0.0) ; extra == 'testing' 44 | Requires-Dist: wheel ; extra == 'testing' 45 | Requires-Dist: pip (>=19.1) ; extra == 'testing' 46 | Requires-Dist: jaraco.envs (>=2.2) ; extra == 'testing' 47 | Requires-Dist: pytest-xdist ; extra == 'testing' 48 | Requires-Dist: sphinx (>=4.3.2) ; extra == 'testing' 49 | Requires-Dist: jaraco.path (>=3.2.0) ; extra == 'testing' 50 | Requires-Dist: build[virtualenv] ; extra == 'testing' 51 | Requires-Dist: filelock (>=3.4.0) ; extra == 'testing' 52 | Requires-Dist: pip-run (>=8.8) ; extra == 'testing' 53 | Provides-Extra: testing-integration 54 | Requires-Dist: pytest ; extra == 'testing-integration' 55 | Requires-Dist: pytest-xdist ; extra == 'testing-integration' 56 | Requires-Dist: pytest-enabler ; extra == 'testing-integration' 57 | Requires-Dist: virtualenv (>=13.0.0) ; extra == 'testing-integration' 58 | Requires-Dist: tomli ; extra == 'testing-integration' 59 | Requires-Dist: wheel ; extra == 'testing-integration' 60 | Requires-Dist: jaraco.path (>=3.2.0) ; extra == 'testing-integration' 61 | Requires-Dist: jaraco.envs (>=2.2) ; extra == 'testing-integration' 62 | Requires-Dist: build[virtualenv] ; extra == 'testing-integration' 63 | Requires-Dist: filelock (>=3.4.0) ; extra == 'testing-integration' 64 | Requires-Dist: pytest-black (>=0.3.7) ; (platform_python_implementation != "PyPy") and extra == 'testing' 65 | Requires-Dist: pytest-cov ; (platform_python_implementation != "PyPy") and extra == 'testing' 66 | Requires-Dist: pytest-mypy (>=0.9.1) ; (platform_python_implementation != "PyPy") and extra == 'testing' 67 | 68 | .. image:: https://raw.githubusercontent.com/pypa/setuptools/main/docs/images/banner-640x320.svg 69 | :align: center 70 | 71 | | 72 | 73 | .. image:: https://img.shields.io/pypi/v/setuptools.svg 74 | :target: `PyPI link`_ 75 | 76 | .. image:: https://img.shields.io/pypi/pyversions/setuptools.svg 77 | :target: `PyPI link`_ 78 | 79 | .. _PyPI link: https://pypi.org/project/setuptools 80 | 81 | .. image:: https://github.com/pypa/setuptools/workflows/tests/badge.svg 82 | :target: https://github.com/pypa/setuptools/actions?query=workflow%3A%22tests%22 83 | :alt: tests 84 | 85 | .. image:: https://img.shields.io/badge/code%20style-black-000000.svg 86 | :target: https://github.com/psf/black 87 | :alt: Code style: Black 88 | 89 | .. image:: https://img.shields.io/readthedocs/setuptools/latest.svg 90 | :target: https://setuptools.pypa.io 91 | 92 | .. image:: https://img.shields.io/badge/skeleton-2022-informational 93 | :target: https://blog.jaraco.com/skeleton 94 | 95 | .. image:: https://img.shields.io/codecov/c/github/pypa/setuptools/master.svg?logo=codecov&logoColor=white 96 | :target: https://codecov.io/gh/pypa/setuptools 97 | 98 | .. image:: https://tidelift.com/badges/github/pypa/setuptools?style=flat 99 | :target: https://tidelift.com/subscription/pkg/pypi-setuptools?utm_source=pypi-setuptools&utm_medium=readme 100 | 101 | .. image:: https://img.shields.io/discord/803025117553754132 102 | :target: https://discord.com/channels/803025117553754132/815945031150993468 103 | :alt: Discord 104 | 105 | See the `Installation Instructions 106 | `_ in the Python Packaging 107 | User's Guide for instructions on installing, upgrading, and uninstalling 108 | Setuptools. 109 | 110 | Questions and comments should be directed to `GitHub Discussions 111 | `_. 112 | Bug reports and especially tested patches may be 113 | submitted directly to the `bug tracker 114 | `_. 115 | 116 | 117 | Code of Conduct 118 | =============== 119 | 120 | Everyone interacting in the setuptools project's codebases, issue trackers, 121 | chat rooms, and fora is expected to follow the 122 | `PSF Code of Conduct `_. 123 | 124 | 125 | For Enterprise 126 | ============== 127 | 128 | Available as part of the Tidelift Subscription. 129 | 130 | Setuptools and the maintainers of thousands of other packages are working with Tidelift to deliver one enterprise subscription that covers all of the open source you use. 131 | 132 | `Learn more `_. 133 | 134 | 135 | Security Contact 136 | ================ 137 | 138 | To report a security vulnerability, please use the 139 | `Tidelift security contact `_. 140 | Tidelift will coordinate the fix and disclosure. 141 | 142 | 143 | -------------------------------------------------------------------------------- /WindowsMedicator/setuptools-60.9.3.dist-info/RECORD: -------------------------------------------------------------------------------- 1 | _distutils_hack/__init__.py,sha256=Am1CVQftk_MHAKvfJQVpQMwVx3lrAbKGPhKIUgwawDY,5298 2 | _distutils_hack/__pycache__/__init__.cpython-39.pyc,, 3 | _distutils_hack/__pycache__/override.cpython-39.pyc,, 4 | _distutils_hack/override.py,sha256=Eu_s-NF6VIZ4Cqd0tbbA5wtWky2IZPNd8et6GLt1mzo,44 5 | distutils-precedence.pth,sha256=JjjOniUA5XKl4N5_rtZmHrVp0baW_LoHsN0iPaX10iQ,151 6 | pkg_resources/__init__.py,sha256=NssS5SQg4XHYfyygmvKvSjlzq9hhdwvr66DL0I5-bO8,107935 7 | pkg_resources/__pycache__/__init__.cpython-39.pyc,, 8 | pkg_resources/_vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 9 | pkg_resources/_vendor/__pycache__/__init__.cpython-39.pyc,, 10 | pkg_resources/_vendor/__pycache__/appdirs.cpython-39.pyc,, 11 | pkg_resources/_vendor/__pycache__/pyparsing.cpython-39.pyc,, 12 | pkg_resources/_vendor/__pycache__/zipp.cpython-39.pyc,, 13 | pkg_resources/_vendor/appdirs.py,sha256=MievUEuv3l_mQISH5SF0shDk_BNhHHzYiAPrT3ITN4I,24701 14 | pkg_resources/_vendor/importlib_resources/__init__.py,sha256=evPm12kLgYqTm-pbzm60bOuumumT8IpBNWFp0uMyrzE,506 15 | pkg_resources/_vendor/importlib_resources/__pycache__/__init__.cpython-39.pyc,, 16 | pkg_resources/_vendor/importlib_resources/__pycache__/_adapters.cpython-39.pyc,, 17 | pkg_resources/_vendor/importlib_resources/__pycache__/_common.cpython-39.pyc,, 18 | pkg_resources/_vendor/importlib_resources/__pycache__/_compat.cpython-39.pyc,, 19 | pkg_resources/_vendor/importlib_resources/__pycache__/_itertools.cpython-39.pyc,, 20 | pkg_resources/_vendor/importlib_resources/__pycache__/_legacy.cpython-39.pyc,, 21 | pkg_resources/_vendor/importlib_resources/__pycache__/abc.cpython-39.pyc,, 22 | pkg_resources/_vendor/importlib_resources/__pycache__/readers.cpython-39.pyc,, 23 | pkg_resources/_vendor/importlib_resources/__pycache__/simple.cpython-39.pyc,, 24 | pkg_resources/_vendor/importlib_resources/_adapters.py,sha256=o51tP2hpVtohP33gSYyAkGNpLfYDBqxxYsadyiRZi1E,4504 25 | pkg_resources/_vendor/importlib_resources/_common.py,sha256=iIxAaQhotSh6TLLUEfL_ynU2fzEeyHMz9JcL46mUhLg,2741 26 | pkg_resources/_vendor/importlib_resources/_compat.py,sha256=nFBCGMvImglrqgYkb9aPgOj68-h6xbw-ca94XOv1-zs,2706 27 | pkg_resources/_vendor/importlib_resources/_itertools.py,sha256=WCdJ1Gs_kNFwKENyIG7TO0Y434IWCu0zjVVSsSbZwU8,884 28 | pkg_resources/_vendor/importlib_resources/_legacy.py,sha256=TMLkx6aEM6U8xIREPXqGZrMbUhTiPUuPl6ESD7RdYj4,3494 29 | pkg_resources/_vendor/importlib_resources/abc.py,sha256=MvTJJXajbl74s36Gyeesf76egtbFnh-TMtzQMVhFWXo,3886 30 | pkg_resources/_vendor/importlib_resources/readers.py,sha256=_9QLGQ5AzrED3PY8S2Zf8V6yLR0-nqqYqtQmgleDJzY,3566 31 | pkg_resources/_vendor/importlib_resources/simple.py,sha256=xt0qhXbwt3bZ86zuaaKbTiE9A0mDbwu0saRjUq_pcY0,2836 32 | pkg_resources/_vendor/jaraco/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 33 | pkg_resources/_vendor/jaraco/__pycache__/__init__.cpython-39.pyc,, 34 | pkg_resources/_vendor/jaraco/__pycache__/context.cpython-39.pyc,, 35 | pkg_resources/_vendor/jaraco/__pycache__/functools.cpython-39.pyc,, 36 | pkg_resources/_vendor/jaraco/context.py,sha256=7X1tpCLc5EN45iWGzGcsH0Unx62REIkvtRvglj0SiUA,5420 37 | pkg_resources/_vendor/jaraco/functools.py,sha256=eLwPh8FWY7rQ_cj1YxCekUkibTuerwyoJ_41H7Q7oWM,13515 38 | pkg_resources/_vendor/jaraco/text/__init__.py,sha256=cN55bFcceW4wTHG5ruv5IuEDRarP-4hBYX8zl94_c30,15526 39 | pkg_resources/_vendor/jaraco/text/__pycache__/__init__.cpython-39.pyc,, 40 | pkg_resources/_vendor/more_itertools/__init__.py,sha256=ZQYu_9H6stSG7viUgT32TFqslqcZwq82kWRZooKiI8Y,83 41 | pkg_resources/_vendor/more_itertools/__pycache__/__init__.cpython-39.pyc,, 42 | pkg_resources/_vendor/more_itertools/__pycache__/more.cpython-39.pyc,, 43 | pkg_resources/_vendor/more_itertools/__pycache__/recipes.cpython-39.pyc,, 44 | pkg_resources/_vendor/more_itertools/more.py,sha256=oave_26jctLsuF30e1SOWMgW0bEuwS-t08wkaLUwvXc,132569 45 | pkg_resources/_vendor/more_itertools/recipes.py,sha256=N6aCDwoIPvE-aiqpGU-nbFwqiM3X8MKRcxBM84naW88,18410 46 | pkg_resources/_vendor/packaging/__about__.py,sha256=ugASIO2w1oUyH8_COqQ2X_s0rDhjbhQC3yJocD03h2c,661 47 | pkg_resources/_vendor/packaging/__init__.py,sha256=b9Kk5MF7KxhhLgcDmiUWukN-LatWFxPdNug0joPhHSk,497 48 | pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-39.pyc,, 49 | pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-39.pyc,, 50 | pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-39.pyc,, 51 | pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-39.pyc,, 52 | pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-39.pyc,, 53 | pkg_resources/_vendor/packaging/__pycache__/markers.cpython-39.pyc,, 54 | pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-39.pyc,, 55 | pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-39.pyc,, 56 | pkg_resources/_vendor/packaging/__pycache__/tags.cpython-39.pyc,, 57 | pkg_resources/_vendor/packaging/__pycache__/utils.cpython-39.pyc,, 58 | pkg_resources/_vendor/packaging/__pycache__/version.cpython-39.pyc,, 59 | pkg_resources/_vendor/packaging/_manylinux.py,sha256=XcbiXB-qcjv3bcohp6N98TMpOP4_j3m-iOA8ptK2GWY,11488 60 | pkg_resources/_vendor/packaging/_musllinux.py,sha256=_KGgY_qc7vhMGpoqss25n2hiLCNKRtvz9mCrS7gkqyc,4378 61 | pkg_resources/_vendor/packaging/_structures.py,sha256=q3eVNmbWJGG_S0Dit_S3Ao8qQqz_5PYTXFAKBZe5yr4,1431 62 | pkg_resources/_vendor/packaging/markers.py,sha256=gFSKoBTb0sKDw1v_apJy15lPr0v2mEvuEkfooTtcWx4,8496 63 | pkg_resources/_vendor/packaging/requirements.py,sha256=uJ4cjwm3_nrfHJLCcGU9mT5aw8SXfw8v1aBUD7OFuVs,4706 64 | pkg_resources/_vendor/packaging/specifiers.py,sha256=LRQ0kFsHrl5qfcFNEEJrIFYsnIHQUJXY9fIsakTrrqE,30110 65 | pkg_resources/_vendor/packaging/tags.py,sha256=lmsnGNiJ8C4D_Pf9PbM0qgbZvD9kmB9lpZBQUZa3R_Y,15699 66 | pkg_resources/_vendor/packaging/utils.py,sha256=dJjeat3BS-TYn1RrUFVwufUMasbtzLfYRoy_HXENeFQ,4200 67 | pkg_resources/_vendor/packaging/version.py,sha256=_fLRNrFrxYcHVfyo8vk9j8s6JM8N_xsSxVFr6RJyco8,14665 68 | pkg_resources/_vendor/pyparsing.py,sha256=tmrp-lu-qO1i75ZzIN5A12nKRRD1Cm4Vpk-5LR9rims,232055 69 | pkg_resources/_vendor/zipp.py,sha256=ajztOH-9I7KA_4wqDYygtHa6xUBVZgFpmZ8FE74HHHI,8425 70 | pkg_resources/extern/__init__.py,sha256=inFoCK9jn_yRFqkbNSOxOYyZD0aB3awch_xtbwIW_-Y,2426 71 | pkg_resources/extern/__pycache__/__init__.cpython-39.pyc,, 72 | setuptools-60.9.3.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 73 | setuptools-60.9.3.dist-info/LICENSE,sha256=2z8CRrH5J48VhFuZ_sR4uLUG63ZIeZNyL4xuJUKF-vg,1050 74 | setuptools-60.9.3.dist-info/METADATA,sha256=YdoPvPFkCgYd185e5NKDeC7wKoAYULKUuzTS_klv8ws,5979 75 | setuptools-60.9.3.dist-info/RECORD,, 76 | setuptools-60.9.3.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 77 | setuptools-60.9.3.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92 78 | setuptools-60.9.3.dist-info/entry_points.txt,sha256=wGnbIm7sqODfIXBH1z7YfkG4xXIks1fD-hFCtQrVaE4,2635 79 | setuptools-60.9.3.dist-info/top_level.txt,sha256=d9yL39v_W7qmKDDSH6sT4bE0j_Ls1M3P161OGgdsm4g,41 80 | setuptools/__init__.py,sha256=84lf54h_UbIkYxMn3ZqKyiaC9R86vnmIZUdTT-wxqeg,7461 81 | setuptools/__pycache__/__init__.cpython-39.pyc,, 82 | setuptools/__pycache__/_deprecation_warning.cpython-39.pyc,, 83 | setuptools/__pycache__/_entry_points.cpython-39.pyc,, 84 | setuptools/__pycache__/_imp.cpython-39.pyc,, 85 | setuptools/__pycache__/_importlib.cpython-39.pyc,, 86 | setuptools/__pycache__/_itertools.cpython-39.pyc,, 87 | setuptools/__pycache__/_path.cpython-39.pyc,, 88 | setuptools/__pycache__/_reqs.cpython-39.pyc,, 89 | setuptools/__pycache__/archive_util.cpython-39.pyc,, 90 | setuptools/__pycache__/build_meta.cpython-39.pyc,, 91 | setuptools/__pycache__/config.cpython-39.pyc,, 92 | setuptools/__pycache__/dep_util.cpython-39.pyc,, 93 | setuptools/__pycache__/depends.cpython-39.pyc,, 94 | setuptools/__pycache__/dist.cpython-39.pyc,, 95 | setuptools/__pycache__/errors.cpython-39.pyc,, 96 | setuptools/__pycache__/extension.cpython-39.pyc,, 97 | setuptools/__pycache__/glob.cpython-39.pyc,, 98 | setuptools/__pycache__/installer.cpython-39.pyc,, 99 | setuptools/__pycache__/launch.cpython-39.pyc,, 100 | setuptools/__pycache__/logging.cpython-39.pyc,, 101 | setuptools/__pycache__/monkey.cpython-39.pyc,, 102 | setuptools/__pycache__/msvc.cpython-39.pyc,, 103 | setuptools/__pycache__/namespaces.cpython-39.pyc,, 104 | setuptools/__pycache__/package_index.cpython-39.pyc,, 105 | setuptools/__pycache__/py34compat.cpython-39.pyc,, 106 | setuptools/__pycache__/sandbox.cpython-39.pyc,, 107 | setuptools/__pycache__/unicode_utils.cpython-39.pyc,, 108 | setuptools/__pycache__/version.cpython-39.pyc,, 109 | setuptools/__pycache__/wheel.cpython-39.pyc,, 110 | setuptools/__pycache__/windows_support.cpython-39.pyc,, 111 | setuptools/_deprecation_warning.py,sha256=jU9-dtfv6cKmtQJOXN8nP1mm7gONw5kKEtiPtbwnZyI,218 112 | setuptools/_distutils/__init__.py,sha256=3YtkfadGoU57VMEQFk2TNyMZVud1kDkakWQLhWg2Fm8,536 113 | setuptools/_distutils/__pycache__/__init__.cpython-39.pyc,, 114 | setuptools/_distutils/__pycache__/_collections.cpython-39.pyc,, 115 | setuptools/_distutils/__pycache__/_msvccompiler.cpython-39.pyc,, 116 | setuptools/_distutils/__pycache__/archive_util.cpython-39.pyc,, 117 | setuptools/_distutils/__pycache__/bcppcompiler.cpython-39.pyc,, 118 | setuptools/_distutils/__pycache__/ccompiler.cpython-39.pyc,, 119 | setuptools/_distutils/__pycache__/cmd.cpython-39.pyc,, 120 | setuptools/_distutils/__pycache__/config.cpython-39.pyc,, 121 | setuptools/_distutils/__pycache__/core.cpython-39.pyc,, 122 | setuptools/_distutils/__pycache__/cygwinccompiler.cpython-39.pyc,, 123 | setuptools/_distutils/__pycache__/debug.cpython-39.pyc,, 124 | setuptools/_distutils/__pycache__/dep_util.cpython-39.pyc,, 125 | setuptools/_distutils/__pycache__/dir_util.cpython-39.pyc,, 126 | setuptools/_distutils/__pycache__/dist.cpython-39.pyc,, 127 | setuptools/_distutils/__pycache__/errors.cpython-39.pyc,, 128 | setuptools/_distutils/__pycache__/extension.cpython-39.pyc,, 129 | setuptools/_distutils/__pycache__/fancy_getopt.cpython-39.pyc,, 130 | setuptools/_distutils/__pycache__/file_util.cpython-39.pyc,, 131 | setuptools/_distutils/__pycache__/filelist.cpython-39.pyc,, 132 | setuptools/_distutils/__pycache__/log.cpython-39.pyc,, 133 | setuptools/_distutils/__pycache__/msvc9compiler.cpython-39.pyc,, 134 | setuptools/_distutils/__pycache__/msvccompiler.cpython-39.pyc,, 135 | setuptools/_distutils/__pycache__/py35compat.cpython-39.pyc,, 136 | setuptools/_distutils/__pycache__/py38compat.cpython-39.pyc,, 137 | setuptools/_distutils/__pycache__/spawn.cpython-39.pyc,, 138 | setuptools/_distutils/__pycache__/sysconfig.cpython-39.pyc,, 139 | setuptools/_distutils/__pycache__/text_file.cpython-39.pyc,, 140 | setuptools/_distutils/__pycache__/unixccompiler.cpython-39.pyc,, 141 | setuptools/_distutils/__pycache__/util.cpython-39.pyc,, 142 | setuptools/_distutils/__pycache__/version.cpython-39.pyc,, 143 | setuptools/_distutils/__pycache__/versionpredicate.cpython-39.pyc,, 144 | setuptools/_distutils/_collections.py,sha256=s7zkSh7QUyJWEYSt5n10ouAZNDYvux8YCHnnY3k0wmQ,1330 145 | setuptools/_distutils/_msvccompiler.py,sha256=i8vRyUE3jqX5BLzVa3ZeLheyEoKN6KGJDJ44Tlz69ww,20809 146 | setuptools/_distutils/archive_util.py,sha256=qW-uiGwYexTvK5e-iSel_31Dshx-CqTanNPK6snwf98,8572 147 | setuptools/_distutils/bcppcompiler.py,sha256=gJqtPboJZl1llfCtjo_SVCE1DdjgK1H2rd0Vngz18QI,14885 148 | setuptools/_distutils/ccompiler.py,sha256=YbernlpGZZqKnfzZSfJ814fINca8cicZiUlBjyUPyaM,47644 149 | setuptools/_distutils/cmd.py,sha256=eco6LAGUtobLuPafuhmgKgkwRRL_WY8KJ4YeDCHpcls,18079 150 | setuptools/_distutils/command/__init__.py,sha256=2TA-rlNDlzeI-csbWHXFjGD8uOYqALMfyWOhT49nC6g,799 151 | setuptools/_distutils/command/__pycache__/__init__.cpython-39.pyc,, 152 | setuptools/_distutils/command/__pycache__/bdist.cpython-39.pyc,, 153 | setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-39.pyc,, 154 | setuptools/_distutils/command/__pycache__/bdist_msi.cpython-39.pyc,, 155 | setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-39.pyc,, 156 | setuptools/_distutils/command/__pycache__/bdist_wininst.cpython-39.pyc,, 157 | setuptools/_distutils/command/__pycache__/build.cpython-39.pyc,, 158 | setuptools/_distutils/command/__pycache__/build_clib.cpython-39.pyc,, 159 | setuptools/_distutils/command/__pycache__/build_ext.cpython-39.pyc,, 160 | setuptools/_distutils/command/__pycache__/build_py.cpython-39.pyc,, 161 | setuptools/_distutils/command/__pycache__/build_scripts.cpython-39.pyc,, 162 | setuptools/_distutils/command/__pycache__/check.cpython-39.pyc,, 163 | setuptools/_distutils/command/__pycache__/clean.cpython-39.pyc,, 164 | setuptools/_distutils/command/__pycache__/config.cpython-39.pyc,, 165 | setuptools/_distutils/command/__pycache__/install.cpython-39.pyc,, 166 | setuptools/_distutils/command/__pycache__/install_data.cpython-39.pyc,, 167 | setuptools/_distutils/command/__pycache__/install_egg_info.cpython-39.pyc,, 168 | setuptools/_distutils/command/__pycache__/install_headers.cpython-39.pyc,, 169 | setuptools/_distutils/command/__pycache__/install_lib.cpython-39.pyc,, 170 | setuptools/_distutils/command/__pycache__/install_scripts.cpython-39.pyc,, 171 | setuptools/_distutils/command/__pycache__/py37compat.cpython-39.pyc,, 172 | setuptools/_distutils/command/__pycache__/register.cpython-39.pyc,, 173 | setuptools/_distutils/command/__pycache__/sdist.cpython-39.pyc,, 174 | setuptools/_distutils/command/__pycache__/upload.cpython-39.pyc,, 175 | setuptools/_distutils/command/bdist.py,sha256=2z4eudRl_n7m3lG9leL0IYqes4bsm8c0fxfZuiafjMg,5562 176 | setuptools/_distutils/command/bdist_dumb.py,sha256=BTur9jcIppyP7Piavjfsk7YjElqvxeYO2npUyPPOekc,4913 177 | setuptools/_distutils/command/bdist_msi.py,sha256=9Q1f4Pw4PRsg54fqHVgH8FZb78-yN4D5VlDC2KugX0A,35574 178 | setuptools/_distutils/command/bdist_rpm.py,sha256=gjOw22GhDSbcq0bdq25cTb-n6HWWm0bShLQad_mkJ4k,21537 179 | setuptools/_distutils/command/bdist_wininst.py,sha256=iGlaI-VfElHOneeczKHWnSN5a10-7IMcJaXuR1mdS3c,16030 180 | setuptools/_distutils/command/build.py,sha256=1AF-dxN_NlOEyoydBz19AwpeWYPSYCZvOLJSN_PdatY,5773 181 | setuptools/_distutils/command/build_clib.py,sha256=bgVTHh28eLQA2Gkw68amApd_j7qQBX4MTI-zTvAK_J4,8022 182 | setuptools/_distutils/command/build_ext.py,sha256=KgxpopuD6sqep0LsumMH15joWih0VdbnXpYm-ETNjoE,31612 183 | setuptools/_distutils/command/build_py.py,sha256=hXesMrH_epNj6K8SUtJdipgEis3EdICKeZ8VWe_ndck,16495 184 | setuptools/_distutils/command/build_scripts.py,sha256=urdn6wPxPMW5dLqpqFkZ8dqaFG1tf9TiAao6U9LCoEI,5963 185 | setuptools/_distutils/command/check.py,sha256=brOziX0PqvmfGYSUQlSA93m8b7T350uQwrOowwgNxqE,5630 186 | setuptools/_distutils/command/clean.py,sha256=2TCt47ru4hZZM0RfVfUYj5bbpicpGLP4Qhw5jBtvp9k,2776 187 | setuptools/_distutils/command/config.py,sha256=2aTjww3PwjMB8-ZibCe4P7B-qG1hM1gn_rJXYyxRz6c,13117 188 | setuptools/_distutils/command/install.py,sha256=dsCo4g_FG6SMsX_TIJQ-qaHWbgdjupBBie4-dfm793o,30075 189 | setuptools/_distutils/command/install_data.py,sha256=YhGOAwh3gJPqF7em5XA0rmpR42z1bLh80ooElzDyUvk,2822 190 | setuptools/_distutils/command/install_egg_info.py,sha256=WijZ7cHMAkNMMCwrZ--KoqV9M2RtLouU4-qSbiCwv70,2753 191 | setuptools/_distutils/command/install_headers.py,sha256=XQ6idkbIDfr1ljXCOznuVUMvOFpHBn6cK0Wz9gIM2b4,1298 192 | setuptools/_distutils/command/install_lib.py,sha256=9AofR-MO9lAtjwwuukCptepOaJEKMZW2VHiyR5hU7HA,8397 193 | setuptools/_distutils/command/install_scripts.py,sha256=_CLUeQwGJRcY2kik7azPMn5IdtDCrjWdUvZ1khlG6ck,2017 194 | setuptools/_distutils/command/py37compat.py,sha256=qzRhhvTihqx_PZZt2ZYECxh1X3Oj255VqatzelYFAKw,671 195 | setuptools/_distutils/command/register.py,sha256=2jaq9968rt2puRVDBx1HbNiXv27uOk8idE_4lPf_3VM,11712 196 | setuptools/_distutils/command/sdist.py,sha256=qotJjAOzyhJjq2-oDImjNFrOtaSneEFDJTB-sEk1wnU,19005 197 | setuptools/_distutils/command/upload.py,sha256=BLO1w7eSAqsCjCLXtf_CRVSjwF1WmyOByGVGNdcQ8oY,7597 198 | setuptools/_distutils/config.py,sha256=dtHgblx9JhfyrKx1-J7Jlxw_f7s8ZbPFQii2UWMTZpY,4827 199 | setuptools/_distutils/core.py,sha256=0v7Emh9y0AW9o4AEjfVMhDxKzTFWFxUQn46spFSL56g,9282 200 | setuptools/_distutils/cygwinccompiler.py,sha256=eOMXcoZ_Reto4VQR_lWK-IylR1Lsi_RW0MMwCqhlvtU,14521 201 | setuptools/_distutils/debug.py,sha256=N6MrTAqK6l9SVk6tWweR108PM8Ol7qNlfyV-nHcLhsY,139 202 | setuptools/_distutils/dep_util.py,sha256=GuR9Iw_jzZRkyemJ5HX8rB_wRGxkIBcBm1qh54r7zhk,3491 203 | setuptools/_distutils/dir_util.py,sha256=UwhBOUTcV65GTwce4SPuTXR8Z8q3LYEcmttqcGb0bYo,7778 204 | setuptools/_distutils/dist.py,sha256=Biuf6ca8uiFfMScRFsYUKtb5neMPtxKxRtXn50_1f3U,50421 205 | setuptools/_distutils/errors.py,sha256=Yr6tKZGdzBoNi53vBtiq0UJ__X05CmxSdQJqOWaw6SY,3577 206 | setuptools/_distutils/extension.py,sha256=bTb3Q0CoevGKYv5dX1ls--Ln8tlB0-UEOsi9BwzlZ-s,10515 207 | setuptools/_distutils/fancy_getopt.py,sha256=OPxp2CxHi1Yp_d1D8JxW4Ueq9fC71tegQFaafh58GGU,17784 208 | setuptools/_distutils/file_util.py,sha256=0hUqfItN_x2DVihR0MHdA4KCMVCOO8VoByaFp_a6MDg,8148 209 | setuptools/_distutils/filelist.py,sha256=Z9f5hvepZnpniZ2IFmCnWIjdviWozs8sbARBhWajwoM,13407 210 | setuptools/_distutils/log.py,sha256=gZ0wCQvSMzrS_6ccOhtvceqigM77oT_GKB_nnooRIXo,1973 211 | setuptools/_distutils/msvc9compiler.py,sha256=XXs85TZO4quRKOdWUk6ylcD-1f_QAm4ceiHbiW5tH-k,30474 212 | setuptools/_distutils/msvccompiler.py,sha256=E-Fm6eLWnRr-sSRpHGOq6ezJ7YCnDuM3MV7_i9wiTRg,23531 213 | setuptools/_distutils/py35compat.py,sha256=-sk1vBIsOgH-AobjIYbK_OEjdJF_54Ul_D1EiE9XM_c,455 214 | setuptools/_distutils/py38compat.py,sha256=II7ddBxOijC7uNN4z_46HYUjwYTJYMNiLJoGTormZm0,212 215 | setuptools/_distutils/spawn.py,sha256=rbPiTTUGLIo0QtzS-n04HuzXh15ztDcUDJ94vXfheFY,3474 216 | setuptools/_distutils/sysconfig.py,sha256=MJ2B3ARCEVi0TqHjTTQVxIfKLsQ1BUF__cfT9nCjTb4,21103 217 | setuptools/_distutils/text_file.py,sha256=PsuAJeWdKJoLSV_6N6IpB5-0Pa84KzLUucJMFRazw3I,12483 218 | setuptools/_distutils/unixccompiler.py,sha256=u2Sfs6LRmqQux4nZW08GwDtoFMded6wYnkiaO2TvKC4,14538 219 | setuptools/_distutils/util.py,sha256=2WMXovrYPE-Uc06ckbV-mHgm9IKsaQ4nUdSGiK-9w_I,18537 220 | setuptools/_distutils/version.py,sha256=syRvPxuMQxnftpuIKeRE-2ELQ_ZMCwMJ-o8ie-lxdZo,13015 221 | setuptools/_distutils/versionpredicate.py,sha256=vx4ND3BtMgxFR9iZ4_t3WFa-NdIKxO8vtOd0twBppxc,5277 222 | setuptools/_entry_points.py,sha256=5rRyEuiC0tdEsoCRJ6NWii5RET134mtDtjoSTFdLCwA,1972 223 | setuptools/_imp.py,sha256=HmF91IbitRfsD5z-g4_wmcuH-RahyIONbPgiCOFgtzA,2392 224 | setuptools/_importlib.py,sha256=VItIWibvlzNI2QEko84WAmLh0b0_iVFd8TtjY0AekjY,891 225 | setuptools/_itertools.py,sha256=pZAgXNz6tRPUFnHAaKJ90xAgD0gLPemcE1396Zgz73o,675 226 | setuptools/_path.py,sha256=nMzHs8z0MXh_MsQG3ndRrWsQS1q2u_E_-0QxeVqXfkk,176 227 | setuptools/_reqs.py,sha256=ApdTOmDFyK7hbHDnAH8VwhtVD5kvnOthyMNTmrUeFXs,501 228 | setuptools/_vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 229 | setuptools/_vendor/__pycache__/__init__.cpython-39.pyc,, 230 | setuptools/_vendor/__pycache__/ordered_set.cpython-39.pyc,, 231 | setuptools/_vendor/__pycache__/pyparsing.cpython-39.pyc,, 232 | setuptools/_vendor/__pycache__/typing_extensions.cpython-39.pyc,, 233 | setuptools/_vendor/__pycache__/zipp.cpython-39.pyc,, 234 | setuptools/_vendor/importlib_metadata/__init__.py,sha256=xRXwTtvg4EAYuBotYeGawbjraQD4GFIvKgMClxApCDY,30130 235 | setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-39.pyc,, 236 | setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-39.pyc,, 237 | setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-39.pyc,, 238 | setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-39.pyc,, 239 | setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-39.pyc,, 240 | setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-39.pyc,, 241 | setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-39.pyc,, 242 | setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-39.pyc,, 243 | setuptools/_vendor/importlib_metadata/_adapters.py,sha256=B6fCi5-8mLVDFUZj3krI5nAo-mKp1dH_qIavyIyFrJs,1862 244 | setuptools/_vendor/importlib_metadata/_collections.py,sha256=CJ0OTCHIjWA0ZIVS4voORAsn2R4R2cQBEtPsZEJpASY,743 245 | setuptools/_vendor/importlib_metadata/_compat.py,sha256=cotBaMUB-2pIRZboQnWp9fEqm6Dwlypndn-EEn0bj5M,1828 246 | setuptools/_vendor/importlib_metadata/_functools.py,sha256=PsY2-4rrKX4RVeRC1oGp1lB1pmC9eKN88_f-bD9uOoA,2895 247 | setuptools/_vendor/importlib_metadata/_itertools.py,sha256=cvr_2v8BRbxcIl5x5ldfqdHjhI8Yi8s8yk50G_nm6jQ,2068 248 | setuptools/_vendor/importlib_metadata/_meta.py,sha256=_F48Hu_jFxkfKWz5wcYS8vO23qEygbVdF9r-6qh-hjE,1154 249 | setuptools/_vendor/importlib_metadata/_text.py,sha256=HCsFksZpJLeTP3NEk_ngrAeXVRRtTrtyh9eOABoRP4A,2166 250 | setuptools/_vendor/importlib_resources/__init__.py,sha256=evPm12kLgYqTm-pbzm60bOuumumT8IpBNWFp0uMyrzE,506 251 | setuptools/_vendor/importlib_resources/__pycache__/__init__.cpython-39.pyc,, 252 | setuptools/_vendor/importlib_resources/__pycache__/_adapters.cpython-39.pyc,, 253 | setuptools/_vendor/importlib_resources/__pycache__/_common.cpython-39.pyc,, 254 | setuptools/_vendor/importlib_resources/__pycache__/_compat.cpython-39.pyc,, 255 | setuptools/_vendor/importlib_resources/__pycache__/_itertools.cpython-39.pyc,, 256 | setuptools/_vendor/importlib_resources/__pycache__/_legacy.cpython-39.pyc,, 257 | setuptools/_vendor/importlib_resources/__pycache__/abc.cpython-39.pyc,, 258 | setuptools/_vendor/importlib_resources/__pycache__/readers.cpython-39.pyc,, 259 | setuptools/_vendor/importlib_resources/__pycache__/simple.cpython-39.pyc,, 260 | setuptools/_vendor/importlib_resources/_adapters.py,sha256=o51tP2hpVtohP33gSYyAkGNpLfYDBqxxYsadyiRZi1E,4504 261 | setuptools/_vendor/importlib_resources/_common.py,sha256=iIxAaQhotSh6TLLUEfL_ynU2fzEeyHMz9JcL46mUhLg,2741 262 | setuptools/_vendor/importlib_resources/_compat.py,sha256=nFBCGMvImglrqgYkb9aPgOj68-h6xbw-ca94XOv1-zs,2706 263 | setuptools/_vendor/importlib_resources/_itertools.py,sha256=WCdJ1Gs_kNFwKENyIG7TO0Y434IWCu0zjVVSsSbZwU8,884 264 | setuptools/_vendor/importlib_resources/_legacy.py,sha256=TMLkx6aEM6U8xIREPXqGZrMbUhTiPUuPl6ESD7RdYj4,3494 265 | setuptools/_vendor/importlib_resources/abc.py,sha256=MvTJJXajbl74s36Gyeesf76egtbFnh-TMtzQMVhFWXo,3886 266 | setuptools/_vendor/importlib_resources/readers.py,sha256=_9QLGQ5AzrED3PY8S2Zf8V6yLR0-nqqYqtQmgleDJzY,3566 267 | setuptools/_vendor/importlib_resources/simple.py,sha256=xt0qhXbwt3bZ86zuaaKbTiE9A0mDbwu0saRjUq_pcY0,2836 268 | setuptools/_vendor/jaraco/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 269 | setuptools/_vendor/jaraco/__pycache__/__init__.cpython-39.pyc,, 270 | setuptools/_vendor/jaraco/__pycache__/context.cpython-39.pyc,, 271 | setuptools/_vendor/jaraco/__pycache__/functools.cpython-39.pyc,, 272 | setuptools/_vendor/jaraco/context.py,sha256=7X1tpCLc5EN45iWGzGcsH0Unx62REIkvtRvglj0SiUA,5420 273 | setuptools/_vendor/jaraco/functools.py,sha256=ap1qoXaNABOx897366NTMEd2objrqAoSO1zuxZPjcmM,13512 274 | setuptools/_vendor/jaraco/text/__init__.py,sha256=KfFGMerrkN_0V0rgtJVx-9dHt3tW7i_uJypjwEcLtC0,15517 275 | setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-39.pyc,, 276 | setuptools/_vendor/more_itertools/__init__.py,sha256=C7sXffHTXM3P-iaLPPfqfmDoxOflQMJLcM7ed9p3jak,82 277 | setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-39.pyc,, 278 | setuptools/_vendor/more_itertools/__pycache__/more.cpython-39.pyc,, 279 | setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-39.pyc,, 280 | setuptools/_vendor/more_itertools/more.py,sha256=0rB_mibFR51sq33UlAI_bWfaNdsYNnJr1v6S0CaW7QA,117959 281 | setuptools/_vendor/more_itertools/recipes.py,sha256=UkNkrsZyqiwgLHANBTmvMhCvaNSvSNYhyOpz_Jc55DY,16256 282 | setuptools/_vendor/ordered_set.py,sha256=dbaCcs27dyN9gnMWGF5nA_BrVn6Q-NrjKYJpV9_fgBs,15130 283 | setuptools/_vendor/packaging/__about__.py,sha256=ugASIO2w1oUyH8_COqQ2X_s0rDhjbhQC3yJocD03h2c,661 284 | setuptools/_vendor/packaging/__init__.py,sha256=b9Kk5MF7KxhhLgcDmiUWukN-LatWFxPdNug0joPhHSk,497 285 | setuptools/_vendor/packaging/__pycache__/__about__.cpython-39.pyc,, 286 | setuptools/_vendor/packaging/__pycache__/__init__.cpython-39.pyc,, 287 | setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-39.pyc,, 288 | setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-39.pyc,, 289 | setuptools/_vendor/packaging/__pycache__/_structures.cpython-39.pyc,, 290 | setuptools/_vendor/packaging/__pycache__/markers.cpython-39.pyc,, 291 | setuptools/_vendor/packaging/__pycache__/requirements.cpython-39.pyc,, 292 | setuptools/_vendor/packaging/__pycache__/specifiers.cpython-39.pyc,, 293 | setuptools/_vendor/packaging/__pycache__/tags.cpython-39.pyc,, 294 | setuptools/_vendor/packaging/__pycache__/utils.cpython-39.pyc,, 295 | setuptools/_vendor/packaging/__pycache__/version.cpython-39.pyc,, 296 | setuptools/_vendor/packaging/_manylinux.py,sha256=XcbiXB-qcjv3bcohp6N98TMpOP4_j3m-iOA8ptK2GWY,11488 297 | setuptools/_vendor/packaging/_musllinux.py,sha256=_KGgY_qc7vhMGpoqss25n2hiLCNKRtvz9mCrS7gkqyc,4378 298 | setuptools/_vendor/packaging/_structures.py,sha256=q3eVNmbWJGG_S0Dit_S3Ao8qQqz_5PYTXFAKBZe5yr4,1431 299 | setuptools/_vendor/packaging/markers.py,sha256=lihRgqpZjLM-JW-vxlLPqU3kmVe79g9vypy1kxmTRuQ,8493 300 | setuptools/_vendor/packaging/requirements.py,sha256=Opd0FjqgdEiWkzBLyo1oLU0Dj01uIFwTAnAJQrr6j2A,4700 301 | setuptools/_vendor/packaging/specifiers.py,sha256=LRQ0kFsHrl5qfcFNEEJrIFYsnIHQUJXY9fIsakTrrqE,30110 302 | setuptools/_vendor/packaging/tags.py,sha256=lmsnGNiJ8C4D_Pf9PbM0qgbZvD9kmB9lpZBQUZa3R_Y,15699 303 | setuptools/_vendor/packaging/utils.py,sha256=dJjeat3BS-TYn1RrUFVwufUMasbtzLfYRoy_HXENeFQ,4200 304 | setuptools/_vendor/packaging/version.py,sha256=_fLRNrFrxYcHVfyo8vk9j8s6JM8N_xsSxVFr6RJyco8,14665 305 | setuptools/_vendor/pyparsing.py,sha256=tmrp-lu-qO1i75ZzIN5A12nKRRD1Cm4Vpk-5LR9rims,232055 306 | setuptools/_vendor/typing_extensions.py,sha256=1uqi_RSlI7gos4eJB_NEV3d5wQwzTUQHd3_jrkbTo8Q,87149 307 | setuptools/_vendor/zipp.py,sha256=ajztOH-9I7KA_4wqDYygtHa6xUBVZgFpmZ8FE74HHHI,8425 308 | setuptools/archive_util.py,sha256=ji0lQ5itrhtfagixEsIJiTwWfl-KKD9cLX2nGMk9ggw,7070 309 | setuptools/build_meta.py,sha256=Rp40H4rz20WB0GUz7sGshN9mPx3M18zo7aW5hwejie0,10902 310 | setuptools/cli-32.exe,sha256=dfEuovMNnA2HLa3jRfMPVi5tk4R7alCbpTvuxtCyw0Y,65536 311 | setuptools/cli-64.exe,sha256=KLABu5pyrnokJCv6skjXZ6GsXeyYHGcqOUT3oHI3Xpo,74752 312 | setuptools/cli-arm64.exe,sha256=o9amxowudZ98NvNWh_a2DRY8LhoIRqTAekxABqltiMc,137216 313 | setuptools/cli.exe,sha256=dfEuovMNnA2HLa3jRfMPVi5tk4R7alCbpTvuxtCyw0Y,65536 314 | setuptools/command/__init__.py,sha256=e-8TJOikUe3St0fw2b2p9u5EDdSxl5zHUBJJKifbcQ8,217 315 | setuptools/command/__pycache__/__init__.cpython-39.pyc,, 316 | setuptools/command/__pycache__/alias.cpython-39.pyc,, 317 | setuptools/command/__pycache__/bdist_egg.cpython-39.pyc,, 318 | setuptools/command/__pycache__/bdist_rpm.cpython-39.pyc,, 319 | setuptools/command/__pycache__/build_clib.cpython-39.pyc,, 320 | setuptools/command/__pycache__/build_ext.cpython-39.pyc,, 321 | setuptools/command/__pycache__/build_py.cpython-39.pyc,, 322 | setuptools/command/__pycache__/develop.cpython-39.pyc,, 323 | setuptools/command/__pycache__/dist_info.cpython-39.pyc,, 324 | setuptools/command/__pycache__/easy_install.cpython-39.pyc,, 325 | setuptools/command/__pycache__/egg_info.cpython-39.pyc,, 326 | setuptools/command/__pycache__/install.cpython-39.pyc,, 327 | setuptools/command/__pycache__/install_egg_info.cpython-39.pyc,, 328 | setuptools/command/__pycache__/install_lib.cpython-39.pyc,, 329 | setuptools/command/__pycache__/install_scripts.cpython-39.pyc,, 330 | setuptools/command/__pycache__/py36compat.cpython-39.pyc,, 331 | setuptools/command/__pycache__/register.cpython-39.pyc,, 332 | setuptools/command/__pycache__/rotate.cpython-39.pyc,, 333 | setuptools/command/__pycache__/saveopts.cpython-39.pyc,, 334 | setuptools/command/__pycache__/sdist.cpython-39.pyc,, 335 | setuptools/command/__pycache__/setopt.cpython-39.pyc,, 336 | setuptools/command/__pycache__/test.cpython-39.pyc,, 337 | setuptools/command/__pycache__/upload.cpython-39.pyc,, 338 | setuptools/command/__pycache__/upload_docs.cpython-39.pyc,, 339 | setuptools/command/alias.py,sha256=1sLQxZcNh6dDQpDmm4G7UGGTol83nY1NTPmNBbm2siI,2381 340 | setuptools/command/bdist_egg.py,sha256=QEIu1AkgS02j6ejonJY7kwGp6LNxfMeYZ3sxkd55ftA,16623 341 | setuptools/command/bdist_rpm.py,sha256=PxrgoHPNaw2Pw2qNjjHDPC-Ay_IaDbCqP3d_5N-cj2A,1182 342 | setuptools/command/build_clib.py,sha256=fWHSFGkk10VCddBWCszvNhowbG9Z9CZXVjQ2uSInoOs,4415 343 | setuptools/command/build_ext.py,sha256=SNK042HfB2ezlDQbSVRGFqI1IM5A4AsjU1wpV3fgskE,13212 344 | setuptools/command/build_py.py,sha256=c90V1nVPEtYkdye-xvo-B48V5RLvSgD8JBMfPtUbtYw,8751 345 | setuptools/command/develop.py,sha256=5_Ss7ENd1_B_jVMY1tF5UV_y1Xu6jbVzAPG8oKeluGA,7012 346 | setuptools/command/dist_info.py,sha256=5t6kOfrdgALT-P3ogss6PF9k-Leyesueycuk3dUyZnI,960 347 | setuptools/command/easy_install.py,sha256=JvgOS1I6PjMdBl8XRGlom1y3B9GOiwzsGd5IU7OHW9k,86193 348 | setuptools/command/egg_info.py,sha256=KePN5k9NfkdmMhi-0cZMVbs-bnDdO--j7-1x-NavVlU,25703 349 | setuptools/command/install.py,sha256=UynjFBgRyyHrDZRVAmXrXG0vChJAMx-sxnOO3JoAzVo,4906 350 | setuptools/command/install_egg_info.py,sha256=pgZ64m_-kmtx3QISHN_kRtMiZC_Y8x1Nr1j38jXEbXQ,2226 351 | setuptools/command/install_lib.py,sha256=Uz42McsyHZAjrB6cw9E7Bz0xsaTbzxnM1PI9CBhiPtE,3875 352 | setuptools/command/install_scripts.py,sha256=APFFpt_lYUEo-viMtpXr-Hkwycwq8knTxSTNUu_TwHo,2612 353 | setuptools/command/launcher manifest.xml,sha256=xlLbjWrB01tKC0-hlVkOKkiSPbzMml2eOPtJ_ucCnbE,628 354 | setuptools/command/py36compat.py,sha256=7yLWzQj179Enx3pJ8V1cDDCzeLMFMd9XJXlK-iZTq5Y,4946 355 | setuptools/command/register.py,sha256=kk3DxXCb5lXTvqnhfwx2g6q7iwbUmgTyXUCaBooBOUk,468 356 | setuptools/command/rotate.py,sha256=SvsQPasezIojPjvMnfkqzh8P0U0tCj0daczF8uc3NQM,2128 357 | setuptools/command/saveopts.py,sha256=za7QCBcQimKKriWcoCcbhxPjUz30gSB74zuTL47xpP4,658 358 | setuptools/command/sdist.py,sha256=kTpUQpmT9XSE6wR3ClCNCH7eD7eNAeywIISYIRIYOpU,6422 359 | setuptools/command/setopt.py,sha256=okxhqD1NM1nQlbSVDCNv6P7Y7g680sc2r-tUW7wPH1Y,5086 360 | setuptools/command/test.py,sha256=j3NeJ3_ADgkCvWHfuvMrZmSFoTQFngp9Lg3XYNkyZlg,8133 361 | setuptools/command/upload.py,sha256=XT3YFVfYPAmA5qhGg0euluU98ftxRUW-PzKcODMLxUs,462 362 | setuptools/command/upload_docs.py,sha256=idT7bhLNblM_I9STmIF_psXRIooDN43gq0QIxt2GDpA,7220 363 | setuptools/config.py,sha256=O-T_28163qkEeaX8bLgqJLuOLYur15cC2_xpA0RENfM,23153 364 | setuptools/dep_util.py,sha256=BDx1BkzNQntvAB4alypHbW5UVBzjqths000PrUL4Zqc,949 365 | setuptools/depends.py,sha256=QYQIadr5DwLxPzkErhNt5hmRhvGhWxoXZMRXCm_jcQ0,5499 366 | setuptools/dist.py,sha256=TdhjsMb1QrRXkmgGiQAc5PSOrDZg0G45A67s4OFxMeU,44087 367 | setuptools/errors.py,sha256=t4Rm85eXm71Ti0-PO1gAQMRK3V7NN3x1tcbcw0-xGSI,1555 368 | setuptools/extension.py,sha256=wOWVz6qk-B3qx-O3vNp2gUZ2ItDEoB4MXIDNU_HCdiU,1675 369 | setuptools/extern/__init__.py,sha256=a3PZqKDn2rmMHybkWEtO0i8eGtGNoAu1HkULZlZRXdg,2503 370 | setuptools/extern/__pycache__/__init__.cpython-39.pyc,, 371 | setuptools/glob.py,sha256=1oZjbfjAHSXbgdhSuR6YGU8jKob9L8NtEmBYqcPTLYk,4873 372 | setuptools/gui-32.exe,sha256=XBr0bHMA6Hpz2s9s9Bzjl-PwXfa9nH4ie0rFn4V2kWA,65536 373 | setuptools/gui-64.exe,sha256=aYKMhX1IJLn4ULHgWX0sE0yREUt6B3TEHf_jOw6yNyE,75264 374 | setuptools/gui-arm64.exe,sha256=TEFnOKDi-mq3ZszxqbCoCXTnM_lhUWjdIqBpr6fVs40,137728 375 | setuptools/gui.exe,sha256=XBr0bHMA6Hpz2s9s9Bzjl-PwXfa9nH4ie0rFn4V2kWA,65536 376 | setuptools/installer.py,sha256=s6DQfsoICBJxbUqbduhOJtl1oG0S4yegRCg3EAs0i3M,3824 377 | setuptools/launch.py,sha256=TyPT-Ic1T2EnYvGO26gfNRP4ysBlrhpbRjQxWsiO414,812 378 | setuptools/logging.py,sha256=npS_AaQd7a-4CVqxC8CKKkwQqLNvSH__pPO94BOB8TY,1148 379 | setuptools/monkey.py,sha256=0e3HdVKXHL415O7np-AUqhEFXPPuDdJKbI47chQ_DE4,5217 380 | setuptools/msvc.py,sha256=3LLt938e6OR7wWPzIvCQu7LCWZSIKqoKV6w3r8jV3kY,50561 381 | setuptools/namespaces.py,sha256=PMqGVPXPYQgjUTvEg9bGccRAkIODrQ6NmsDg_fwErwI,3093 382 | setuptools/package_index.py,sha256=iajBWGn6Kh6ti4xaiy5fmvG6_SlqLxJ1jV-RK9wnCHs,40055 383 | setuptools/py34compat.py,sha256=KYOd6ybRxjBW8NJmYD8t_UyyVmysppFXqHpFLdslGXU,245 384 | setuptools/sandbox.py,sha256=mR83i-mu-ZUU_7TaMgYCeRSyzkqv8loJ_GR9xhS2DDw,14348 385 | setuptools/script (dev).tmpl,sha256=RUzQzCQUaXtwdLtYHWYbIQmOaES5Brqq1FvUA_tu-5I,218 386 | setuptools/script.tmpl,sha256=WGTt5piezO27c-Dbx6l5Q4T3Ff20A5z7872hv3aAhYY,138 387 | setuptools/unicode_utils.py,sha256=aOOFo4JGwAsiBttGYDsqFS7YqWQeZ2j6DWiCuctR_00,941 388 | setuptools/version.py,sha256=og_cuZQb0QI6ukKZFfZWPlr1HgJBPPn2vO2m_bI9ZTE,144 389 | setuptools/wheel.py,sha256=4yoNrbyYshwcbLyV5hKksVJNnIXWV2pde_4sUYaxAcY,8274 390 | setuptools/windows_support.py,sha256=5GrfqSP2-dLGJoZTq2g6dCKkyQxxa2n5IQiXlJCoYEE,714 391 | -------------------------------------------------------------------------------- /WindowsMedicator/setuptools-60.9.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/setuptools-60.9.3.dist-info/REQUESTED -------------------------------------------------------------------------------- /WindowsMedicator/setuptools-60.9.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /WindowsMedicator/setuptools-60.9.3.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [distutils.commands] 2 | alias = setuptools.command.alias:alias 3 | bdist_egg = setuptools.command.bdist_egg:bdist_egg 4 | bdist_rpm = setuptools.command.bdist_rpm:bdist_rpm 5 | build_clib = setuptools.command.build_clib:build_clib 6 | build_ext = setuptools.command.build_ext:build_ext 7 | build_py = setuptools.command.build_py:build_py 8 | develop = setuptools.command.develop:develop 9 | dist_info = setuptools.command.dist_info:dist_info 10 | easy_install = setuptools.command.easy_install:easy_install 11 | egg_info = setuptools.command.egg_info:egg_info 12 | install = setuptools.command.install:install 13 | install_egg_info = setuptools.command.install_egg_info:install_egg_info 14 | install_lib = setuptools.command.install_lib:install_lib 15 | install_scripts = setuptools.command.install_scripts:install_scripts 16 | rotate = setuptools.command.rotate:rotate 17 | saveopts = setuptools.command.saveopts:saveopts 18 | sdist = setuptools.command.sdist:sdist 19 | setopt = setuptools.command.setopt:setopt 20 | test = setuptools.command.test:test 21 | upload_docs = setuptools.command.upload_docs:upload_docs 22 | 23 | [distutils.setup_keywords] 24 | dependency_links = setuptools.dist:assert_string_list 25 | eager_resources = setuptools.dist:assert_string_list 26 | entry_points = setuptools.dist:check_entry_points 27 | exclude_package_data = setuptools.dist:check_package_data 28 | extras_require = setuptools.dist:check_extras 29 | include_package_data = setuptools.dist:assert_bool 30 | install_requires = setuptools.dist:check_requirements 31 | namespace_packages = setuptools.dist:check_nsp 32 | package_data = setuptools.dist:check_package_data 33 | packages = setuptools.dist:check_packages 34 | python_requires = setuptools.dist:check_specifier 35 | setup_requires = setuptools.dist:check_requirements 36 | test_loader = setuptools.dist:check_importable 37 | test_runner = setuptools.dist:check_importable 38 | test_suite = setuptools.dist:check_test_suite 39 | tests_require = setuptools.dist:check_requirements 40 | use_2to3 = setuptools.dist:invalid_unless_false 41 | zip_safe = setuptools.dist:assert_bool 42 | 43 | [egg_info.writers] 44 | PKG-INFO = setuptools.command.egg_info:write_pkg_info 45 | dependency_links.txt = setuptools.command.egg_info:overwrite_arg 46 | depends.txt = setuptools.command.egg_info:warn_depends_obsolete 47 | eager_resources.txt = setuptools.command.egg_info:overwrite_arg 48 | entry_points.txt = setuptools.command.egg_info:write_entries 49 | namespace_packages.txt = setuptools.command.egg_info:overwrite_arg 50 | requires.txt = setuptools.command.egg_info:write_requirements 51 | top_level.txt = setuptools.command.egg_info:write_toplevel_names 52 | 53 | [setuptools.finalize_distribution_options] 54 | keywords = setuptools.dist:Distribution._finalize_setup_keywords 55 | parent_finalize = setuptools.dist:_Distribution.finalize_options 56 | -------------------------------------------------------------------------------- /WindowsMedicator/setuptools-60.9.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _distutils_hack 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /WindowsMedicator/ucrtbase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/ucrtbase.dll -------------------------------------------------------------------------------- /WindowsMedicator/unicodedata.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/unicodedata.pyd -------------------------------------------------------------------------------- /WindowsMedicator/wheel-0.37.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /WindowsMedicator/wheel-0.37.1.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- 1 | "wheel" copyright (c) 2012-2014 Daniel Holth and 2 | contributors. 3 | 4 | The MIT License 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a 7 | copy of this software and associated documentation files (the "Software"), 8 | to deal in the Software without restriction, including without limitation 9 | the rights to use, copy, modify, merge, publish, distribute, sublicense, 10 | and/or sell copies of the Software, and to permit persons to whom the 11 | Software is furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included 14 | in all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19 | THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /WindowsMedicator/wheel-0.37.1.dist-info/METADATA: -------------------------------------------------------------------------------- 1 | Metadata-Version: 2.1 2 | Name: wheel 3 | Version: 0.37.1 4 | Summary: A built-package format for Python 5 | Home-page: https://github.com/pypa/wheel 6 | Author: Daniel Holth 7 | Author-email: dholth@fastmail.fm 8 | Maintainer: Alex Grönholm 9 | Maintainer-email: alex.gronholm@nextday.fi 10 | License: MIT 11 | Project-URL: Documentation, https://wheel.readthedocs.io/ 12 | Project-URL: Changelog, https://wheel.readthedocs.io/en/stable/news.html 13 | Project-URL: Issue Tracker, https://github.com/pypa/wheel/issues 14 | Keywords: wheel,packaging 15 | Platform: UNKNOWN 16 | Classifier: Development Status :: 5 - Production/Stable 17 | Classifier: Intended Audience :: Developers 18 | Classifier: Topic :: System :: Archiving :: Packaging 19 | Classifier: License :: OSI Approved :: MIT License 20 | Classifier: Programming Language :: Python 21 | Classifier: Programming Language :: Python :: 2 22 | Classifier: Programming Language :: Python :: 2.7 23 | Classifier: Programming Language :: Python :: 3 24 | Classifier: Programming Language :: Python :: 3.5 25 | Classifier: Programming Language :: Python :: 3.6 26 | Classifier: Programming Language :: Python :: 3.7 27 | Classifier: Programming Language :: Python :: 3.8 28 | Classifier: Programming Language :: Python :: 3.9 29 | Classifier: Programming Language :: Python :: 3.10 30 | Requires-Python: !=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7 31 | Provides-Extra: test 32 | Requires-Dist: pytest (>=3.0.0) ; extra == 'test' 33 | Requires-Dist: pytest-cov ; extra == 'test' 34 | 35 | wheel 36 | ===== 37 | 38 | This library is the reference implementation of the Python wheel packaging 39 | standard, as defined in `PEP 427`_. 40 | 41 | It has two different roles: 42 | 43 | #. A setuptools_ extension for building wheels that provides the 44 | ``bdist_wheel`` setuptools command 45 | #. A command line tool for working with wheel files 46 | 47 | It should be noted that wheel is **not** intended to be used as a library, and 48 | as such there is no stable, public API. 49 | 50 | .. _PEP 427: https://www.python.org/dev/peps/pep-0427/ 51 | .. _setuptools: https://pypi.org/project/setuptools/ 52 | 53 | Documentation 54 | ------------- 55 | 56 | The documentation_ can be found on Read The Docs. 57 | 58 | .. _documentation: https://wheel.readthedocs.io/ 59 | 60 | Code of Conduct 61 | --------------- 62 | 63 | Everyone interacting in the wheel project's codebases, issue trackers, chat 64 | rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_. 65 | 66 | .. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /WindowsMedicator/wheel-0.37.1.dist-info/RECORD: -------------------------------------------------------------------------------- 1 | ../../Scripts/wheel.exe,sha256=JPCpRM-D8_RDqP3GdSgUIR8FmECIjHV-u8sMPn8dWFk,106876 2 | wheel-0.37.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 3 | wheel-0.37.1.dist-info/LICENSE.txt,sha256=zKniDGrx_Pv2lAjzd3aShsvuvN7TNhAMm0o_NfvmNeQ,1125 4 | wheel-0.37.1.dist-info/METADATA,sha256=YmebdXwPQlF98dp9V-Cy4BlE-M-fFM-J9cPVVvlSUi8,2328 5 | wheel-0.37.1.dist-info/RECORD,, 6 | wheel-0.37.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 7 | wheel-0.37.1.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110 8 | wheel-0.37.1.dist-info/entry_points.txt,sha256=N8HbYFST3yrNQYeB2wXWBEPUhFsEtKNRPaCFGJPyqyc,108 9 | wheel-0.37.1.dist-info/top_level.txt,sha256=HxSBIbgEstMPe4eFawhA66Mq-QYHMopXVoAncfjb_1c,6 10 | wheel/__init__.py,sha256=yLOqsEZUPaM3VNKOMxQraLgCCyF8q3k10KY4C1Hi_Lo,23 11 | wheel/__main__.py,sha256=lF-YLO4hdQmoWuh4eWZd8YL1U95RSdm76sNLBXa0vjE,417 12 | wheel/__pycache__/__init__.cpython-39.pyc,, 13 | wheel/__pycache__/__main__.cpython-39.pyc,, 14 | wheel/__pycache__/bdist_wheel.cpython-39.pyc,, 15 | wheel/__pycache__/macosx_libfile.cpython-39.pyc,, 16 | wheel/__pycache__/metadata.cpython-39.pyc,, 17 | wheel/__pycache__/pkginfo.cpython-39.pyc,, 18 | wheel/__pycache__/util.cpython-39.pyc,, 19 | wheel/__pycache__/wheelfile.cpython-39.pyc,, 20 | wheel/bdist_wheel.py,sha256=2vfv3g_b8BvZ5Do9bpLEBdu9dQEcvoMQ1flXpKYFJDU,19075 21 | wheel/cli/__init__.py,sha256=GWSoGUpRabTf8bk3FsNTPrc5Fsr8YOv2dX55iY2W7eY,2572 22 | wheel/cli/__pycache__/__init__.cpython-39.pyc,, 23 | wheel/cli/__pycache__/convert.cpython-39.pyc,, 24 | wheel/cli/__pycache__/pack.cpython-39.pyc,, 25 | wheel/cli/__pycache__/unpack.cpython-39.pyc,, 26 | wheel/cli/convert.py,sha256=7F4vj23A2OghDDWn9gX2V-_TeXMza1a5nIejmFGEUJM,9498 27 | wheel/cli/pack.py,sha256=Bfq6KrHicZKrpbktkreeRxIaWwBozUP99JQy2D8-ddY,3364 28 | wheel/cli/unpack.py,sha256=0VWzT7U_xyenTPwEVavxqvdee93GPvAFHnR3Uu91aRc,673 29 | wheel/macosx_libfile.py,sha256=Xvp-IrFyRJ9RThIrPxfEpVCDGfljJPWRTZiyopk70hI,15930 30 | wheel/metadata.py,sha256=b3kPhZn2w2D9wengltX5nGIZQ3ERUOQ5U-K5vHKPdeg,4344 31 | wheel/pkginfo.py,sha256=GR76kupQzn1x9sKDaXuE6B6FsZ4OkfRtG7pndlXPvQ4,1257 32 | wheel/util.py,sha256=mnNZkJCi9DHLI_q4lTudoD0mW97h_AoAWl7prNPLXJc,938 33 | wheel/vendored/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 34 | wheel/vendored/__pycache__/__init__.cpython-39.pyc,, 35 | wheel/vendored/packaging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 36 | wheel/vendored/packaging/__pycache__/__init__.cpython-39.pyc,, 37 | wheel/vendored/packaging/__pycache__/_typing.cpython-39.pyc,, 38 | wheel/vendored/packaging/__pycache__/tags.cpython-39.pyc,, 39 | wheel/vendored/packaging/_typing.py,sha256=x59EhQ57TMT-kTRyLZV25HZvYGGwbucTo6iKh_O0tMw,1812 40 | wheel/vendored/packaging/tags.py,sha256=noDvA--vVKVKlg49XMuZ5_Epi85jW7gMOKfiGuJ2sqU,29560 41 | wheel/wheelfile.py,sha256=NyH8VcFLvu7jUwH6r4KoL_U45OKFVpUyJ5Z7gRAI_Lc,7574 42 | -------------------------------------------------------------------------------- /WindowsMedicator/wheel-0.37.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/wheel-0.37.1.dist-info/REQUESTED -------------------------------------------------------------------------------- /WindowsMedicator/wheel-0.37.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /WindowsMedicator/wheel-0.37.1.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | wheel = wheel.cli:main 3 | 4 | [distutils.commands] 5 | bdist_wheel = wheel.bdist_wheel:bdist_wheel 6 | 7 | -------------------------------------------------------------------------------- /WindowsMedicator/wheel-0.37.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wheel 2 | -------------------------------------------------------------------------------- /WindowsMedicator/win32api.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/win32api.pyd -------------------------------------------------------------------------------- /WindowsMedicator/win32pdh.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/WindowsMedicator/win32pdh.pyd -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | colorama -------------------------------------------------------------------------------- /src/AdminPrivileges.py: -------------------------------------------------------------------------------- 1 | import os 2 | import ctypes 3 | import platform 4 | from colorama.ansi import Fore 5 | 6 | 7 | 8 | 9 | 10 | """ This Class Needs Access to System For Scanning Your System's Health """ 11 | class RunProgramAsAdmin: 12 | def IsAdmin(): 13 | if (platform.system()[0].upper() in ["W"]): 14 | try: 15 | return ctypes.windll.shell32.IsUserAnAdmin() 16 | except: 17 | return False 18 | 19 | 20 | 21 | 22 | class ScriptHeaders: 23 | def ShowHeaders(): 24 | os.system(command="mode 72,45") 25 | ASCII = """{0} 26 | /////////////. ,///////////// 27 | /////////////////// ./////////////////// 28 | /////////////////////// /////////////////////// 29 | ///////////////////////////////////////////////// 30 | /////////////////// //////////////////////////// 31 | ////////////////// //////. /////////////////// 32 | ///////////////// ,//// .///////////////// 33 | //////////////// /// ,///////////////. 34 | .///////////// , / , 35 | ,,, ,,, 36 | ,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,. 37 | ,,,,,,,,,,,,, ,,,,,,,,,,,,,, 38 | ,,,,,,,,,,, ,,,,,,,,,,,, 39 | ,,,,,,,,,,,,,,,,,,,,, 40 | ,,,,,,,,,,,,,,, 41 | ,,,,,,,,,, 42 | ,,,,, 43 | ,,, {1} Version : 3.0.0 44 | 45 | """.format(Fore.GREEN , Fore.WHITE) 46 | print(f"{ASCII}\n") 47 | print(f"{Fore.MAGENTA}[{Fore.GREEN}+{Fore.MAGENTA}] {Fore.WHITE}Windows Medicator Created By shervinbdndev\n\n\n") 48 | print(f"\t{Fore.GREEN}[ Safe Zone ]") 49 | print(f"{Fore.MAGENTA}[{Fore.GREEN}1{Fore.MAGENTA}] {Fore.CYAN}(FIX) {Fore.WHITE}Check System's Health") 50 | print(f"{Fore.MAGENTA}[{Fore.GREEN}2{Fore.MAGENTA}] {Fore.CYAN}(FIX) {Fore.WHITE}Scan System's Health") 51 | print(f"{Fore.MAGENTA}[{Fore.GREEN}3{Fore.MAGENTA}] {Fore.CYAN}(FIX) {Fore.WHITE}Restore System's Health") 52 | print(f"{Fore.MAGENTA}[{Fore.GREEN}4{Fore.MAGENTA}] {Fore.CYAN}(FIX) {Fore.WHITE}Repair install.esd Image") 53 | print(f"{Fore.MAGENTA}[{Fore.GREEN}5{Fore.MAGENTA}] {Fore.CYAN}(FIX) {Fore.WHITE}Repair windows Installation Image") 54 | print(f"{Fore.MAGENTA}[{Fore.GREEN}6{Fore.MAGENTA}] {Fore.CYAN}(FIX) {Fore.WHITE}Check System's Disks") 55 | print(f"{Fore.MAGENTA}[{Fore.GREEN}7{Fore.MAGENTA}] {Fore.CYAN}(FIX) {Fore.WHITE}Internet Connection Problem") 56 | print(f"{Fore.MAGENTA}[{Fore.GREEN}8{Fore.MAGENTA}] {Fore.CYAN}(FIX) {Fore.WHITE}Enable Linux Features On Windows\n\n") 57 | print(f"\t{Fore.RED}[ Danger Zone ]") 58 | print(f"{Fore.MAGENTA}[{Fore.GREEN}9{Fore.MAGENTA}] {Fore.YELLOW}(DANGER) {Fore.WHITE}Uninstall & Delete All Windows Builtins Apps") 59 | print(f"{Fore.MAGENTA}[{Fore.GREEN}10{Fore.MAGENTA}] {Fore.RED}(DANGER) {Fore.WHITE}Reset Factory PC\n\n") 60 | print(f"{Fore.MAGENTA}[{Fore.GREEN}00{Fore.MAGENTA}] {Fore.WHITE}Exit") -------------------------------------------------------------------------------- /src/WindowsMedicator.py: -------------------------------------------------------------------------------- 1 | """ Admin Privileges Class """ 2 | from AdminPrivileges import (RunProgramAsAdmin , ScriptHeaders) 3 | 4 | """ Base Libraries """ 5 | import os 6 | import sys 7 | import ctypes 8 | import subprocess 9 | from colorama.ansi import Fore 10 | from colorama.initialise import init 11 | from requests.exceptions import ConnectionError 12 | 13 | 14 | 15 | init(autoreset=False , convert=True , strip=None) 16 | 17 | 18 | 19 | 20 | 21 | """ Main Script """ 22 | class MainScript(RunProgramAsAdmin , ScriptHeaders): 23 | if (RunProgramAsAdmin.IsAdmin()): 24 | while True: 25 | ScriptHeaders.ShowHeaders() 26 | userInput : str = str(input("\n[~] Choose an Operation : ")) 27 | if (userInput == "1"): 28 | print(f"\n{Fore.GREEN}Starting Scan . . .\n") 29 | print(f"{Fore.YELLOW}Do Not Turn off Your PC While Running The Application !{Fore.WHITE}") 30 | try: 31 | subprocess.call(args=['DISM' , '/Online' , '/Cleanup-Image' , '/CheckHealth']) 32 | print(f"\n{Fore.GREEN}Finished Scanning .{Fore.WHITE}\n") 33 | sUserInput : str = str(input("[~] Would You Like To Continue Scanning?(y/n) ")) 34 | if (sUserInput.startswith('y')): 35 | os.system(command='cls') 36 | continue 37 | elif (sUserInput.startswith('n')): 38 | break 39 | except KeyboardInterrupt as KI: 40 | raise f"Operation Canceled {KI}" 41 | continue 42 | elif (userInput == "2"): 43 | print(f"\n{Fore.GREEN}Starting Scan . . .\n") 44 | print(f"{Fore.YELLOW}Do Not Turn off Your PC While Running The Application !{Fore.WHITE}") 45 | try: 46 | subprocess.call(args=['DISM' , '/Online' , '/Cleanup-Image' , '/ScanHealth']) 47 | print(f"\n{Fore.GREEN}Finished Scanning .{Fore.WHITE}\n") 48 | sUserInput : str = str(input("[~] Would You Like To Continue Scanning?(y/n) ")) 49 | if (sUserInput.startswith('y')): 50 | os.system(command='cls') 51 | continue 52 | elif (sUserInput.startswith('n')): 53 | break 54 | except KeyboardInterrupt as KI: 55 | raise f"Operation Canceled {KI}" 56 | continue 57 | elif (userInput == "3"): 58 | print(f"\n{Fore.GREEN}Starting Scan . . .\n") 59 | print(f"{Fore.YELLOW}Do Not Turn off Your PC While Running The Application !{Fore.WHITE}") 60 | try: 61 | subprocess.call(args=['DISM' , '/Online' , '/Cleanup-Image' , '/RestoreHealth' , '/Source:repairSource\install.wim']) 62 | print(f"\n{Fore.GREEN}Finished Scanning .{Fore.WHITE}\n") 63 | sUserInput : str = str(input("[~] Would You Like To Continue Scanning?(y/n) ")) 64 | if (sUserInput.startswith('y')): 65 | os.system(command='cls') 66 | continue 67 | elif (sUserInput.startswith('n')): 68 | break 69 | except KeyboardInterrupt as KI: 70 | raise f"Operation Canceled {KI}" 71 | continue 72 | elif (userInput == "4"): 73 | print(f"\n{Fore.GREEN}Starting Scan . . .\n") 74 | print(f"{Fore.YELLOW}Do Not Turn off Your PC While Running The Application !{Fore.WHITE}") 75 | try: 76 | subprocess.call(args=['DISM' , '/Online' , '/Cleanup-Image' , '/RestoreHealth' , '/Source:C:\ESD\Windows\sources\install.esd']) 77 | print(f"\n{Fore.GREEN}Finished Scanning .{Fore.WHITE}\n") 78 | sUserInput : str = str(input("[~] Would You Like To Continue Scanning?(y/n) ")) 79 | if (sUserInput.startswith('y')): 80 | os.system(command='cls') 81 | continue 82 | elif (sUserInput.startswith('n')): 83 | break 84 | except KeyboardInterrupt as KI: 85 | raise f"Operation Canceled {KI}" 86 | continue 87 | elif (userInput == "5"): 88 | print(f"\n{Fore.GREEN}Starting Scan . . .\n") 89 | print(f"{Fore.YELLOW}Do Not Turn off Your PC While Running The Application !{Fore.WHITE}") 90 | try: 91 | subprocess.call(args=['SFC' , '/scannow']) 92 | print(f"\n{Fore.GREEN}Finished Scanning .{Fore.WHITE}\n") 93 | sUserInput : str = str(input("[~] Would You Like To Continue Scanning?(y/n) ")) 94 | if (sUserInput.startswith('y')): 95 | os.system(command='cls') 96 | continue 97 | elif (sUserInput.startswith('n')): 98 | break 99 | except KeyboardInterrupt as KI: 100 | raise f"Operation Canceled {KI}" 101 | continue 102 | elif (userInput == "6"): 103 | print(f"\n{Fore.GREEN}Starting Scan . . .\n") 104 | print(f"{Fore.YELLOW}Do Not Turn off Your PC While Running The Application !{Fore.WHITE}") 105 | try: 106 | subprocess.call(args=['chkdsk']) 107 | print(f"\n{Fore.GREEN}Finished Scanning .{Fore.WHITE}\n") 108 | sUserInput : str = str(input("[~] Would You Like To Continue Scanning?(y/n) ")) 109 | if (sUserInput.startswith('y')): 110 | os.system(command='cls') 111 | continue 112 | elif (sUserInput.startswith('n')): 113 | break 114 | except KeyboardInterrupt as KI: 115 | raise f"Operation Canceled {KI}" 116 | continue 117 | elif (userInput == "7"): 118 | print(f"\n{Fore.GREEN}Removing Previouse IP Settings . . .\n") 119 | print(f"{Fore.YELLOW}Do Not Turn off Your PC While Running The Application !{Fore.WHITE}") 120 | try: 121 | subprocess.call(args=['ipconfig' , '/release']) 122 | print(f"\n{Fore.GREEN}Setting New Local IP Settings . . .{Fore.WHITE}\n") 123 | subprocess.call(args=['ipconfig' , '/renew']) 124 | print(f"{Fore.GREEN}Scan Finished.{Fore.WHITE}") 125 | sUserInput : str = str(input("[~] Would You Like To Continue Scanning?(y/n) ")) 126 | if (sUserInput.startswith('y')): 127 | os.system(command='cls') 128 | continue 129 | elif (sUserInput.startswith('n')): 130 | break 131 | except KeyboardInterrupt as KI: 132 | raise f"Operation Canceled {KI}" 133 | continue 134 | elif (userInput == "8"): 135 | print(f"\n{Fore.GREEN}Downloading Requirements . . .\n") 136 | print(f"{Fore.YELLOW}Do Not Turn off Your PC While Running The Application !{Fore.WHITE}") 137 | try: 138 | subprocess.call(args=['DISM' , '/online' , '/enable-feature' , '/featurename:VirtualMachinePlatform' , '/all' , '/norestart']) 139 | subprocess.call(args=['DISM' , '/online' , '/enable-feature' , '/featurename:Microsoft-Windows-Subsystem-Linux' , '/all' , '/norestart']) 140 | print(f"{Fore.GREEN}All Linux Features Enabled Successfully{Fore.WHITE}") 141 | sUserInput : str = str(input("[~] Would You Like To Continue Scanning?(y/n) ")) 142 | if (sUserInput.startswith('y')): 143 | os.system(command='cls') 144 | continue 145 | elif (sUserInput.startswith('n')): 146 | break 147 | except [ConnectionError , KeyboardInterrupt] as CEKI: 148 | raise f"Internet Connection Error Or Operation Canceled By User {CEKI}" 149 | continue 150 | elif (userInput == "9"): 151 | nUserInput : str = str(input("[~] This Option Will Uninstall All of Your Builtins apps , Would You Like to Uninstall All of Your Builtins Apps?(y/n) ")) 152 | if (nUserInput.startswith('y')): 153 | print(f"\n{Fore.GREEN}Uninstalling Builtins Applications . . .\n") 154 | print(f"{Fore.YELLOW}Do Not Turn off Your PC While Running The Application !{Fore.WHITE}") 155 | try: 156 | subprocess.call(args=['Get-AppxPackage' , '|' , 'Remove-AppxPackage']) 157 | print(f"{Fore.GREEN}All Builtins Applications Uninstalled Successfully.{Fore.WHITE}") 158 | sUserInput : str = str(input("[~] Would You Like To Continue Scanning?(y/n) ")) 159 | if (sUserInput.startswith('y')): 160 | os.system(command='cls') 161 | continue 162 | elif (sUserInput.startswith('n')): 163 | break 164 | except KeyboardInterrupt as KI: 165 | raise f"Operation Canceled By User {KI}" 166 | continue 167 | elif (userInput == "10"): 168 | nUserInput : str = str(input("[~] This Option Will Reset Factory Your Windows , Would You Like to Continue?(y/n) ")) 169 | if (nUserInput.startswith('y')): 170 | print(f"\n{Fore.GREEN}Reseting system . . .\n") 171 | print(f"{Fore.YELLOW}Do Not Turn off Your PC While Running The Application !{Fore.WHITE}") 172 | subprocess.call(args=['systemreset' , '--resetfactory']) 173 | print(f"{Fore.GREEN}All Done.{Fore.WHITE}") 174 | continue 175 | elif (userInput in ["00" , "exit"]): 176 | break 177 | else: 178 | os.system(command='cls') 179 | print(f"{Fore.RED}[!] Command is not Defined") 180 | continue 181 | continue 182 | else: 183 | ctypes.windll.shell32.ShellExecuteW(None , 'runas' , sys.executable , " ".join(sys.argv) , None , 1) -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 3.0.0 -------------------------------------------------------------------------------- /view/v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shervinbdndev/WindowsMedicator/c8fbe9f3778922242d4870e4d084b898a31fcb50/view/v3.png --------------------------------------------------------------------------------