{
    "info": {
        "author": "Mark Hammond (et al)",
        "author_email": "mhammond@skippinet.com.au",
        "bugtrack_url": null,
        "classifiers": [
            "Environment :: Win32 (MS Windows)",
            "Intended Audience :: Developers",
            "License :: OSI Approved :: Python Software Foundation License",
            "Operating System :: Microsoft :: Windows",
            "Programming Language :: Python :: 3.6",
            "Programming Language :: Python :: 3.7",
            "Programming Language :: Python :: 3.8",
            "Programming Language :: Python :: 3.9",
            "Programming Language :: Python :: 3.10",
            "Programming Language :: Python :: 3.11",
            "Programming Language :: Python :: Implementation :: CPython"
        ],
        "description": "# pywin32\n\n[![CI](https://github.com/mhammond/pywin32/workflows/CI/badge.svg)](https://github.com/mhammond/pywin32/actions?query=workflow%3ACI)\n[![PyPI - Version](https://img.shields.io/pypi/v/pywin32.svg)](https://pypi.org/project/pywin32)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pywin32.svg)](https://pypi.org/project/pywin32)\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/pywin32.svg)](https://pypi.org/project/pywin32)\n[![License - PSF-2.0](https://img.shields.io/badge/license-PSF--2.0-9400d3.svg)](https://spdx.org/licenses/PSF-2.0.html)\n\n-----\n\nThis is the readme for the Python for Win32 (pywin32) extensions, which provides access to many of the Windows APIs from Python.\n\nSee [CHANGES.txt](https://github.com/mhammond/pywin32/blob/master/CHANGES.txt) for recent notable changes.\n\nOnly Python 3 is supported. If you want Python 2 support, you want build `228`.\n\n## Docs\n\nThe docs are a long and sad story, but [there's now an online version](https://mhammond.github.io/pywin32/)\nof the helpfile that ships with the installers (thanks [@ofek](https://github.com/mhammond/pywin32/pull/1774)!).\nLots of that is very old, but some is auto-generated and current. Would love help untangling the docs!\n\n## Support\n\nFeel free to [open issues](https://github.com/mhammond/pywin32/issues) for\nall bugs (or suspected bugs) in pywin32. [pull-requests](https://github.com/mhammond/pywin32/pulls)\nfor all bugs or features are also welcome.\n\nHowever, please **do not open github issues for general support requests**, or\nfor problems or questions using the modules in this package - they will be\nclosed. For such issues, please email the\n[python-win32 mailing list](http://mail.python.org/mailman/listinfo/python-win32) -\nnote that you must be subscribed to the list before posting.\n\n## Binaries\nBy far the easiest way to use pywin32 is to grab binaries from the [most recent release](https://github.com/mhammond/pywin32/releases)\n\nNote that there are no 32-bit binary installers for 3.10 and later - see\n[this github issue](https://github.com/mhammond/pywin32/issues/1805)\n\n## Installing via PIP\n\nYou can install pywin32 via pip:\n> pip install pywin32\n\nIf you encounter any problems when upgrading (eg, \"module not found\" errors or similar), you\nshould execute:\n\n> python Scripts/pywin32_postinstall.py -install\n\nThis will make some small attempts to cleanup older conflicting installs.\n\nNote that if you want to use pywin32 for \"system wide\" features, such as\nregistering COM objects or implementing Windows Services, then you must run\nthat command from an elevated (ie, \"Run as Administrator) command prompt.\n\n### `The specified procedure could not be found` / `Entry-point not found` Errors?\nA very common report is that people install pywin32, but many imports fail with errors\nsimilar to the above.\n\nIn almost all cases, this tends to mean there are other pywin32 DLLs installed in your system,\nbut in a different location than the new ones. This sometimes happens in environments that\ncome with pywin32 pre-shipped (eg, anaconda?).\n\nThe possible solutions are:\n\n* Run the \"post_install\" script documented above.\n\n* Otherwise, find and remove all other copies of `pywintypesXX.dll` and `pythoncomXX.dll`\n(where `XX` is the Python version - eg, \"39\")\n\n### Running as a Windows Service\n\nModern Python installers do not, by default, install Python in a way that is suitable for\nrunning as a service, particularly for other users.\n\n* Ensure Python is installed in a location where the user running the service has\n  access to the installation and is able to load `pywintypesXX.dll` and `pythonXX.dll`.\n\n* Manually copy `pythonservice.exe` from the `site-packages/win32` directory to\n  the same place as these DLLs.\n\n## Building from source\n\nBuilding from source has been simplified recently - you just need Visual Studio\nand the Windows 10 SDK installed (the free compilers probably work too, but\nhaven't been tested - let me know your experiences!)\n\n`setup.py` is a standard distutils build script.  You probably want:\n\n> python setup.py install\n\nor\n\n> python setup.py --help\n\nYou can run `setup.py` without any arguments to see\nspecific information about dependencies.  A vanilla MSVC installation should\nbe able to build most extensions and list any extensions that could not be\nbuilt due to missing libraries - if the build actually fails with your\nconfiguration, please [open an issue](https://github.com/mhammond/pywin32/issues).\n\n## Release process\n\nThe following steps are performed when making a new release - this is mainly\nto form a checklist so mhammond doesn't forget what to do :)\n\n* Ensure CHANGES.txt has everything worth noting, commit it.\n\n* Update setup.py with the new build number.\n\n* Execute build.bat, wait forever, test the artifacts.\n\n* Upload .whl artifacts to pypi - we do this before pushing the tag because they might be\n  rejected for an invalid `README.md`. Done via `py -3.5 -m twine upload dist/*XXX*.whl`.\n\n* Commit setup.py (so the new build number is in the repo), create a new git tag\n\n* Upload the .exe installers to github.\n\n* Update setup.py with the new build number + \".1\" (eg, 123.1), to ensure\n  future test builds aren't mistaken for the real release.\n\n* Make sure everything is pushed to github, including the tag (ie,\n  `git push --tags`)\n\n* Send mail to python-win32\n\n\n",
        "description_content_type": "text/markdown",
        "docs_url": null,
        "download_url": "",
        "downloads": {
            "last_day": -1,
            "last_month": -1,
            "last_week": -1
        },
        "home_page": "https://github.com/mhammond/pywin32",
        "keywords": "",
        "license": "PSF",
        "maintainer": "",
        "maintainer_email": "",
        "name": "pywin32",
        "package_url": "https://pypi.org/project/pywin32/",
        "platform": "",
        "project_url": "https://pypi.org/project/pywin32/",
        "project_urls": {
            "Homepage": "https://github.com/mhammond/pywin32"
        },
        "release_url": "https://pypi.org/project/pywin32/303/",
        "requires_dist": null,
        "requires_python": "",
        "summary": "Python for Window Extensions",
        "version": "303",
        "yanked": false,
        "yanked_reason": null
    },
    "last_serial": 12356695,
    "releases": {
        "210": [],
        "214": [],
        "222": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "51917d8ed94c02bf88d84b88818905ea",
                    "sha256": "7181f6aa0730caf888be592cf612cddb8987409fa4acf7393913c558da9b28d5"
                },
                "downloads": -1,
                "filename": "pywin32-222-cp27-cp27m-win32.whl",
                "has_sig": false,
                "md5_digest": "51917d8ed94c02bf88d84b88818905ea",
                "packagetype": "bdist_wheel",
                "python_version": "cp27",
                "requires_python": null,
                "size": 6769217,
                "upload_time": "2018-01-21T05:48:10",
                "upload_time_iso_8601": "2018-01-21T05:48:10.130821Z",
                "url": "https://files.pythonhosted.org/packages/36/98/581719389bef3491e982b0550ab539c25e8b2d1e9fd0695f4a05c696f061/pywin32-222-cp27-cp27m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "ea0cba650d37cd2869adeef3f3bb803c",
                    "sha256": "d8a9ac7806e86b6c28be957407b50ca02144c7c0639fb125f8bd98e968ed642f"
                },
                "downloads": -1,
                "filename": "pywin32-222-cp27-cp27m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "ea0cba650d37cd2869adeef3f3bb803c",
                "packagetype": "bdist_wheel",
                "python_version": "cp27",
                "requires_python": null,
                "size": 7326944,
                "upload_time": "2018-01-21T05:50:02",
                "upload_time_iso_8601": "2018-01-21T05:50:02.722052Z",
                "url": "https://files.pythonhosted.org/packages/96/4b/b52fb6f3b1648a52a3dfc422dace461a237d23ac55dfc0375b6263e86bd9/pywin32-222-cp27-cp27m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "3a0dbb14218636bb8621f744b1214f52",
                    "sha256": "9d7e73262ca8bb8b34e7e17a29d3693e1b4b701389847bc70463adbb58b8245b"
                },
                "downloads": -1,
                "filename": "pywin32-222-cp35-cp35m-win32.whl",
                "has_sig": false,
                "md5_digest": "3a0dbb14218636bb8621f744b1214f52",
                "packagetype": "bdist_wheel",
                "python_version": "cp35",
                "requires_python": null,
                "size": 8253903,
                "upload_time": "2018-01-21T05:52:03",
                "upload_time_iso_8601": "2018-01-21T05:52:03.455822Z",
                "url": "https://files.pythonhosted.org/packages/ed/7b/2b4ed81d83cb98721a7d1bd01a1899351a99260fe97cc51d5118ac9998f7/pywin32-222-cp35-cp35m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "4a3bf2aae41cb1d87067c5e3d63a4e46",
                    "sha256": "33971ade23c830f7660ad25ebf7c7625f8cd7efb635c880238bd2c5c23ee6ae8"
                },
                "downloads": -1,
                "filename": "pywin32-222-cp35-cp35m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "4a3bf2aae41cb1d87067c5e3d63a4e46",
                "packagetype": "bdist_wheel",
                "python_version": "cp35",
                "requires_python": null,
                "size": 8969264,
                "upload_time": "2018-01-21T05:54:08",
                "upload_time_iso_8601": "2018-01-21T05:54:08.662969Z",
                "url": "https://files.pythonhosted.org/packages/20/6d/ba9413b676959e49ffa990abb0f3dc4db57d2d23271859f3f76e59796e3e/pywin32-222-cp35-cp35m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "ef168bf2acbdced419d27467ed793c95",
                    "sha256": "bace4824aa0242d1f3d9fd98f2116e0e1e9c8e0705ca135e5ce72960210b0c01"
                },
                "downloads": -1,
                "filename": "pywin32-222-cp36-cp36m-win32.whl",
                "has_sig": false,
                "md5_digest": "ef168bf2acbdced419d27467ed793c95",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 8253844,
                "upload_time": "2018-01-21T05:56:19",
                "upload_time_iso_8601": "2018-01-21T05:56:19.720808Z",
                "url": "https://files.pythonhosted.org/packages/23/e3/e65b4d14c89f68bb85c24d733bcdb0b684af34970bdbb1b0892985965ce9/pywin32-222-cp36-cp36m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "94a9a3782081e14973c5ae448957d530",
                    "sha256": "4e27d2c9a97b0e8d538155b8804929780df9a6b3ebc31e845d16b7efa2142161"
                },
                "downloads": -1,
                "filename": "pywin32-222-cp36-cp36m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "94a9a3782081e14973c5ae448957d530",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 8969903,
                "upload_time": "2018-01-21T06:06:58",
                "upload_time_iso_8601": "2018-01-21T06:06:58.271107Z",
                "url": "https://files.pythonhosted.org/packages/be/25/0e0c568456b77ce144dd2b8799f915b046ffa1cd922771d214e4be05bca2/pywin32-222-cp36-cp36m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "eba4296557e1fd50b68cf8e93fd8ee83",
                    "sha256": "356de1e08453e668cfe8fa892b17b46600b94373373c6b2b743730fc1d965a1c"
                },
                "downloads": -1,
                "filename": "pywin32-222-cp37-cp37m-win32.whl",
                "has_sig": false,
                "md5_digest": "eba4296557e1fd50b68cf8e93fd8ee83",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 8231689,
                "upload_time": "2018-01-21T06:00:34",
                "upload_time_iso_8601": "2018-01-21T06:00:34.748805Z",
                "url": "https://files.pythonhosted.org/packages/91/67/59bb7d0d7623b879ce871ff82fb05da9efa63e907e1ba2e253c4cea6dcfc/pywin32-222-cp37-cp37m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "223": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "f25f866c8d76a1854affc34ab214cd7e",
                    "sha256": "42f48567e36b787901ff3da20de5a134cd9880cc90832e2aad60951f058699f0"
                },
                "downloads": -1,
                "filename": "pywin32-223-cp27-cp27m-win32.whl",
                "has_sig": false,
                "md5_digest": "f25f866c8d76a1854affc34ab214cd7e",
                "packagetype": "bdist_wheel",
                "python_version": "cp27",
                "requires_python": null,
                "size": 6769375,
                "upload_time": "2018-02-26T00:02:52",
                "upload_time_iso_8601": "2018-02-26T00:02:52.505106Z",
                "url": "https://files.pythonhosted.org/packages/a0/76/89b836562a36929bb913f9c17fca54fdd2c68b5e97ec0d626a389c087150/pywin32-223-cp27-cp27m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "c9d2d260ef87592bb04cbc59f1ffe2d2",
                    "sha256": "f0f0e7c82ee334dd6e888b9b5beb05fd8947355fa7a15644c810bb4ea0079ca6"
                },
                "downloads": -1,
                "filename": "pywin32-223-cp27-cp27m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "c9d2d260ef87592bb04cbc59f1ffe2d2",
                "packagetype": "bdist_wheel",
                "python_version": "cp27",
                "requires_python": null,
                "size": 7327090,
                "upload_time": "2018-02-26T00:04:48",
                "upload_time_iso_8601": "2018-02-26T00:04:48.353769Z",
                "url": "https://files.pythonhosted.org/packages/65/83/0b14690d70bcd193a67c8b0a640129717e37a11d8e6a3e28a01e47910737/pywin32-223-cp27-cp27m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "b68b53a5fdbbb1c2d67c1308aac34a02",
                    "sha256": "c7ea0deabcc324e5b74084b5452003109c592d1aedbe9e9289ed55b26d9b0c7f"
                },
                "downloads": -1,
                "filename": "pywin32-223-cp35-cp35m-win32.whl",
                "has_sig": false,
                "md5_digest": "b68b53a5fdbbb1c2d67c1308aac34a02",
                "packagetype": "bdist_wheel",
                "python_version": "cp35",
                "requires_python": null,
                "size": 8253973,
                "upload_time": "2018-02-26T00:06:57",
                "upload_time_iso_8601": "2018-02-26T00:06:57.854695Z",
                "url": "https://files.pythonhosted.org/packages/32/0f/16419ffd63c60b0c197614c430eab35360a94154ac1b846b3ee69f8c8061/pywin32-223-cp35-cp35m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "0cff676367cdbb803f98fd163e0b61ba",
                    "sha256": "da422d4067d98b49fbb19d851900a5fc38c61eab0ee803574c27c42309173ebe"
                },
                "downloads": -1,
                "filename": "pywin32-223-cp35-cp35m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "0cff676367cdbb803f98fd163e0b61ba",
                "packagetype": "bdist_wheel",
                "python_version": "cp35",
                "requires_python": null,
                "size": 8969298,
                "upload_time": "2018-02-26T00:09:16",
                "upload_time_iso_8601": "2018-02-26T00:09:16.384259Z",
                "url": "https://files.pythonhosted.org/packages/73/48/42e18ab94651c28d21f626ce1b5feaf60e5fb2aae3d264138aa768532a5f/pywin32-223-cp35-cp35m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "f30f6f3979f77f79bed4d871b508c41c",
                    "sha256": "fb3c85907918fd01a72ee146d323d220771dee151c0cfa5630c2f35797ffb116"
                },
                "downloads": -1,
                "filename": "pywin32-223-cp36-cp36m-win32.whl",
                "has_sig": false,
                "md5_digest": "f30f6f3979f77f79bed4d871b508c41c",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 8253954,
                "upload_time": "2018-02-26T00:11:23",
                "upload_time_iso_8601": "2018-02-26T00:11:23.571357Z",
                "url": "https://files.pythonhosted.org/packages/d4/2d/b927e61c4a2b0aaaab72c8cb97cf748c319c399d804293164b0c43380d5f/pywin32-223-cp36-cp36m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "2d211288ee000b6ec5d37436bcbe8a43",
                    "sha256": "0df9b008caef10af0d674c483316c28dcf78391332d9d5d380fab667ebf2d7d1"
                },
                "downloads": -1,
                "filename": "pywin32-223-cp36-cp36m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "2d211288ee000b6ec5d37436bcbe8a43",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 8970003,
                "upload_time": "2018-02-26T00:13:46",
                "upload_time_iso_8601": "2018-02-26T00:13:46.063523Z",
                "url": "https://files.pythonhosted.org/packages/9f/9d/f4b2170e8ff5d825cd4398856fee88f6c70c60bce0aa8411ed17c1e1b21f/pywin32-223-cp36-cp36m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "9c0387c16d3335f02093fc7b148d9b13",
                    "sha256": "9eff897796c9d76a213134257a01b6f8a122c55e0772847fba313a8091f3ec44"
                },
                "downloads": -1,
                "filename": "pywin32-223-cp37-cp37m-win32.whl",
                "has_sig": false,
                "md5_digest": "9c0387c16d3335f02093fc7b148d9b13",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 8231778,
                "upload_time": "2018-02-26T00:15:52",
                "upload_time_iso_8601": "2018-02-26T00:15:52.657701Z",
                "url": "https://files.pythonhosted.org/packages/d6/39/5c318e0b61d892861fe65a6a3150d42be4d87ae9137be2ef3e35632341c2/pywin32-223-cp37-cp37m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "c6e4dcf5042226bd94fb06556572fa57",
                    "sha256": "249391eb924b8376826e6f84d143d1dcc0e400b238b511d5fbd3811f6ed9ad50"
                },
                "downloads": -1,
                "filename": "pywin32-223-cp37-cp37m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "c6e4dcf5042226bd94fb06556572fa57",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 8947694,
                "upload_time": "2018-02-26T00:18:13",
                "upload_time_iso_8601": "2018-02-26T00:18:13.776643Z",
                "url": "https://files.pythonhosted.org/packages/f4/fb/ba9e519d90b63090005bcdee900d318d895d475c627dc1bc0f77b27abad0/pywin32-223-cp37-cp37m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "224": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "65fbb9dbe5c3a2118b0a59ce22da4ddc",
                    "sha256": "6852ceac5fdd7a146b570655c37d9eacd520ed1eaeec051ff41c6fc94243d8bf"
                },
                "downloads": -1,
                "filename": "pywin32-224-cp27-cp27m-win32.whl",
                "has_sig": false,
                "md5_digest": "65fbb9dbe5c3a2118b0a59ce22da4ddc",
                "packagetype": "bdist_wheel",
                "python_version": "cp27",
                "requires_python": null,
                "size": 6836723,
                "upload_time": "2018-09-28T06:47:54",
                "upload_time_iso_8601": "2018-09-28T06:47:54.992407Z",
                "url": "https://files.pythonhosted.org/packages/fc/7c/25f36684ec3b8ea47d5601442950a4fa770d066f57171fbf8c905ccbfd25/pywin32-224-cp27-cp27m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "34e39c1a072d54a85f3ddd1726b86063",
                    "sha256": "6dbc4219fe45ece6a0cc6baafe0105604fdee551b5e876dc475d3955b77190ec"
                },
                "downloads": -1,
                "filename": "pywin32-224-cp27-cp27m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "34e39c1a072d54a85f3ddd1726b86063",
                "packagetype": "bdist_wheel",
                "python_version": "cp27",
                "requires_python": null,
                "size": 7411222,
                "upload_time": "2018-09-28T06:48:03",
                "upload_time_iso_8601": "2018-09-28T06:48:03.591176Z",
                "url": "https://files.pythonhosted.org/packages/83/cc/2e39fa39b804f7b6e768a37657d75eb14cd917d1f43f376dad9f7c366ccf/pywin32-224-cp27-cp27m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "cdd336d6fc77aa19a77e315f2c46c4a7",
                    "sha256": "9bd07746ce7f2198021a9fa187fa80df7b221ec5e4c234ab6f00ea355a3baf99"
                },
                "downloads": -1,
                "filename": "pywin32-224-cp35-cp35m-win32.whl",
                "has_sig": false,
                "md5_digest": "cdd336d6fc77aa19a77e315f2c46c4a7",
                "packagetype": "bdist_wheel",
                "python_version": "cp35",
                "requires_python": null,
                "size": 8351842,
                "upload_time": "2018-09-28T06:48:14",
                "upload_time_iso_8601": "2018-09-28T06:48:14.523013Z",
                "url": "https://files.pythonhosted.org/packages/64/5a/342e5c4552ec4c6f505c363c485f26e3828e633c55ba4888134e4d561a31/pywin32-224-cp35-cp35m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "2e42bb3b87753c2e96fdb037e42a9f81",
                    "sha256": "5f265d72588806e134c8e1ede8561739071626ea4cc25c12d526aa7b82416ae5"
                },
                "downloads": -1,
                "filename": "pywin32-224-cp35-cp35m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "2e42bb3b87753c2e96fdb037e42a9f81",
                "packagetype": "bdist_wheel",
                "python_version": "cp35",
                "requires_python": null,
                "size": 9056660,
                "upload_time": "2018-09-28T06:48:24",
                "upload_time_iso_8601": "2018-09-28T06:48:24.505516Z",
                "url": "https://files.pythonhosted.org/packages/83/a5/960c5a714b3c975102031286121db06fe861fdd221b493dce5144d759b90/pywin32-224-cp35-cp35m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "ed3c00b5da8a1923a3aa1335b746797f",
                    "sha256": "32b37abafbfeddb0fe718008d6aada5a71efa2874f068bee1f9e703983dcc49a"
                },
                "downloads": -1,
                "filename": "pywin32-224-cp36-cp36m-win32.whl",
                "has_sig": false,
                "md5_digest": "ed3c00b5da8a1923a3aa1335b746797f",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 8352307,
                "upload_time": "2018-09-28T06:48:35",
                "upload_time_iso_8601": "2018-09-28T06:48:35.443443Z",
                "url": "https://files.pythonhosted.org/packages/41/02/3d5014e3b70c950492ceb65785ef724d073785f02fd51401430fd5fef681/pywin32-224-cp36-cp36m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "ada46e0114ac77c962b449994c407f99",
                    "sha256": "35451edb44162d2f603b5b18bd427bc88fcbc74849eaa7a7e7cfe0f507e5c0c8"
                },
                "downloads": -1,
                "filename": "pywin32-224-cp36-cp36m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "ada46e0114ac77c962b449994c407f99",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 9056372,
                "upload_time": "2018-09-28T06:48:49",
                "upload_time_iso_8601": "2018-09-28T06:48:49.011085Z",
                "url": "https://files.pythonhosted.org/packages/b2/1a/7727b406391b0178b6ccb7e447e963df5ebf1ce9e0f615fc6ce23b6f6753/pywin32-224-cp36-cp36m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "a4c44eee27e66eda660f25ff72f70498",
                    "sha256": "22e218832a54ed206452c8f3ca9eff07ef327f8e597569a4c2828be5eaa09a77"
                },
                "downloads": -1,
                "filename": "pywin32-224-cp37-cp37m-win32.whl",
                "has_sig": false,
                "md5_digest": "a4c44eee27e66eda660f25ff72f70498",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 8344058,
                "upload_time": "2018-09-28T06:48:59",
                "upload_time_iso_8601": "2018-09-28T06:48:59.398813Z",
                "url": "https://files.pythonhosted.org/packages/8a/37/917c4020e93e0e854d4cbff1cbdf14ec45a6d1cedf52f8cafdea5b22451a/pywin32-224-cp37-cp37m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "7c58f3656f6232fb0f891edff8d4e9c9",
                    "sha256": "4eda2e1e50faa706ff8226195b84fbcbd542b08c842a9b15e303589f85bfb41c"
                },
                "downloads": -1,
                "filename": "pywin32-224-cp37-cp37m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "7c58f3656f6232fb0f891edff8d4e9c9",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 9049672,
                "upload_time": "2018-09-28T06:49:11",
                "upload_time_iso_8601": "2018-09-28T06:49:11.012209Z",
                "url": "https://files.pythonhosted.org/packages/a3/8a/eada1e7990202cd27e58eca2a278c344fef190759bbdc8f8f0eb6abeca9c/pywin32-224-cp37-cp37m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "225": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "6f5d3c919dac9c6fc3ccec05af6f5f56",
                    "sha256": "749e590875051661ecefbd9dfa957a485016de0f25e43f5e70f888ef1e29587b"
                },
                "downloads": -1,
                "filename": "pywin32-225-cp27-cp27m-win32.whl",
                "has_sig": false,
                "md5_digest": "6f5d3c919dac9c6fc3ccec05af6f5f56",
                "packagetype": "bdist_wheel",
                "python_version": "cp27",
                "requires_python": null,
                "size": 6844245,
                "upload_time": "2019-09-15T05:41:23",
                "upload_time_iso_8601": "2019-09-15T05:41:23.571741Z",
                "url": "https://files.pythonhosted.org/packages/b2/8c/39ec6f8129d65e78b787aa405d1dd13828c6fd7566875f16800ca8a0fc84/pywin32-225-cp27-cp27m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "b15d655e7bb9d64af13327ba668ca0ed",
                    "sha256": "81f7732b662c46274d7d8c411c905d53e71999cba95457a0686467c3ebc745ca"
                },
                "downloads": -1,
                "filename": "pywin32-225-cp27-cp27m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "b15d655e7bb9d64af13327ba668ca0ed",
                "packagetype": "bdist_wheel",
                "python_version": "cp27",
                "requires_python": null,
                "size": 7418675,
                "upload_time": "2019-09-15T05:41:44",
                "upload_time_iso_8601": "2019-09-15T05:41:44.553165Z",
                "url": "https://files.pythonhosted.org/packages/b7/e5/e99a695598f2e82e9da5fae177d520cdc9303294fdea29d256d8b06beb63/pywin32-225-cp27-cp27m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "57b81a6f40ee599f1bfad41219830f82",
                    "sha256": "09bbe7cdb29eb40ab2e83f7a232eeeedde864be7a0622b70a90f456aad07a234"
                },
                "downloads": -1,
                "filename": "pywin32-225-cp35-cp35m-win32.whl",
                "has_sig": false,
                "md5_digest": "57b81a6f40ee599f1bfad41219830f82",
                "packagetype": "bdist_wheel",
                "python_version": "cp35",
                "requires_python": null,
                "size": 8359370,
                "upload_time": "2019-09-15T05:41:58",
                "upload_time_iso_8601": "2019-09-15T05:41:58.599139Z",
                "url": "https://files.pythonhosted.org/packages/c5/7a/9caf071dfbbd53e5ec31639be826fb991970f00238a6e55b9bb38ad275e4/pywin32-225-cp35-cp35m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "1502fbb1abaa488e1ca4f5a3bca7d4dd",
                    "sha256": "9db1fb8830bfa99c5bfd335d4482c14db5c6f5028db3b006787ef4200206242b"
                },
                "downloads": -1,
                "filename": "pywin32-225-cp35-cp35m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "1502fbb1abaa488e1ca4f5a3bca7d4dd",
                "packagetype": "bdist_wheel",
                "python_version": "cp35",
                "requires_python": null,
                "size": 9064114,
                "upload_time": "2019-09-15T05:42:07",
                "upload_time_iso_8601": "2019-09-15T05:42:07.994894Z",
                "url": "https://files.pythonhosted.org/packages/94/10/bc01d305771e3f3eb7d42afee63ae3ee4f1a8924b20d9d98c3b19c7f58c4/pywin32-225-cp35-cp35m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "0876908780face41e7d698b4be2f761b",
                    "sha256": "bd8d04835db28646d9e07fd0ab7c7b18bd90e89dfdc559e60389179495ef30da"
                },
                "downloads": -1,
                "filename": "pywin32-225-cp36-cp36m-win32.whl",
                "has_sig": false,
                "md5_digest": "0876908780face41e7d698b4be2f761b",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 8359857,
                "upload_time": "2019-09-15T05:42:25",
                "upload_time_iso_8601": "2019-09-15T05:42:25.488628Z",
                "url": "https://files.pythonhosted.org/packages/4e/98/edb9ffec08f9e44dddf4973ba9d6c7de18fd1c91f1de642ca14b4c283993/pywin32-225-cp36-cp36m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "5daad5d9e1ed129299433881e04228c1",
                    "sha256": "7c89d2c11a31c7aaa16dc4d25054d7e0e99d6f6b24193cf62c83850484658c87"
                },
                "downloads": -1,
                "filename": "pywin32-225-cp36-cp36m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "5daad5d9e1ed129299433881e04228c1",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 9063936,
                "upload_time": "2019-09-15T05:42:44",
                "upload_time_iso_8601": "2019-09-15T05:42:44.290926Z",
                "url": "https://files.pythonhosted.org/packages/bb/29/2a8d06fd1e0547f129e6ed9f713027f98f2cf243aff3ece189a08b071d75/pywin32-225-cp36-cp36m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "ef2f64918d86de0bbd8e2ef75b556058",
                    "sha256": "779d3e9d4b934f2445d2920c3941416d99af72eb7f7fd57a63576cc8aa540ad6"
                },
                "downloads": -1,
                "filename": "pywin32-225-cp37-cp37m-win32.whl",
                "has_sig": false,
                "md5_digest": "ef2f64918d86de0bbd8e2ef75b556058",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 8351524,
                "upload_time": "2019-09-15T05:42:55",
                "upload_time_iso_8601": "2019-09-15T05:42:55.009512Z",
                "url": "https://files.pythonhosted.org/packages/2e/89/a28df6a2b761e8324ffafe919ded680674be40dcf1348c6ffc6d0ec533c3/pywin32-225-cp37-cp37m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "ec85ad827d248f762aefd9c6a1913bea",
                    "sha256": "fc6822a68afd79e97b015985dd455767c72009b81bcd18957068626c43f11e75"
                },
                "downloads": -1,
                "filename": "pywin32-225-cp37-cp37m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "ec85ad827d248f762aefd9c6a1913bea",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 9057056,
                "upload_time": "2019-09-15T05:43:08",
                "upload_time_iso_8601": "2019-09-15T05:43:08.240696Z",
                "url": "https://files.pythonhosted.org/packages/b5/26/801bc6d99612977accac84b2d8ad06efa4a7d831c5e2813ca9baf700b646/pywin32-225-cp37-cp37m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "5706bb2ee88daca2c8e7375284fcfe29",
                    "sha256": "0db7c9f4b93528afd080d35912a60be2f86a1d6c49c0a9cf9cedd106eed81ea3"
                },
                "downloads": -1,
                "filename": "pywin32-225-cp38-cp38-win32.whl",
                "has_sig": false,
                "md5_digest": "5706bb2ee88daca2c8e7375284fcfe29",
                "packagetype": "bdist_wheel",
                "python_version": "cp38",
                "requires_python": null,
                "size": 8346841,
                "upload_time": "2019-09-15T05:43:17",
                "upload_time_iso_8601": "2019-09-15T05:43:17.572334Z",
                "url": "https://files.pythonhosted.org/packages/84/df/ec6e3f34581674613dd534db0095bed659054b7c4943fa4c2c608741dd33/pywin32-225-cp38-cp38-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "d751f6de45e43c4cef301537984bf6ec",
                    "sha256": "0443e9bb196e72480f50cbddc2cf98fbb858a77d02e281ba79489ea3287b36e9"
                },
                "downloads": -1,
                "filename": "pywin32-225-cp38-cp38-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "d751f6de45e43c4cef301537984bf6ec",
                "packagetype": "bdist_wheel",
                "python_version": "cp38",
                "requires_python": null,
                "size": 9056170,
                "upload_time": "2019-09-15T05:43:22",
                "upload_time_iso_8601": "2019-09-15T05:43:22.824563Z",
                "url": "https://files.pythonhosted.org/packages/ab/3f/a7a622573408bd63061a5e3a7de9912eda7623502b9e41572a4852a2c1d1/pywin32-225-cp38-cp38-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "8c03ff1c31fedbcef9bc47b5b0eb79c4",
                    "sha256": "fe6cfc2045931866417740b575231c7e12d69d481643be1493487ad53b089959"
                },
                "downloads": -1,
                "filename": "pywin32-225-cp39-cp39-win32.whl",
                "has_sig": false,
                "md5_digest": "8c03ff1c31fedbcef9bc47b5b0eb79c4",
                "packagetype": "bdist_wheel",
                "python_version": "cp39",
                "requires_python": null,
                "size": 8346790,
                "upload_time": "2019-09-15T05:43:33",
                "upload_time_iso_8601": "2019-09-15T05:43:33.789310Z",
                "url": "https://files.pythonhosted.org/packages/ec/1a/f288b94c88aa0e1978b1057894b78f94a1343a3532c91aa11546e86baf9c/pywin32-225-cp39-cp39-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "8acbbdd72a948126fd9e401fecba8289",
                    "sha256": "0d8e0f47808798d320c983574c36c49db642678902933a210edd40157d206fd0"
                },
                "downloads": -1,
                "filename": "pywin32-225-cp39-cp39-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "8acbbdd72a948126fd9e401fecba8289",
                "packagetype": "bdist_wheel",
                "python_version": "cp39",
                "requires_python": null,
                "size": 9055498,
                "upload_time": "2019-09-15T05:43:43",
                "upload_time_iso_8601": "2019-09-15T05:43:43.469953Z",
                "url": "https://files.pythonhosted.org/packages/3e/56/e51962f5afbbf09516fa8465facbc5c75c17878ce2eac66d7e59d6f3dd41/pywin32-225-cp39-cp39-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "226": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "874e25cf21e38850f3b58a4d710d1070",
                    "sha256": "10963cecd709b4ade5cc17c69ab2b6f8be7928704ead88ce80a0314f16f79ccb"
                },
                "downloads": -1,
                "filename": "pywin32-226-cp27-cp27m-win32.whl",
                "has_sig": false,
                "md5_digest": "874e25cf21e38850f3b58a4d710d1070",
                "packagetype": "bdist_wheel",
                "python_version": "cp27",
                "requires_python": null,
                "size": 6848280,
                "upload_time": "2019-11-10T07:16:48",
                "upload_time_iso_8601": "2019-11-10T07:16:48.953732Z",
                "url": "https://files.pythonhosted.org/packages/ca/d5/284d4b84bdfc8eb983f0064393c6d08cd3afc050e318b9bf8e28c5fad700/pywin32-226-cp27-cp27m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "7118f1697f906677d5fb370a5f7e580f",
                    "sha256": "9d5572ff1222e1cf7de9ad5a0602c86029e9784ba79f5bd231beaed4a99aed4a"
                },
                "downloads": -1,
                "filename": "pywin32-226-cp27-cp27m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "7118f1697f906677d5fb370a5f7e580f",
                "packagetype": "bdist_wheel",
                "python_version": "cp27",
                "requires_python": null,
                "size": 7427678,
                "upload_time": "2019-11-10T07:16:54",
                "upload_time_iso_8601": "2019-11-10T07:16:54.027582Z",
                "url": "https://files.pythonhosted.org/packages/62/e5/5f42a7c008e0bff5153f2bff3ab92e8f0dab3cd767cce94968780bd48916/pywin32-226-cp27-cp27m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "80393b2a0e8ff1ed130d910f1cc1b8fb",
                    "sha256": "c32a0a0fc6cf1026b7a854b3be01a6d963976f59a83bb70778f2f7b4be99c53b"
                },
                "downloads": -1,
                "filename": "pywin32-226-cp35-cp35m-win32.whl",
                "has_sig": false,
                "md5_digest": "80393b2a0e8ff1ed130d910f1cc1b8fb",
                "packagetype": "bdist_wheel",
                "python_version": "cp35",
                "requires_python": null,
                "size": 8345380,
                "upload_time": "2019-11-10T07:17:02",
                "upload_time_iso_8601": "2019-11-10T07:17:02.178791Z",
                "url": "https://files.pythonhosted.org/packages/f4/07/5fab4c97ae6a3a27f01f12781b34a8a0e6634582358132bfb63f5e65252e/pywin32-226-cp35-cp35m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "0c604bf1348ba9eb691ccc348e345403",
                    "sha256": "275075aab5faa8b095b616cb7f7bf8c862a2188f35a545c864edaa7cd3a59499"
                },
                "downloads": -1,
                "filename": "pywin32-226-cp35-cp35m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "0c604bf1348ba9eb691ccc348e345403",
                "packagetype": "bdist_wheel",
                "python_version": "cp35",
                "requires_python": null,
                "size": 9050134,
                "upload_time": "2019-11-10T07:17:19",
                "upload_time_iso_8601": "2019-11-10T07:17:19.000593Z",
                "url": "https://files.pythonhosted.org/packages/5b/a0/008bdff2fe2414865ad9d5aab02c4404058704dff85a98e754ab09d981e9/pywin32-226-cp35-cp35m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "2cd052fcd6a0d1b8bdf1ec300f368470",
                    "sha256": "f0da6892cfef5d2f006b0cbd7df396e456d06e1d664f0633f50741a3b6f86430"
                },
                "downloads": -1,
                "filename": "pywin32-226-cp36-cp36m-win32.whl",
                "has_sig": false,
                "md5_digest": "2cd052fcd6a0d1b8bdf1ec300f368470",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 8345988,
                "upload_time": "2019-11-10T07:17:32",
                "upload_time_iso_8601": "2019-11-10T07:17:32.279881Z",
                "url": "https://files.pythonhosted.org/packages/76/78/ff1a25e66713d1a467edc4c22d74701c1ab582dac74cb4b1dc46f755903f/pywin32-226-cp36-cp36m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "105895336c707f0110e49b607c16a9e6",
                    "sha256": "4d6b633f17bcad3804de112ab3918fd5c7f4cf1c374017d00f5d25779af22951"
                },
                "downloads": -1,
                "filename": "pywin32-226-cp36-cp36m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "105895336c707f0110e49b607c16a9e6",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 9073107,
                "upload_time": "2019-11-10T07:17:54",
                "upload_time_iso_8601": "2019-11-10T07:17:54.766953Z",
                "url": "https://files.pythonhosted.org/packages/89/3a/ded659dbcd0630eb215fbc1dd0368a6e617c86eaef0ba0f3c6b1195e6e55/pywin32-226-cp36-cp36m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "1ca06213a60efbdddcb08c06c200c55e",
                    "sha256": "edd3ea26ef4113160b996789727e4c641618de2bcc0c542d1fdc9f64272bc8b2"
                },
                "downloads": -1,
                "filename": "pywin32-226-cp37-cp37m-win32.whl",
                "has_sig": false,
                "md5_digest": "1ca06213a60efbdddcb08c06c200c55e",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 8360150,
                "upload_time": "2019-11-10T07:18:15",
                "upload_time_iso_8601": "2019-11-10T07:18:15.493938Z",
                "url": "https://files.pythonhosted.org/packages/69/e7/452c8bc28e785e3637d4d597e18b4ff9240e8b480053a59e81e5e5359b8b/pywin32-226-cp37-cp37m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "bae2ef995515d1e637aaf43a473900be",
                    "sha256": "d82bd01d85a8bf3cc23f66a1825742ff513ca0ce09b75b5caeb40c095d885fdd"
                },
                "downloads": -1,
                "filename": "pywin32-226-cp37-cp37m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "bae2ef995515d1e637aaf43a473900be",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 9066274,
                "upload_time": "2019-11-10T07:18:33",
                "upload_time_iso_8601": "2019-11-10T07:18:33.255242Z",
                "url": "https://files.pythonhosted.org/packages/dd/95/690ac56df1b2843a6153de0f22349465175081e39af161465060fe3bea0b/pywin32-226-cp37-cp37m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "25a889f70124a810bc087f13e81dcc06",
                    "sha256": "0728f8b5bca4a2e6638430d18f5a4143d4a9120491aa8c1b5bd1ccba45543256"
                },
                "downloads": -1,
                "filename": "pywin32-226-cp38-cp38-win32.whl",
                "has_sig": false,
                "md5_digest": "25a889f70124a810bc087f13e81dcc06",
                "packagetype": "bdist_wheel",
                "python_version": "cp38",
                "requires_python": null,
                "size": 8355613,
                "upload_time": "2019-11-10T07:18:49",
                "upload_time_iso_8601": "2019-11-10T07:18:49.007297Z",
                "url": "https://files.pythonhosted.org/packages/ea/bd/a87a75287eb1e91cf31045fef7465eb8e25cfd91629f16fbfb2035b194c7/pywin32-226-cp38-cp38-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "e4bfa17100e1220006153fa8b7c0312d",
                    "sha256": "77f78fe8bad3c12e6453637cf19577c6eec49a85073205bf4a8bda0d9a2330bc"
                },
                "downloads": -1,
                "filename": "pywin32-226-cp38-cp38-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "e4bfa17100e1220006153fa8b7c0312d",
                "packagetype": "bdist_wheel",
                "python_version": "cp38",
                "requires_python": null,
                "size": 9065462,
                "upload_time": "2019-11-10T07:19:03",
                "upload_time_iso_8601": "2019-11-10T07:19:03.084094Z",
                "url": "https://files.pythonhosted.org/packages/03/a3/19efa81c4993987542a6a4caa7983d1fce9393462d0bd10be8ccb3a4f982/pywin32-226-cp38-cp38-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "b2a32d842a4fb4e2bb72723eef12c6a7",
                    "sha256": "b3023540e2802c970be07cb097b65464417298849b17d1ebbb52e4628ea3afc3"
                },
                "downloads": -1,
                "filename": "pywin32-226-cp39-cp39-win32.whl",
                "has_sig": false,
                "md5_digest": "b2a32d842a4fb4e2bb72723eef12c6a7",
                "packagetype": "bdist_wheel",
                "python_version": "cp39",
                "requires_python": null,
                "size": 8355499,
                "upload_time": "2019-11-10T07:19:20",
                "upload_time_iso_8601": "2019-11-10T07:19:20.164664Z",
                "url": "https://files.pythonhosted.org/packages/65/72/9982d5b995318cbe863feff8297630862185e8999e6287d3f7c3e3974728/pywin32-226-cp39-cp39-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "71c0490ccb4009fd21ade48a222e7539",
                    "sha256": "9a96fc015e6c0904593259873378d078e8bade404aae84f63d1aec0d5ea23404"
                },
                "downloads": -1,
                "filename": "pywin32-226-cp39-cp39-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "71c0490ccb4009fd21ade48a222e7539",
                "packagetype": "bdist_wheel",
                "python_version": "cp39",
                "requires_python": null,
                "size": 9064735,
                "upload_time": "2019-11-10T07:19:34",
                "upload_time_iso_8601": "2019-11-10T07:19:34.256123Z",
                "url": "https://files.pythonhosted.org/packages/8f/9a/8d3ee0250df739cca805ba839bceedfbdd465cd4f2288274f7eac747bece/pywin32-226-cp39-cp39-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "227": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "b10e0cc9f908c1f11a1dee3629a0355d",
                    "sha256": "371fcc39416d736401f0274dd64c2302728c9e034808e37381b5e1b22be4a6b0"
                },
                "downloads": -1,
                "filename": "pywin32-227-cp27-cp27m-win32.whl",
                "has_sig": false,
                "md5_digest": "b10e0cc9f908c1f11a1dee3629a0355d",
                "packagetype": "bdist_wheel",
                "python_version": "cp27",
                "requires_python": null,
                "size": 6848454,
                "upload_time": "2019-11-13T23:32:39",
                "upload_time_iso_8601": "2019-11-13T23:32:39.255002Z",
                "url": "https://files.pythonhosted.org/packages/78/81/6af315d1dbba278c44306f727d082048d385f6d4e5905aa95b3af14559e9/pywin32-227-cp27-cp27m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "8087ab87629ff5c5a0d72df8c0af24d4",
                    "sha256": "4cdad3e84191194ea6d0dd1b1b9bdda574ff563177d2adf2b4efec2a244fa116"
                },
                "downloads": -1,
                "filename": "pywin32-227-cp27-cp27m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "8087ab87629ff5c5a0d72df8c0af24d4",
                "packagetype": "bdist_wheel",
                "python_version": "cp27",
                "requires_python": null,
                "size": 7427846,
                "upload_time": "2019-11-13T23:32:45",
                "upload_time_iso_8601": "2019-11-13T23:32:45.968939Z",
                "url": "https://files.pythonhosted.org/packages/a2/e6/6b395ea8bc9500158adea646e28077adb7f3d9587c681fd5d03693a4b5dc/pywin32-227-cp27-cp27m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "d9c8effc6cd92d1f2530d88455483a73",
                    "sha256": "f4c5be1a293bae0076d93c88f37ee8da68136744588bc5e2be2f299a34ceb7aa"
                },
                "downloads": -1,
                "filename": "pywin32-227-cp35-cp35m-win32.whl",
                "has_sig": false,
                "md5_digest": "d9c8effc6cd92d1f2530d88455483a73",
                "packagetype": "bdist_wheel",
                "python_version": "cp35",
                "requires_python": null,
                "size": 8345532,
                "upload_time": "2019-11-13T23:32:58",
                "upload_time_iso_8601": "2019-11-13T23:32:58.919832Z",
                "url": "https://files.pythonhosted.org/packages/e4/62/95d915898133585200b2c23e09bac7b95e3af980c057d68a29f5d80825db/pywin32-227-cp35-cp35m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "8931f7c84dbb898e18f25d5d8e0c524d",
                    "sha256": "a929a4af626e530383a579431b70e512e736e9588106715215bf685a3ea508d4"
                },
                "downloads": -1,
                "filename": "pywin32-227-cp35-cp35m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "8931f7c84dbb898e18f25d5d8e0c524d",
                "packagetype": "bdist_wheel",
                "python_version": "cp35",
                "requires_python": null,
                "size": 9050425,
                "upload_time": "2019-11-13T23:33:20",
                "upload_time_iso_8601": "2019-11-13T23:33:20.551771Z",
                "url": "https://files.pythonhosted.org/packages/50/9f/d513d19e93c9967dd32734893e67ef8e3664fa9f26d36b3ef708dd5e7ef2/pywin32-227-cp35-cp35m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "c09cfd4f5227d9f0a274be174f27d1ec",
                    "sha256": "300a2db938e98c3e7e2093e4491439e62287d0d493fe07cce110db070b54c0be"
                },
                "downloads": -1,
                "filename": "pywin32-227-cp36-cp36m-win32.whl",
                "has_sig": false,
                "md5_digest": "c09cfd4f5227d9f0a274be174f27d1ec",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 8346109,
                "upload_time": "2019-11-13T23:33:34",
                "upload_time_iso_8601": "2019-11-13T23:33:34.418661Z",
                "url": "https://files.pythonhosted.org/packages/e9/5a/04eaf2ae543fb078f1e6f9be7c29149846e3f054a4111bfdfdd3510b7f58/pywin32-227-cp36-cp36m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "89d8a7597bdeb76ab30102a75f042f45",
                    "sha256": "9b31e009564fb95db160f154e2aa195ed66bcc4c058ed72850d047141b36f3a2"
                },
                "downloads": -1,
                "filename": "pywin32-227-cp36-cp36m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "89d8a7597bdeb76ab30102a75f042f45",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 9073427,
                "upload_time": "2019-11-13T23:33:56",
                "upload_time_iso_8601": "2019-11-13T23:33:56.225862Z",
                "url": "https://files.pythonhosted.org/packages/f7/76/29e8e24a4967eb40fdf2f525aae53a1fd6e606382d957aa403f3f12ea235/pywin32-227-cp36-cp36m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "83f44854a7985a52bbf517e9ef0cf64a",
                    "sha256": "47a3c7551376a865dd8d095a98deba954a98f326c6fe3c72d8726ca6e6b15507"
                },
                "downloads": -1,
                "filename": "pywin32-227-cp37-cp37m-win32.whl",
                "has_sig": false,
                "md5_digest": "83f44854a7985a52bbf517e9ef0cf64a",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 8360259,
                "upload_time": "2019-11-13T23:34:20",
                "upload_time_iso_8601": "2019-11-13T23:34:20.977498Z",
                "url": "https://files.pythonhosted.org/packages/17/6f/2cd5c3246f06513f4c369070d91286313b83b3178e886724d47f3c2be45d/pywin32-227-cp37-cp37m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "09d5e4a6e44a6970795d01eff5678cbb",
                    "sha256": "31f88a89139cb2adc40f8f0e65ee56a8c585f629974f9e07622ba80199057511"
                },
                "downloads": -1,
                "filename": "pywin32-227-cp37-cp37m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "09d5e4a6e44a6970795d01eff5678cbb",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 9066504,
                "upload_time": "2019-11-13T23:34:31",
                "upload_time_iso_8601": "2019-11-13T23:34:31.003687Z",
                "url": "https://files.pythonhosted.org/packages/bb/23/00fe4fbf9963f3bcb34a443eba0d0283fc51e5887d4045552c87490394e4/pywin32-227-cp37-cp37m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "ab82bed8851aed9a2acc7ac73e6f9c80",
                    "sha256": "7f18199fbf29ca99dff10e1f09451582ae9e372a892ff03a28528a24d55875bc"
                },
                "downloads": -1,
                "filename": "pywin32-227-cp38-cp38-win32.whl",
                "has_sig": false,
                "md5_digest": "ab82bed8851aed9a2acc7ac73e6f9c80",
                "packagetype": "bdist_wheel",
                "python_version": "cp38",
                "requires_python": null,
                "size": 8355798,
                "upload_time": "2019-11-13T23:34:51",
                "upload_time_iso_8601": "2019-11-13T23:34:51.908303Z",
                "url": "https://files.pythonhosted.org/packages/9f/cb/d693f7cdaed51d83bfec5c77a9fa895c1a5a18cf242ba53b06b98ee366dd/pywin32-227-cp38-cp38-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "20a79cda788e79aee8a21b0dbe4c581a",
                    "sha256": "7c1ae32c489dc012930787f06244426f8356e129184a02c25aef163917ce158e"
                },
                "downloads": -1,
                "filename": "pywin32-227-cp38-cp38-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "20a79cda788e79aee8a21b0dbe4c581a",
                "packagetype": "bdist_wheel",
                "python_version": "cp38",
                "requires_python": null,
                "size": 9065663,
                "upload_time": "2019-11-13T23:35:08",
                "upload_time_iso_8601": "2019-11-13T23:35:08.915632Z",
                "url": "https://files.pythonhosted.org/packages/cf/06/0d55292927ada3f8516e437292d85e33d6f763dd2dcc6b95f62a91ad9740/pywin32-227-cp38-cp38-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "95da580c4f61e5bde88a987e78cfabee",
                    "sha256": "c054c52ba46e7eb6b7d7dfae4dbd987a1bb48ee86debe3f245a2884ece46e295"
                },
                "downloads": -1,
                "filename": "pywin32-227-cp39-cp39-win32.whl",
                "has_sig": false,
                "md5_digest": "95da580c4f61e5bde88a987e78cfabee",
                "packagetype": "bdist_wheel",
                "python_version": "cp39",
                "requires_python": null,
                "size": 8355746,
                "upload_time": "2019-11-13T23:35:31",
                "upload_time_iso_8601": "2019-11-13T23:35:31.998293Z",
                "url": "https://files.pythonhosted.org/packages/9d/c9/953c3844d046577f5617f927d5c15760ef320e01699e4fd6d214917199c1/pywin32-227-cp39-cp39-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "063bf254171ba7b1780d924f28ba20b2",
                    "sha256": "f27cec5e7f588c3d1051651830ecc00294f90728d19c3bf6916e6dba93ea357c"
                },
                "downloads": -1,
                "filename": "pywin32-227-cp39-cp39-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "063bf254171ba7b1780d924f28ba20b2",
                "packagetype": "bdist_wheel",
                "python_version": "cp39",
                "requires_python": null,
                "size": 9064939,
                "upload_time": "2019-11-13T23:35:42",
                "upload_time_iso_8601": "2019-11-13T23:35:42.420568Z",
                "url": "https://files.pythonhosted.org/packages/56/74/3382d6a06050516f152ac703705794da033b92fc6385fda445631d645612/pywin32-227-cp39-cp39-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "228": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "efffb7a8aad0ccdc2af8d399aa1f4041",
                    "sha256": "37dc9935f6a383cc744315ae0c2882ba1768d9b06700a70f35dc1ce73cd4ba9c"
                },
                "downloads": -1,
                "filename": "pywin32-228-cp27-cp27m-win32.whl",
                "has_sig": false,
                "md5_digest": "efffb7a8aad0ccdc2af8d399aa1f4041",
                "packagetype": "bdist_wheel",
                "python_version": "cp27",
                "requires_python": null,
                "size": 6880904,
                "upload_time": "2020-06-13T05:46:17",
                "upload_time_iso_8601": "2020-06-13T05:46:17.924624Z",
                "url": "https://files.pythonhosted.org/packages/4a/78/d0065741617ee422e403ec92019346cf442f2ed65de8964c65ea98406bb5/pywin32-228-cp27-cp27m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "39d71be0361c15047260ff5c92de0b6f",
                    "sha256": "11cb6610efc2f078c9e6d8f5d0f957620c333f4b23466931a247fb945ed35e89"
                },
                "downloads": -1,
                "filename": "pywin32-228-cp27-cp27m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "39d71be0361c15047260ff5c92de0b6f",
                "packagetype": "bdist_wheel",
                "python_version": "cp27",
                "requires_python": null,
                "size": 7460834,
                "upload_time": "2020-06-13T05:46:30",
                "upload_time_iso_8601": "2020-06-13T05:46:30.602226Z",
                "url": "https://files.pythonhosted.org/packages/20/41/e266bb854b3d352641a4eaafe5b6b7ea3944039a9a1014ec481418e7f982/pywin32-228-cp27-cp27m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "163255e8c86ecfca24ec9ae7206a9d1f",
                    "sha256": "1f45db18af5d36195447b2cffacd182fe2d296849ba0aecdab24d3852fbf3f80"
                },
                "downloads": -1,
                "filename": "pywin32-228-cp35-cp35m-win32.whl",
                "has_sig": false,
                "md5_digest": "163255e8c86ecfca24ec9ae7206a9d1f",
                "packagetype": "bdist_wheel",
                "python_version": "cp35",
                "requires_python": null,
                "size": 8377683,
                "upload_time": "2020-06-13T05:46:40",
                "upload_time_iso_8601": "2020-06-13T05:46:40.545787Z",
                "url": "https://files.pythonhosted.org/packages/4c/00/c9230047f4f9729ae8ff897f8f3ee70b7038560a3e1686fa916142b11e3a/pywin32-228-cp35-cp35m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "a1325aefd78cb08150d63cef1162dada",
                    "sha256": "6e38c44097a834a4707c1b63efa9c2435f5a42afabff634a17f563bc478dfcc8"
                },
                "downloads": -1,
                "filename": "pywin32-228-cp35-cp35m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "a1325aefd78cb08150d63cef1162dada",
                "packagetype": "bdist_wheel",
                "python_version": "cp35",
                "requires_python": null,
                "size": 9083715,
                "upload_time": "2020-06-13T05:46:55",
                "upload_time_iso_8601": "2020-06-13T05:46:55.144718Z",
                "url": "https://files.pythonhosted.org/packages/94/55/04cfc091b15d8a313afd6c1ab5ec9fa004cec2c18b30363ce4b68221b9d5/pywin32-228-cp35-cp35m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "5ba6f3ebe032b729c7a8aa4766aa45dd",
                    "sha256": "ec16d44b49b5f34e99eb97cf270806fdc560dff6f84d281eb2fcb89a014a56a9"
                },
                "downloads": -1,
                "filename": "pywin32-228-cp36-cp36m-win32.whl",
                "has_sig": false,
                "md5_digest": "5ba6f3ebe032b729c7a8aa4766aa45dd",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 8378251,
                "upload_time": "2020-06-13T05:47:06",
                "upload_time_iso_8601": "2020-06-13T05:47:06.112204Z",
                "url": "https://files.pythonhosted.org/packages/91/ce/f22a0bf24639d485a173d11a0367ddac420a6d30ab6adc1f07c6c2f4d463/pywin32-228-cp36-cp36m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "3a005903c42ac36d81a4f869b993d73c",
                    "sha256": "a60d795c6590a5b6baeacd16c583d91cce8038f959bd80c53bd9a68f40130f2d"
                },
                "downloads": -1,
                "filename": "pywin32-228-cp36-cp36m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "3a005903c42ac36d81a4f869b993d73c",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 9107006,
                "upload_time": "2020-06-13T05:47:22",
                "upload_time_iso_8601": "2020-06-13T05:47:22.395851Z",
                "url": "https://files.pythonhosted.org/packages/e7/8a/8458687e4f1a7978bd59f8fd0bc4e6c56cf640c551877ca9a3e35239ae5b/pywin32-228-cp36-cp36m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "2350ae562c64d4f51628cf35a38d5215",
                    "sha256": "af40887b6fc200eafe4d7742c48417529a8702dcc1a60bf89eee152d1d11209f"
                },
                "downloads": -1,
                "filename": "pywin32-228-cp37-cp37m-win32.whl",
                "has_sig": false,
                "md5_digest": "2350ae562c64d4f51628cf35a38d5215",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 8392402,
                "upload_time": "2020-06-13T05:47:36",
                "upload_time_iso_8601": "2020-06-13T05:47:36.482783Z",
                "url": "https://files.pythonhosted.org/packages/ac/4d/c92043875d217bb272da07f2cb859e41541d63af26d3ca4f04da05eb5396/pywin32-228-cp37-cp37m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "8f6bd00e6fcaa5ccdc5305d43c342611",
                    "sha256": "00eaf43dbd05ba6a9b0080c77e161e0b7a601f9a3f660727a952e40140537de7"
                },
                "downloads": -1,
                "filename": "pywin32-228-cp37-cp37m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "8f6bd00e6fcaa5ccdc5305d43c342611",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 9100091,
                "upload_time": "2020-06-13T05:47:52",
                "upload_time_iso_8601": "2020-06-13T05:47:52.037499Z",
                "url": "https://files.pythonhosted.org/packages/96/51/d46eb277182e0989a81cdc0933e97924b68b12519dfe62ae0ea5dec198dd/pywin32-228-cp37-cp37m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "a80488ad7ce3cbbb30b89ec3534dcc27",
                    "sha256": "fa6ba028909cfc64ce9e24bcf22f588b14871980d9787f1e2002c99af8f1850c"
                },
                "downloads": -1,
                "filename": "pywin32-228-cp38-cp38-win32.whl",
                "has_sig": false,
                "md5_digest": "a80488ad7ce3cbbb30b89ec3534dcc27",
                "packagetype": "bdist_wheel",
                "python_version": "cp38",
                "requires_python": null,
                "size": 8388013,
                "upload_time": "2020-06-13T05:48:02",
                "upload_time_iso_8601": "2020-06-13T05:48:02.633576Z",
                "url": "https://files.pythonhosted.org/packages/4c/6d/e47d8020c21849498d84fb9f75e4d7ab3414eebacb85fa7e1d61e34fae67/pywin32-228-cp38-cp38-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "ed6dd587fa0e984e16f748fccb804ebf",
                    "sha256": "9b3466083f8271e1a5eb0329f4e0d61925d46b40b195a33413e0905dccb285e8"
                },
                "downloads": -1,
                "filename": "pywin32-228-cp38-cp38-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "ed6dd587fa0e984e16f748fccb804ebf",
                "packagetype": "bdist_wheel",
                "python_version": "cp38",
                "requires_python": null,
                "size": 9098800,
                "upload_time": "2020-06-13T05:48:14",
                "upload_time_iso_8601": "2020-06-13T05:48:14.667059Z",
                "url": "https://files.pythonhosted.org/packages/d6/ef/db6c352b19eee9f944c03a6ae304ac7c5f96ef3b8429ec905b3e2c64a4af/pywin32-228-cp38-cp38-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "5a6771b9291f88a36e24f30ec7d02629",
                    "sha256": "ed74b72d8059a6606f64842e7917aeee99159ebd6b8d6261c518d002837be298"
                },
                "downloads": -1,
                "filename": "pywin32-228-cp39-cp39-win32.whl",
                "has_sig": false,
                "md5_digest": "5a6771b9291f88a36e24f30ec7d02629",
                "packagetype": "bdist_wheel",
                "python_version": "cp39",
                "requires_python": null,
                "size": 8387936,
                "upload_time": "2020-06-13T05:48:30",
                "upload_time_iso_8601": "2020-06-13T05:48:30.546218Z",
                "url": "https://files.pythonhosted.org/packages/70/7a/420a1ce8cfb2d4a72e84d9a1920ad13af515a8bffb1c999333391148d0e0/pywin32-228-cp39-cp39-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "3372777b36502a6b36668f57af881e03",
                    "sha256": "8319bafdcd90b7202c50d6014efdfe4fde9311b3ff15fd6f893a45c0868de203"
                },
                "downloads": -1,
                "filename": "pywin32-228-cp39-cp39-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "3372777b36502a6b36668f57af881e03",
                "packagetype": "bdist_wheel",
                "python_version": "cp39",
                "requires_python": null,
                "size": 9129301,
                "upload_time": "2020-06-13T05:48:44",
                "upload_time_iso_8601": "2020-06-13T05:48:44.923457Z",
                "url": "https://files.pythonhosted.org/packages/41/1f/a08446b6b2f55b79eb13befa0feb703bb4b3792b977d6c385edafc2b624a/pywin32-228-cp39-cp39-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "300": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "ab7c25fc97fa9a85cd1bde47cfbce069",
                    "sha256": "1c204a81daed2089e55d11eefa4826c05e604d27fe2be40b6bf8db7b6a39da63"
                },
                "downloads": -1,
                "filename": "pywin32-300-cp35-cp35m-win32.whl",
                "has_sig": false,
                "md5_digest": "ab7c25fc97fa9a85cd1bde47cfbce069",
                "packagetype": "bdist_wheel",
                "python_version": "cp35",
                "requires_python": null,
                "size": 8453150,
                "upload_time": "2020-11-14T06:24:11",
                "upload_time_iso_8601": "2020-11-14T06:24:11.390854Z",
                "url": "https://files.pythonhosted.org/packages/a9/f4/48f406e208db08acd6444867e7673effa2b424b38bc85d336fc98234c2ce/pywin32-300-cp35-cp35m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "98185e65365c81e46f2361a7e0867e4d",
                    "sha256": "350c5644775736351b77ba68da09a39c760d75d2467ecec37bd3c36a94fbed64"
                },
                "downloads": -1,
                "filename": "pywin32-300-cp35-cp35m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "98185e65365c81e46f2361a7e0867e4d",
                "packagetype": "bdist_wheel",
                "python_version": "cp35",
                "requires_python": null,
                "size": 9232121,
                "upload_time": "2020-11-14T06:24:20",
                "upload_time_iso_8601": "2020-11-14T06:24:20.517993Z",
                "url": "https://files.pythonhosted.org/packages/72/77/b02f15f1a488c015f9d41dda1c83d97af8dc9c98f8dab5d4894fd01c4ee4/pywin32-300-cp35-cp35m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "c39b7421cb516b4f2133ca4e6f80893f",
                    "sha256": "a3b4c48c852d4107e8a8ec980b76c94ce596ea66d60f7a697582ea9dce7e0db7"
                },
                "downloads": -1,
                "filename": "pywin32-300-cp36-cp36m-win32.whl",
                "has_sig": false,
                "md5_digest": "c39b7421cb516b4f2133ca4e6f80893f",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 8454030,
                "upload_time": "2020-11-14T06:24:28",
                "upload_time_iso_8601": "2020-11-14T06:24:28.267479Z",
                "url": "https://files.pythonhosted.org/packages/9d/bf/c45959eaf99f56aa7e13d27a6b730eafb7ee0a94b5562b1f04444c25545f/pywin32-300-cp36-cp36m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "8bed80b732760c1f41a657b493376dc5",
                    "sha256": "27a30b887afbf05a9cbb05e3ffd43104a9b71ce292f64a635389dbad0ed1cd85"
                },
                "downloads": -1,
                "filename": "pywin32-300-cp36-cp36m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "8bed80b732760c1f41a657b493376dc5",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 9232549,
                "upload_time": "2020-11-14T06:24:36",
                "upload_time_iso_8601": "2020-11-14T06:24:36.843890Z",
                "url": "https://files.pythonhosted.org/packages/e3/7c/4337532a595288e4eabbbca09e9dd47f924b0fbb25a66b98bc21fe4a2551/pywin32-300-cp36-cp36m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "a86203ac04b92ff70aed2aae9a5563a1",
                    "sha256": "d7e8c7efc221f10d6400c19c32a031add1c4a58733298c09216f57b4fde110dc"
                },
                "downloads": -1,
                "filename": "pywin32-300-cp37-cp37m-win32.whl",
                "has_sig": false,
                "md5_digest": "a86203ac04b92ff70aed2aae9a5563a1",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 8452662,
                "upload_time": "2020-11-14T06:24:44",
                "upload_time_iso_8601": "2020-11-14T06:24:44.663069Z",
                "url": "https://files.pythonhosted.org/packages/2e/4e/aa126480d86d448924453ec77421ae97b558c650468c0cb9bc5d693058bf/pywin32-300-cp37-cp37m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "f4b04bad2db52ad5ddda48d72b8c2bc8",
                    "sha256": "8151e4d7a19262d6694162d6da85d99a16f8b908949797fd99c83a0bfaf5807d"
                },
                "downloads": -1,
                "filename": "pywin32-300-cp37-cp37m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "f4b04bad2db52ad5ddda48d72b8c2bc8",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 9229666,
                "upload_time": "2020-11-14T06:24:52",
                "upload_time_iso_8601": "2020-11-14T06:24:52.857953Z",
                "url": "https://files.pythonhosted.org/packages/25/54/177ee28fec4ecd23fa539f3df78067e7a4927515b84eac34e36060fcdb8d/pywin32-300-cp37-cp37m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "d357fad4ba95760d1b0471c4a7ab8f6b",
                    "sha256": "fbb3b1b0fbd0b4fc2a3d1d81fe0783e30062c1abed1d17c32b7879d55858cfae"
                },
                "downloads": -1,
                "filename": "pywin32-300-cp38-cp38-win32.whl",
                "has_sig": false,
                "md5_digest": "d357fad4ba95760d1b0471c4a7ab8f6b",
                "packagetype": "bdist_wheel",
                "python_version": "cp38",
                "requires_python": null,
                "size": 8469619,
                "upload_time": "2020-11-14T06:25:00",
                "upload_time_iso_8601": "2020-11-14T06:25:00.614902Z",
                "url": "https://files.pythonhosted.org/packages/b8/11/bf4377e5a2e758ad762883b5b686bc04b4320a9f694ce687da4d7e974059/pywin32-300-cp38-cp38-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "bb1e6f0a059e9b23730a02bb666c1de7",
                    "sha256": "60a8fa361091b2eea27f15718f8eb7f9297e8d51b54dbc4f55f3d238093d5190"
                },
                "downloads": -1,
                "filename": "pywin32-300-cp38-cp38-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "bb1e6f0a059e9b23730a02bb666c1de7",
                "packagetype": "bdist_wheel",
                "python_version": "cp38",
                "requires_python": null,
                "size": 9251887,
                "upload_time": "2020-11-14T06:25:10",
                "upload_time_iso_8601": "2020-11-14T06:25:10.107875Z",
                "url": "https://files.pythonhosted.org/packages/a3/ca/d4011eb7f4cb4948e9b0c369d2922ffc75035a78ba190206e3e8bd294839/pywin32-300-cp38-cp38-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "8df1637000ac84a2b1d8bbb1064a2772",
                    "sha256": "638b68eea5cfc8def537e43e9554747f8dee786b090e47ead94bfdafdb0f2f50"
                },
                "downloads": -1,
                "filename": "pywin32-300-cp39-cp39-win32.whl",
                "has_sig": false,
                "md5_digest": "8df1637000ac84a2b1d8bbb1064a2772",
                "packagetype": "bdist_wheel",
                "python_version": "cp39",
                "requires_python": null,
                "size": 8461383,
                "upload_time": "2020-11-14T06:25:20",
                "upload_time_iso_8601": "2020-11-14T06:25:20.366607Z",
                "url": "https://files.pythonhosted.org/packages/51/b2/09791fbc5a1004e737173c123a1660c6701bf39b8809913f9a3f64ff954c/pywin32-300-cp39-cp39-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "0c55e2c5ebd3a0bc915514ecdb6c1340",
                    "sha256": "b1609ce9bd5c411b81f941b246d683d6508992093203d4eb7f278f4ed1085c3f"
                },
                "downloads": -1,
                "filename": "pywin32-300-cp39-cp39-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "0c55e2c5ebd3a0bc915514ecdb6c1340",
                "packagetype": "bdist_wheel",
                "python_version": "cp39",
                "requires_python": null,
                "size": 9245415,
                "upload_time": "2020-11-14T06:25:30",
                "upload_time_iso_8601": "2020-11-14T06:25:30.369811Z",
                "url": "https://files.pythonhosted.org/packages/97/e3/cca8a7ca9bcbd756157f371e885dc64da10b2f9a74af2e89675576560e11/pywin32-300-cp39-cp39-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "301": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "044ff8954c793795e2e23d45abb02440",
                    "sha256": "93367c96e3a76dfe5003d8291ae16454ca7d84bb24d721e0b74a07610b7be4a7"
                },
                "downloads": -1,
                "filename": "pywin32-301-cp35-cp35m-win32.whl",
                "has_sig": false,
                "md5_digest": "044ff8954c793795e2e23d45abb02440",
                "packagetype": "bdist_wheel",
                "python_version": "cp35",
                "requires_python": null,
                "size": 8468431,
                "upload_time": "2021-05-30T09:06:43",
                "upload_time_iso_8601": "2021-05-30T09:06:43.962482Z",
                "url": "https://files.pythonhosted.org/packages/68/ce/598fa78c2f475dfd7d24fc66e608ab2579d03a696ed6d1a3cb2cb96ad4b7/pywin32-301-cp35-cp35m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "657938fd5f417843f0522bf3f5cdbab3",
                    "sha256": "9635df6998a70282bd36e7ac2a5cef9ead1627b0a63b17c731312c7a0daebb72"
                },
                "downloads": -1,
                "filename": "pywin32-301-cp35-cp35m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "657938fd5f417843f0522bf3f5cdbab3",
                "packagetype": "bdist_wheel",
                "python_version": "cp35",
                "requires_python": null,
                "size": 9248053,
                "upload_time": "2021-05-30T09:07:02",
                "upload_time_iso_8601": "2021-05-30T09:07:02.534505Z",
                "url": "https://files.pythonhosted.org/packages/fc/2a/a91ab99796b7321359bcd1f85f95bdfdbe05b888b36e8a7a7cda1cbec8e1/pywin32-301-cp35-cp35m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "d4f772b4ddd995d945767e518df5ca50",
                    "sha256": "c866f04a182a8cb9b7855de065113bbd2e40524f570db73ef1ee99ff0a5cc2f0"
                },
                "downloads": -1,
                "filename": "pywin32-301-cp36-cp36m-win32.whl",
                "has_sig": false,
                "md5_digest": "d4f772b4ddd995d945767e518df5ca50",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 8468987,
                "upload_time": "2021-05-30T09:07:25",
                "upload_time_iso_8601": "2021-05-30T09:07:25.725189Z",
                "url": "https://files.pythonhosted.org/packages/ec/98/e4169c08b2d45e8a16b3b61c8d6b5a17c732ba604297b1174a427b4847cd/pywin32-301-cp36-cp36m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "9b8b83dcc3aff8a487c41b8a70ed636a",
                    "sha256": "dafa18e95bf2a92f298fe9c582b0e205aca45c55f989937c52c454ce65b93c78"
                },
                "downloads": -1,
                "filename": "pywin32-301-cp36-cp36m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "9b8b83dcc3aff8a487c41b8a70ed636a",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 9248408,
                "upload_time": "2021-05-30T09:07:44",
                "upload_time_iso_8601": "2021-05-30T09:07:44.016703Z",
                "url": "https://files.pythonhosted.org/packages/c6/21/bb0ff995c5f67786fb3d6ffbfc5160ed89d7267862123a10e0a4a2d924db/pywin32-301-cp36-cp36m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "1c0068b62cb2fb14a34974a507eb8674",
                    "sha256": "98f62a3f60aa64894a290fb7494bfa0bfa0a199e9e052e1ac293b2ad3cd2818b"
                },
                "downloads": -1,
                "filename": "pywin32-301-cp37-cp37m-win32.whl",
                "has_sig": false,
                "md5_digest": "1c0068b62cb2fb14a34974a507eb8674",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 8465769,
                "upload_time": "2021-05-30T09:07:59",
                "upload_time_iso_8601": "2021-05-30T09:07:59.702129Z",
                "url": "https://files.pythonhosted.org/packages/0b/75/b7848a682b83dbb2d56ed137ca49e67308fd0ec5260de0efa9ed949cf615/pywin32-301-cp37-cp37m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "0838d344ac085b10768fc85ab39988d9",
                    "sha256": "fb3b4933e0382ba49305cc6cd3fb18525df7fd96aa434de19ce0878133bf8e4a"
                },
                "downloads": -1,
                "filename": "pywin32-301-cp37-cp37m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "0838d344ac085b10768fc85ab39988d9",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 9244236,
                "upload_time": "2021-05-30T09:08:28",
                "upload_time_iso_8601": "2021-05-30T09:08:28.451004Z",
                "url": "https://files.pythonhosted.org/packages/84/e0/f7c34be2e080c248e378109c3a848cd07ab8e45e11d8dc9f1d818b3940c7/pywin32-301-cp37-cp37m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "338a106207120415fa8a1d7b1ea79fe9",
                    "sha256": "88981dd3cfb07432625b180f49bf4e179fb8cbb5704cd512e38dd63636af7a17"
                },
                "downloads": -1,
                "filename": "pywin32-301-cp38-cp38-win32.whl",
                "has_sig": false,
                "md5_digest": "338a106207120415fa8a1d7b1ea79fe9",
                "packagetype": "bdist_wheel",
                "python_version": "cp38",
                "requires_python": null,
                "size": 8483613,
                "upload_time": "2021-05-31T00:47:57",
                "upload_time_iso_8601": "2021-05-31T00:47:57.296333Z",
                "url": "https://files.pythonhosted.org/packages/0f/97/6c5a74830c5cfb8310fb291eadd95e8956fb5085673955cbcfb3f6b929c6/pywin32-301-cp38-cp38-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "df1801730fc6e0d8a2e45119334e1cb2",
                    "sha256": "8c9d33968aa7fcddf44e47750e18f3d034c3e443a707688a008a2e52bbef7e96"
                },
                "downloads": -1,
                "filename": "pywin32-301-cp38-cp38-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "df1801730fc6e0d8a2e45119334e1cb2",
                "packagetype": "bdist_wheel",
                "python_version": "cp38",
                "requires_python": null,
                "size": 9266032,
                "upload_time": "2021-05-31T00:48:13",
                "upload_time_iso_8601": "2021-05-31T00:48:13.157476Z",
                "url": "https://files.pythonhosted.org/packages/cb/38/391371466109bd26a02047b9392fa6b0c1777deadb2f8cd4d2f699bf4574/pywin32-301-cp38-cp38-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "cc26fad56c0bc1f1d9cb6bf0d08fe391",
                    "sha256": "595d397df65f1b2e0beaca63a883ae6d8b6df1cdea85c16ae85f6d2e648133fe"
                },
                "downloads": -1,
                "filename": "pywin32-301-cp39-cp39-win32.whl",
                "has_sig": false,
                "md5_digest": "cc26fad56c0bc1f1d9cb6bf0d08fe391",
                "packagetype": "bdist_wheel",
                "python_version": "cp39",
                "requires_python": null,
                "size": 8475023,
                "upload_time": "2021-05-31T00:47:27",
                "upload_time_iso_8601": "2021-05-31T00:47:27.651129Z",
                "url": "https://files.pythonhosted.org/packages/d2/62/2c1db93c2ac7ee7f8fd91d4139905b17e91d62015848b5adaa10a6307372/pywin32-301-cp39-cp39-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "3fe9793d6bee6e9b6515bc744f7585df",
                    "sha256": "87604a4087434cd814ad8973bd47d6524bd1fa9e971ce428e76b62a5e0860fdf"
                },
                "downloads": -1,
                "filename": "pywin32-301-cp39-cp39-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "3fe9793d6bee6e9b6515bc744f7585df",
                "packagetype": "bdist_wheel",
                "python_version": "cp39",
                "requires_python": null,
                "size": 9259914,
                "upload_time": "2021-05-31T00:47:35",
                "upload_time_iso_8601": "2021-05-31T00:47:35.408653Z",
                "url": "https://files.pythonhosted.org/packages/5f/97/7a9d7028977390a9692d7176c85e51750c8e431503fc02ab3e54a8e0dcad/pywin32-301-cp39-cp39-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "302": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "4fab38ab4b1f12fecf30687ee36b385a",
                    "sha256": "251b7a9367355ccd1a4cd69cd8dd24bd57b29ad83edb2957cfa30f7ed9941efa"
                },
                "downloads": -1,
                "filename": "pywin32-302-cp310-cp310-win32.whl",
                "has_sig": false,
                "md5_digest": "4fab38ab4b1f12fecf30687ee36b385a",
                "packagetype": "bdist_wheel",
                "python_version": "cp310",
                "requires_python": null,
                "size": 8414034,
                "upload_time": "2021-10-11T00:00:07",
                "upload_time_iso_8601": "2021-10-11T00:00:07.775430Z",
                "url": "https://files.pythonhosted.org/packages/aa/de/df415649e1caf8cbd703ac65696230d38fc2cbf6fdbe597d84c57c82d323/pywin32-302-cp310-cp310-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "2d42604db1fe2b59eac26add634a2bdb",
                    "sha256": "79cf7e6ddaaf1cd47a9e50cc74b5d770801a9db6594464137b1b86aa91edafcc"
                },
                "downloads": -1,
                "filename": "pywin32-302-cp310-cp310-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "2d42604db1fe2b59eac26add634a2bdb",
                "packagetype": "bdist_wheel",
                "python_version": "cp310",
                "requires_python": null,
                "size": 9182661,
                "upload_time": "2021-10-11T00:00:44",
                "upload_time_iso_8601": "2021-10-11T00:00:44.333477Z",
                "url": "https://files.pythonhosted.org/packages/69/c7/4928e67c9ce73348c2ac121df55811a718d7185d748a9a376695b2c39d7e/pywin32-302-cp310-cp310-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "67d87eba0385d5a12ac0322e110dd95f",
                    "sha256": "fe21c2fb332d03dac29de070f191bdbf14095167f8f2165fdc57db59b1ecc006"
                },
                "downloads": -1,
                "filename": "pywin32-302-cp36-cp36m-win32.whl",
                "has_sig": false,
                "md5_digest": "67d87eba0385d5a12ac0322e110dd95f",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 10271752,
                "upload_time": "2021-10-11T00:01:42",
                "upload_time_iso_8601": "2021-10-11T00:01:42.095693Z",
                "url": "https://files.pythonhosted.org/packages/24/e4/8cfef4a67b5e985323761c894d94584817029b405969a00a2f265dfba943/pywin32-302-cp36-cp36m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "ce33d7f6598e1ac79fa08298b88726f8",
                    "sha256": "d3761ab4e8c5c2dbc156e2c9ccf38dd51f936dc77e58deb940ffbc4b82a30528"
                },
                "downloads": -1,
                "filename": "pywin32-302-cp36-cp36m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "ce33d7f6598e1ac79fa08298b88726f8",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 11459517,
                "upload_time": "2021-10-11T00:03:15",
                "upload_time_iso_8601": "2021-10-11T00:03:15.558915Z",
                "url": "https://files.pythonhosted.org/packages/3c/a5/0acb70bd455a03da901d418e5f4fe4be99bbd762519193bbd3705bec0305/pywin32-302-cp36-cp36m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "437956ec44bdc3e321f334aa99a32a22",
                    "sha256": "48dd4e348f1ee9538dd4440bf201ea8c110ea6d9f3a5010d79452e9fa80480d9"
                },
                "downloads": -1,
                "filename": "pywin32-302-cp37-cp37m-win32.whl",
                "has_sig": false,
                "md5_digest": "437956ec44bdc3e321f334aa99a32a22",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 8466887,
                "upload_time": "2021-10-11T00:04:15",
                "upload_time_iso_8601": "2021-10-11T00:04:15.195301Z",
                "url": "https://files.pythonhosted.org/packages/c6/3e/e81f822cd24fda9268eb77f5c30199084f860ad9a7731978e95eaceb5d9e/pywin32-302-cp37-cp37m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "0a15603a4d6bc635e4ef73f50c485ce4",
                    "sha256": "496df89f10c054c9285cc99f9d509e243f4e14ec8dfc6d78c9f0bf147a893ab1"
                },
                "downloads": -1,
                "filename": "pywin32-302-cp37-cp37m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "0a15603a4d6bc635e4ef73f50c485ce4",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 9245685,
                "upload_time": "2021-10-11T00:05:11",
                "upload_time_iso_8601": "2021-10-11T00:05:11.864891Z",
                "url": "https://files.pythonhosted.org/packages/06/6b/ec826577b89db0b90dbe1f01165d0694bed605c1b2843195b3356140472f/pywin32-302-cp37-cp37m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "8562fa62d85ef97a28e2ac0586cc8008",
                    "sha256": "e372e477d938a49266136bff78279ed14445e00718b6c75543334351bf535259"
                },
                "downloads": -1,
                "filename": "pywin32-302-cp38-cp38-win32.whl",
                "has_sig": false,
                "md5_digest": "8562fa62d85ef97a28e2ac0586cc8008",
                "packagetype": "bdist_wheel",
                "python_version": "cp38",
                "requires_python": null,
                "size": 8484919,
                "upload_time": "2021-10-11T00:05:49",
                "upload_time_iso_8601": "2021-10-11T00:05:49.583084Z",
                "url": "https://files.pythonhosted.org/packages/2d/38/1adf3b5e97f315bb439501ef08f8ccc0ee066e2dff497e1082f8dc62b137/pywin32-302-cp38-cp38-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "add80c775638f4734da0ac8c34ce1531",
                    "sha256": "543552e66936378bd2d673c5a0a3d9903dba0b0a87235ef0c584f058ceef5872"
                },
                "downloads": -1,
                "filename": "pywin32-302-cp38-cp38-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "add80c775638f4734da0ac8c34ce1531",
                "packagetype": "bdist_wheel",
                "python_version": "cp38",
                "requires_python": null,
                "size": 9267263,
                "upload_time": "2021-10-11T00:06:38",
                "upload_time_iso_8601": "2021-10-11T00:06:38.511012Z",
                "url": "https://files.pythonhosted.org/packages/b1/e6/ddf43219ac2b2145b73bb7dc2163abbf0ea83a6d01ff7284b053eaf531e7/pywin32-302-cp38-cp38-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "7854a56bdc21a51a4fa58f157df7b517",
                    "sha256": "2393c1a40dc4497fd6161b76801b8acd727c5610167762b7c3e9fd058ef4a6ab"
                },
                "downloads": -1,
                "filename": "pywin32-302-cp39-cp39-win32.whl",
                "has_sig": false,
                "md5_digest": "7854a56bdc21a51a4fa58f157df7b517",
                "packagetype": "bdist_wheel",
                "python_version": "cp39",
                "requires_python": null,
                "size": 8475719,
                "upload_time": "2021-10-11T00:07:28",
                "upload_time_iso_8601": "2021-10-11T00:07:28.327018Z",
                "url": "https://files.pythonhosted.org/packages/fd/98/1c57a1e0f0f2a7204189f18f9fd4ce46e87e4c8996968dae58febc4cea92/pywin32-302-cp39-cp39-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "6b3e270ea1a753f0faa98cfda95f8603",
                    "sha256": "af5aea18167a31efcacc9f98a2ca932c6b6a6d91ebe31f007509e293dea12580"
                },
                "downloads": -1,
                "filename": "pywin32-302-cp39-cp39-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "6b3e270ea1a753f0faa98cfda95f8603",
                "packagetype": "bdist_wheel",
                "python_version": "cp39",
                "requires_python": null,
                "size": 9261516,
                "upload_time": "2021-10-11T00:08:17",
                "upload_time_iso_8601": "2021-10-11T00:08:17.608911Z",
                "url": "https://files.pythonhosted.org/packages/0a/db/6772985c99b5770875b677163de3be6f83b91b8791fddfc6f251f6bf5ce4/pywin32-302-cp39-cp39-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "303": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "c53ef056ffad392ede0223827223bc7d",
                    "sha256": "6fed4af057039f309263fd3285d7b8042d41507343cd5fa781d98fcc5b90e8bb"
                },
                "downloads": -1,
                "filename": "pywin32-303-cp310-cp310-win32.whl",
                "has_sig": false,
                "md5_digest": "c53ef056ffad392ede0223827223bc7d",
                "packagetype": "bdist_wheel",
                "python_version": "cp310",
                "requires_python": null,
                "size": 8416705,
                "upload_time": "2021-12-20T01:31:04",
                "upload_time_iso_8601": "2021-12-20T01:31:04.670923Z",
                "url": "https://files.pythonhosted.org/packages/b7/d4/6f3f7697acba4f2e732b3519dd9ba7b045b2d61f5fe750dbf16baf894f2c/pywin32-303-cp310-cp310-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "51039c98a3cb7ae2d7377a63b8bdb32d",
                    "sha256": "51cb52c5ec6709f96c3f26e7795b0bf169ee0d8395b2c1d7eb2c029a5008ed51"
                },
                "downloads": -1,
                "filename": "pywin32-303-cp310-cp310-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "51039c98a3cb7ae2d7377a63b8bdb32d",
                "packagetype": "bdist_wheel",
                "python_version": "cp310",
                "requires_python": null,
                "size": 9185409,
                "upload_time": "2021-12-20T01:31:18",
                "upload_time_iso_8601": "2021-12-20T01:31:18.523365Z",
                "url": "https://files.pythonhosted.org/packages/ea/48/aed127b4d366c22646355817d579a209f7646ec9e595e8495d0ca4b0ba12/pywin32-303-cp310-cp310-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "327bf211e1162f5fa25600ec7de32566",
                    "sha256": "d9b5d87ca944eb3aa4cd45516203ead4b37ab06b8b777c54aedc35975dec0dee"
                },
                "downloads": -1,
                "filename": "pywin32-303-cp311-cp311-win32.whl",
                "has_sig": false,
                "md5_digest": "327bf211e1162f5fa25600ec7de32566",
                "packagetype": "bdist_wheel",
                "python_version": "cp311",
                "requires_python": null,
                "size": 8416918,
                "upload_time": "2021-12-20T01:31:33",
                "upload_time_iso_8601": "2021-12-20T01:31:33.296902Z",
                "url": "https://files.pythonhosted.org/packages/43/2f/d6d0e693a578989f73074da8cab76e3fb312a8e246d10b67dd7caba81e52/pywin32-303-cp311-cp311-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "22e497e10d3809ba555b84d2331fbc75",
                    "sha256": "fcf44032f5b14fcda86028cdf49b6ebdaea091230eb0a757282aa656e4732439"
                },
                "downloads": -1,
                "filename": "pywin32-303-cp311-cp311-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "22e497e10d3809ba555b84d2331fbc75",
                "packagetype": "bdist_wheel",
                "python_version": "cp311",
                "requires_python": null,
                "size": 9185632,
                "upload_time": "2021-12-20T01:31:48",
                "upload_time_iso_8601": "2021-12-20T01:31:48.427344Z",
                "url": "https://files.pythonhosted.org/packages/04/9f/79b2fb648c977bedabae0f0cd468ad39828b449589d083bc201bd489b63e/pywin32-303-cp311-cp311-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "8efb0b4cd0c7dc7a201f8b8321eb8dcc",
                    "sha256": "aad484d52ec58008ca36bd4ad14a71d7dd0a99db1a4ca71072213f63bf49c7d9"
                },
                "downloads": -1,
                "filename": "pywin32-303-cp36-cp36m-win32.whl",
                "has_sig": false,
                "md5_digest": "8efb0b4cd0c7dc7a201f8b8321eb8dcc",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 8473574,
                "upload_time": "2021-12-20T02:03:02",
                "upload_time_iso_8601": "2021-12-20T02:03:02.874372Z",
                "url": "https://files.pythonhosted.org/packages/d6/57/d800fbffa36a1ee2685fefb0e7a8c357ca60650be5d2d02a83b9a5bcbc0d/pywin32-303-cp36-cp36m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "f83bb150667fc032813eb37989b5a9b8",
                    "sha256": "2a09632916b6bb231ba49983fe989f2f625cea237219530e81a69239cd0c4559"
                },
                "downloads": -1,
                "filename": "pywin32-303-cp36-cp36m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "f83bb150667fc032813eb37989b5a9b8",
                "packagetype": "bdist_wheel",
                "python_version": "cp36",
                "requires_python": null,
                "size": 9252769,
                "upload_time": "2021-12-20T02:03:20",
                "upload_time_iso_8601": "2021-12-20T02:03:20.757586Z",
                "url": "https://files.pythonhosted.org/packages/67/72/fd5be391e85cc19f218504afb25980be1b8a7b20158710ac62593a68367f/pywin32-303-cp36-cp36m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "d74dd1a6d8154f9af59b89d43b7c19c8",
                    "sha256": "b1675d82bcf6dbc96363fca747bac8bff6f6e4a447a4287ac652aa4b9adc796e"
                },
                "downloads": -1,
                "filename": "pywin32-303-cp37-cp37m-win32.whl",
                "has_sig": false,
                "md5_digest": "d74dd1a6d8154f9af59b89d43b7c19c8",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 8469642,
                "upload_time": "2021-12-20T02:03:35",
                "upload_time_iso_8601": "2021-12-20T02:03:35.414731Z",
                "url": "https://files.pythonhosted.org/packages/f7/74/b53ee028aa8b8627159648e6c4790ce21853c8666a4d690f0a3d7dc1c1ce/pywin32-303-cp37-cp37m-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "430145cf147cb7d5bba0cc5165f91e5e",
                    "sha256": "c268040769b48a13367221fced6d4232ed52f044ffafeda247bd9d2c6bdc29ca"
                },
                "downloads": -1,
                "filename": "pywin32-303-cp37-cp37m-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "430145cf147cb7d5bba0cc5165f91e5e",
                "packagetype": "bdist_wheel",
                "python_version": "cp37",
                "requires_python": null,
                "size": 9248468,
                "upload_time": "2021-12-20T02:03:53",
                "upload_time_iso_8601": "2021-12-20T02:03:53.536773Z",
                "url": "https://files.pythonhosted.org/packages/f3/bd/414d8ca015c2f392ae01a82a77de52aa944e261e3da647584a7425a2e506/pywin32-303-cp37-cp37m-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "1b465c9ce3bfc645543f40dfe0463a0f",
                    "sha256": "5f9ec054f5a46a0f4dfd72af2ce1372f3d5a6e4052af20b858aa7df2df7d355b"
                },
                "downloads": -1,
                "filename": "pywin32-303-cp38-cp38-win32.whl",
                "has_sig": false,
                "md5_digest": "1b465c9ce3bfc645543f40dfe0463a0f",
                "packagetype": "bdist_wheel",
                "python_version": "cp38",
                "requires_python": null,
                "size": 8487666,
                "upload_time": "2021-12-20T02:04:09",
                "upload_time_iso_8601": "2021-12-20T02:04:09.058194Z",
                "url": "https://files.pythonhosted.org/packages/98/31/8fc65bc0c3d2924b3c53c41c12071b36f196b21da1ef1d4fa5ef549f69a9/pywin32-303-cp38-cp38-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "0bd708d116dad078eb9c748ff04e01ce",
                    "sha256": "793bf74fce164bcffd9d57bb13c2c15d56e43c9542a7b9687b4fccf8f8a41aba"
                },
                "downloads": -1,
                "filename": "pywin32-303-cp38-cp38-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "0bd708d116dad078eb9c748ff04e01ce",
                "packagetype": "bdist_wheel",
                "python_version": "cp38",
                "requires_python": null,
                "size": 9270061,
                "upload_time": "2021-12-20T02:04:21",
                "upload_time_iso_8601": "2021-12-20T02:04:21.935115Z",
                "url": "https://files.pythonhosted.org/packages/95/f3/c3f91dfabdcbf5a6cd7e94789d06e2874ef34e66d5b27fc4d8030fffcc6f/pywin32-303-cp38-cp38-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "9b85795bf4afe43d3fa04476cf4ae897",
                    "sha256": "7d3271c98434617a11921c5ccf74615794d97b079e22ed7773790822735cc352"
                },
                "downloads": -1,
                "filename": "pywin32-303-cp39-cp39-win32.whl",
                "has_sig": false,
                "md5_digest": "9b85795bf4afe43d3fa04476cf4ae897",
                "packagetype": "bdist_wheel",
                "python_version": "cp39",
                "requires_python": null,
                "size": 8478426,
                "upload_time": "2021-12-20T02:04:37",
                "upload_time_iso_8601": "2021-12-20T02:04:37.250711Z",
                "url": "https://files.pythonhosted.org/packages/4a/4d/e6129d76538053dcef6fd54ff8a03fe602d5282339a9209b859b82d32bc5/pywin32-303-cp39-cp39-win32.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "62d5cdea7cb26a239c79f905a0d897f6",
                    "sha256": "79cbb862c11b9af19bcb682891c1b91942ec2ff7de8151e2aea2e175899cda34"
                },
                "downloads": -1,
                "filename": "pywin32-303-cp39-cp39-win_amd64.whl",
                "has_sig": false,
                "md5_digest": "62d5cdea7cb26a239c79f905a0d897f6",
                "packagetype": "bdist_wheel",
                "python_version": "cp39",
                "requires_python": null,
                "size": 9264302,
                "upload_time": "2021-12-20T02:04:54",
                "upload_time_iso_8601": "2021-12-20T02:04:54.257350Z",
                "url": "https://files.pythonhosted.org/packages/9a/ad/a11ddf08e5af48cf2c34f0fcb83ed7ea79f8a6e7710364b1fa3498bda634/pywin32-303-cp39-cp39-win_amd64.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ]
    },
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "c53ef056ffad392ede0223827223bc7d",
                "sha256": "6fed4af057039f309263fd3285d7b8042d41507343cd5fa781d98fcc5b90e8bb"
            },
            "downloads": -1,
            "filename": "pywin32-303-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "c53ef056ffad392ede0223827223bc7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 8416705,
            "upload_time": "2021-12-20T01:31:04",
            "upload_time_iso_8601": "2021-12-20T01:31:04.670923Z",
            "url": "https://files.pythonhosted.org/packages/b7/d4/6f3f7697acba4f2e732b3519dd9ba7b045b2d61f5fe750dbf16baf894f2c/pywin32-303-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "51039c98a3cb7ae2d7377a63b8bdb32d",
                "sha256": "51cb52c5ec6709f96c3f26e7795b0bf169ee0d8395b2c1d7eb2c029a5008ed51"
            },
            "downloads": -1,
            "filename": "pywin32-303-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "51039c98a3cb7ae2d7377a63b8bdb32d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 9185409,
            "upload_time": "2021-12-20T01:31:18",
            "upload_time_iso_8601": "2021-12-20T01:31:18.523365Z",
            "url": "https://files.pythonhosted.org/packages/ea/48/aed127b4d366c22646355817d579a209f7646ec9e595e8495d0ca4b0ba12/pywin32-303-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "327bf211e1162f5fa25600ec7de32566",
                "sha256": "d9b5d87ca944eb3aa4cd45516203ead4b37ab06b8b777c54aedc35975dec0dee"
            },
            "downloads": -1,
            "filename": "pywin32-303-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "327bf211e1162f5fa25600ec7de32566",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 8416918,
            "upload_time": "2021-12-20T01:31:33",
            "upload_time_iso_8601": "2021-12-20T01:31:33.296902Z",
            "url": "https://files.pythonhosted.org/packages/43/2f/d6d0e693a578989f73074da8cab76e3fb312a8e246d10b67dd7caba81e52/pywin32-303-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "22e497e10d3809ba555b84d2331fbc75",
                "sha256": "fcf44032f5b14fcda86028cdf49b6ebdaea091230eb0a757282aa656e4732439"
            },
            "downloads": -1,
            "filename": "pywin32-303-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "22e497e10d3809ba555b84d2331fbc75",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 9185632,
            "upload_time": "2021-12-20T01:31:48",
            "upload_time_iso_8601": "2021-12-20T01:31:48.427344Z",
            "url": "https://files.pythonhosted.org/packages/04/9f/79b2fb648c977bedabae0f0cd468ad39828b449589d083bc201bd489b63e/pywin32-303-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "8efb0b4cd0c7dc7a201f8b8321eb8dcc",
                "sha256": "aad484d52ec58008ca36bd4ad14a71d7dd0a99db1a4ca71072213f63bf49c7d9"
            },
            "downloads": -1,
            "filename": "pywin32-303-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "8efb0b4cd0c7dc7a201f8b8321eb8dcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 8473574,
            "upload_time": "2021-12-20T02:03:02",
            "upload_time_iso_8601": "2021-12-20T02:03:02.874372Z",
            "url": "https://files.pythonhosted.org/packages/d6/57/d800fbffa36a1ee2685fefb0e7a8c357ca60650be5d2d02a83b9a5bcbc0d/pywin32-303-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "f83bb150667fc032813eb37989b5a9b8",
                "sha256": "2a09632916b6bb231ba49983fe989f2f625cea237219530e81a69239cd0c4559"
            },
            "downloads": -1,
            "filename": "pywin32-303-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f83bb150667fc032813eb37989b5a9b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 9252769,
            "upload_time": "2021-12-20T02:03:20",
            "upload_time_iso_8601": "2021-12-20T02:03:20.757586Z",
            "url": "https://files.pythonhosted.org/packages/67/72/fd5be391e85cc19f218504afb25980be1b8a7b20158710ac62593a68367f/pywin32-303-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d74dd1a6d8154f9af59b89d43b7c19c8",
                "sha256": "b1675d82bcf6dbc96363fca747bac8bff6f6e4a447a4287ac652aa4b9adc796e"
            },
            "downloads": -1,
            "filename": "pywin32-303-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "d74dd1a6d8154f9af59b89d43b7c19c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 8469642,
            "upload_time": "2021-12-20T02:03:35",
            "upload_time_iso_8601": "2021-12-20T02:03:35.414731Z",
            "url": "https://files.pythonhosted.org/packages/f7/74/b53ee028aa8b8627159648e6c4790ce21853c8666a4d690f0a3d7dc1c1ce/pywin32-303-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "430145cf147cb7d5bba0cc5165f91e5e",
                "sha256": "c268040769b48a13367221fced6d4232ed52f044ffafeda247bd9d2c6bdc29ca"
            },
            "downloads": -1,
            "filename": "pywin32-303-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "430145cf147cb7d5bba0cc5165f91e5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 9248468,
            "upload_time": "2021-12-20T02:03:53",
            "upload_time_iso_8601": "2021-12-20T02:03:53.536773Z",
            "url": "https://files.pythonhosted.org/packages/f3/bd/414d8ca015c2f392ae01a82a77de52aa944e261e3da647584a7425a2e506/pywin32-303-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "1b465c9ce3bfc645543f40dfe0463a0f",
                "sha256": "5f9ec054f5a46a0f4dfd72af2ce1372f3d5a6e4052af20b858aa7df2df7d355b"
            },
            "downloads": -1,
            "filename": "pywin32-303-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "1b465c9ce3bfc645543f40dfe0463a0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 8487666,
            "upload_time": "2021-12-20T02:04:09",
            "upload_time_iso_8601": "2021-12-20T02:04:09.058194Z",
            "url": "https://files.pythonhosted.org/packages/98/31/8fc65bc0c3d2924b3c53c41c12071b36f196b21da1ef1d4fa5ef549f69a9/pywin32-303-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "0bd708d116dad078eb9c748ff04e01ce",
                "sha256": "793bf74fce164bcffd9d57bb13c2c15d56e43c9542a7b9687b4fccf8f8a41aba"
            },
            "downloads": -1,
            "filename": "pywin32-303-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0bd708d116dad078eb9c748ff04e01ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 9270061,
            "upload_time": "2021-12-20T02:04:21",
            "upload_time_iso_8601": "2021-12-20T02:04:21.935115Z",
            "url": "https://files.pythonhosted.org/packages/95/f3/c3f91dfabdcbf5a6cd7e94789d06e2874ef34e66d5b27fc4d8030fffcc6f/pywin32-303-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "9b85795bf4afe43d3fa04476cf4ae897",
                "sha256": "7d3271c98434617a11921c5ccf74615794d97b079e22ed7773790822735cc352"
            },
            "downloads": -1,
            "filename": "pywin32-303-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "9b85795bf4afe43d3fa04476cf4ae897",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 8478426,
            "upload_time": "2021-12-20T02:04:37",
            "upload_time_iso_8601": "2021-12-20T02:04:37.250711Z",
            "url": "https://files.pythonhosted.org/packages/4a/4d/e6129d76538053dcef6fd54ff8a03fe602d5282339a9209b859b82d32bc5/pywin32-303-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "62d5cdea7cb26a239c79f905a0d897f6",
                "sha256": "79cbb862c11b9af19bcb682891c1b91942ec2ff7de8151e2aea2e175899cda34"
            },
            "downloads": -1,
            "filename": "pywin32-303-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "62d5cdea7cb26a239c79f905a0d897f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 9264302,
            "upload_time": "2021-12-20T02:04:54",
            "upload_time_iso_8601": "2021-12-20T02:04:54.257350Z",
            "url": "https://files.pythonhosted.org/packages/9a/ad/a11ddf08e5af48cf2c34f0fcb83ed7ea79f8a6e7710364b1fa3498bda634/pywin32-303-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "vulnerabilities": []
}