pywin32


Namepywin32 JSON
Version 308 PyPI version JSON
download
home_pagehttps://github.com/mhammond/pywin32
SummaryPython for Window Extensions
upload_time2024-10-12 20:41:58
maintainerNone
docs_urlNone
authorMark Hammond (et al)
requires_pythonNone
licensePSF
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pywin32

[![CI](https://github.com/mhammond/pywin32/workflows/CI/badge.svg)](https://github.com/mhammond/pywin32/actions?query=workflow%3ACI)
[![PyPI - Version](https://img.shields.io/pypi/v/pywin32.svg)](https://pypi.org/project/pywin32)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pywin32.svg)](https://pypi.org/project/pywin32)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/pywin32.svg)](https://pypi.org/project/pywin32)
[![License - PSF-2.0](https://img.shields.io/badge/license-PSF--2.0-9400d3.svg)](https://spdx.org/licenses/PSF-2.0.html)

-----

This is the readme for the Python for Win32 (pywin32) extensions, which provides access to many of the Windows APIs from Python.

See [CHANGES.txt](https://github.com/mhammond/pywin32/blob/master/CHANGES.txt) for recent notable changes.

## Docs

The docs are a long and sad story, but [there's now an online version](https://mhammond.github.io/pywin32/)
of the helpfile that ships with the installers (thanks [@ofek](https://github.com/mhammond/pywin32/pull/1774)!).
Lots of that is very old, but some is auto-generated and current. Would love help untangling the docs!

## Support

Feel free to [open issues](https://github.com/mhammond/pywin32/issues) for
all bugs (or suspected bugs) in pywin32. [pull-requests](https://github.com/mhammond/pywin32/pulls)
for all bugs or features are also welcome.

However, please **do not open github issues for general support requests**, or
for problems or questions using the modules in this package - they will be
closed. For such issues, please email the
[python-win32 mailing list](http://mail.python.org/mailman/listinfo/python-win32) -
note that you must be subscribed to the list before posting.

## Binaries

[Binary releases are no longer supported.](https://mhammond.github.io/pywin32_installers.html)

Build 306 was the last with .exe installers. You really shouldn't use them, but if you really need them,
[find them here](https://github.com/mhammond/pywin32/releases/tag/b306)

## Installing via PIP

You should install pywin32 via pip - eg,

```shell
python -m pip install --upgrade pywin32
```

There is a post-install script (see below) which should *not* be run inside virtual environments;
it should only be run in "global" installs.

For unreleased changes, you can download builds made by [github actions](https://github.com/mhammond/pywin32/actions/) -
choose any "workflow" from the `main` branch and download its "artifacts")

### Installing globally

Outside of a virtual environment you might want to install COM objects, services, etc. You can do
this by executing:

```shell
python Scripts/pywin32_postinstall.py -install
```

From the root of your Python installation.

If you do this with normal permissions it will be global for your user (a few files will be
copied to the root of your Python install and some changes made to HKCU). If you execute this from
an elevated process, it will be global for the machine (files will be copied to System32, HKLM
will be changed, etc)

### Running as a Windows Service

To run as a service, you probably want to install pywin32 globally from an elevated
command prompt - see above.

You also need to ensure Python is installed in a location where the user running
the service has access to the installation and is able to load `pywintypesXX.dll` and `pythonXX.dll`. In particular, the `LocalSystem` account typically will not have access
to your local `%USER%` directory structure.

## Troubleshooting

If you encounter any problems when upgrading like the following:

```text
The specified procedure could not be found
Entry-point not found
```

It usually means one of 2 things:

* You've upgraded an install where the post-install script has previously run.
So you should run it again:

    ```shell
    python Scripts/pywin32_postinstall.py -install
    ```

    This will make some small attempts to cleanup older conflicting installs.

* There are other pywin32 DLLs installed in your system,
but in a different location than the new ones. This sometimes happens in environments that
come with pywin32 pre-shipped (eg, anaconda?).

  The possible solutions here are:

  * Run the "post_install" script documented above.
  * Otherwise, find and remove all other copies of `pywintypesXX.dll` and `pythoncomXX.dll`
  (where `XX` is the Python version - eg, "39")

## Building from source

Install Visual Studio 2019 (later probably works, but options might be different),
follow the instructions in [Build environment](/build_env.md#build-environment)
for the version you install.

(the free compilers probably work too, but haven't been tested - let me know your experiences!)

`setup.py` is a standard distutils build script, so you probably want:

```shell
python setup.py install
```

or

```shell
python setup.py --help
```

Some modules need obscure SDKs to build - `setup.py` should succeed, gracefully
telling you why it failed to build them - if the build actually fails with your
configuration, please [open an issue](https://github.com/mhammond/pywin32/issues).

## Release process

The following steps are performed when making a new release - this is mainly
to form a checklist so @mhammond doesn't forget what to do :)

Since build 307 the release process is based on the artifacts created by Github actions.

* Ensure CHANGES.txt has everything worth noting. Update the header to reflect
  the about-to-be released build and date, commit it.

* Update setup.py with the new build number. Update CHANGES.txt to have a new heading
  section for the next unreleased version. (ie, a new, empty "Coming in build XXX, as yet unreleased"
  section)

* Push these changes to github, wait for the actions to complete, then
  download the artifacts from that run.

* Upload .whl artifacts to pypi - we do this before pushing the tag because they might be
  rejected for an invalid `README.md`. Done via `py -3.? -m twine upload dist/*XXX*.whl`.

* Create a new git tag for the release.

* Update setup.py with the new build number + ".1" (eg, 123.1), to ensure
  future test builds aren't mistaken for the real release.

* Make sure everything is pushed to github, including the tag (ie,
  `git push --tags`)

* Send mail to python-win32

### Older Manual Release Process

This is the old process used when a local dev environment was used to create
the builds. Build 306 was the last released with this process.

* Ensure CHANGES.txt has everything worth noting. Update the header to reflect
  the about-to-be released build and date, commit it.

* Update setup.py with the new build number.

* Execute `make_all.bat`, wait forever, test the artifacts.

* Upload .whl artifacts to pypi - we do this before pushing the tag because they might be
  rejected for an invalid `README.md`. Done via `py -3.? -m twine upload dist/*XXX*.whl`.

* Commit setup.py (so the new build number is in the repo), create a new git tag

* Upload the .exe installers to github.

* Update setup.py with the new build number + ".1" (eg, 123.1), to ensure
  future test builds aren't mistaken for the real release.

* Make sure everything is pushed to github, including the tag (ie,
  `git push --tags`)

* Send mail to python-win32

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/mhammond/pywin32",
    "name": "pywin32",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Mark Hammond (et al)",
    "author_email": "mhammond@skippinet.com.au",
    "download_url": null,
    "platform": null,
    "description": "# pywin32\r\n\r\n[![CI](https://github.com/mhammond/pywin32/workflows/CI/badge.svg)](https://github.com/mhammond/pywin32/actions?query=workflow%3ACI)\r\n[![PyPI - Version](https://img.shields.io/pypi/v/pywin32.svg)](https://pypi.org/project/pywin32)\r\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pywin32.svg)](https://pypi.org/project/pywin32)\r\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/pywin32.svg)](https://pypi.org/project/pywin32)\r\n[![License - PSF-2.0](https://img.shields.io/badge/license-PSF--2.0-9400d3.svg)](https://spdx.org/licenses/PSF-2.0.html)\r\n\r\n-----\r\n\r\nThis is the readme for the Python for Win32 (pywin32) extensions, which provides access to many of the Windows APIs from Python.\r\n\r\nSee [CHANGES.txt](https://github.com/mhammond/pywin32/blob/master/CHANGES.txt) for recent notable changes.\r\n\r\n## Docs\r\n\r\nThe docs are a long and sad story, but [there's now an online version](https://mhammond.github.io/pywin32/)\r\nof the helpfile that ships with the installers (thanks [@ofek](https://github.com/mhammond/pywin32/pull/1774)!).\r\nLots of that is very old, but some is auto-generated and current. Would love help untangling the docs!\r\n\r\n## Support\r\n\r\nFeel free to [open issues](https://github.com/mhammond/pywin32/issues) for\r\nall bugs (or suspected bugs) in pywin32. [pull-requests](https://github.com/mhammond/pywin32/pulls)\r\nfor all bugs or features are also welcome.\r\n\r\nHowever, please **do not open github issues for general support requests**, or\r\nfor problems or questions using the modules in this package - they will be\r\nclosed. For such issues, please email the\r\n[python-win32 mailing list](http://mail.python.org/mailman/listinfo/python-win32) -\r\nnote that you must be subscribed to the list before posting.\r\n\r\n## Binaries\r\n\r\n[Binary releases are no longer supported.](https://mhammond.github.io/pywin32_installers.html)\r\n\r\nBuild 306 was the last with .exe installers. You really shouldn't use them, but if you really need them,\r\n[find them here](https://github.com/mhammond/pywin32/releases/tag/b306)\r\n\r\n## Installing via PIP\r\n\r\nYou should install pywin32 via pip - eg,\r\n\r\n```shell\r\npython -m pip install --upgrade pywin32\r\n```\r\n\r\nThere is a post-install script (see below) which should *not* be run inside virtual environments;\r\nit should only be run in \"global\" installs.\r\n\r\nFor unreleased changes, you can download builds made by [github actions](https://github.com/mhammond/pywin32/actions/) -\r\nchoose any \"workflow\" from the `main` branch and download its \"artifacts\")\r\n\r\n### Installing globally\r\n\r\nOutside of a virtual environment you might want to install COM objects, services, etc. You can do\r\nthis by executing:\r\n\r\n```shell\r\npython Scripts/pywin32_postinstall.py -install\r\n```\r\n\r\nFrom the root of your Python installation.\r\n\r\nIf you do this with normal permissions it will be global for your user (a few files will be\r\ncopied to the root of your Python install and some changes made to HKCU). If you execute this from\r\nan elevated process, it will be global for the machine (files will be copied to System32, HKLM\r\nwill be changed, etc)\r\n\r\n### Running as a Windows Service\r\n\r\nTo run as a service, you probably want to install pywin32 globally from an elevated\r\ncommand prompt - see above.\r\n\r\nYou also need to ensure Python is installed in a location where the user running\r\nthe service has access to the installation and is able to load `pywintypesXX.dll` and `pythonXX.dll`. In particular, the `LocalSystem` account typically will not have access\r\nto your local `%USER%` directory structure.\r\n\r\n## Troubleshooting\r\n\r\nIf you encounter any problems when upgrading like the following:\r\n\r\n```text\r\nThe specified procedure could not be found\r\nEntry-point not found\r\n```\r\n\r\nIt usually means one of 2 things:\r\n\r\n* You've upgraded an install where the post-install script has previously run.\r\nSo you should run it again:\r\n\r\n    ```shell\r\n    python Scripts/pywin32_postinstall.py -install\r\n    ```\r\n\r\n    This will make some small attempts to cleanup older conflicting installs.\r\n\r\n* There are other pywin32 DLLs installed in your system,\r\nbut in a different location than the new ones. This sometimes happens in environments that\r\ncome with pywin32 pre-shipped (eg, anaconda?).\r\n\r\n  The possible solutions here are:\r\n\r\n  * Run the \"post_install\" script documented above.\r\n  * Otherwise, find and remove all other copies of `pywintypesXX.dll` and `pythoncomXX.dll`\r\n  (where `XX` is the Python version - eg, \"39\")\r\n\r\n## Building from source\r\n\r\nInstall Visual Studio 2019 (later probably works, but options might be different),\r\nfollow the instructions in [Build environment](/build_env.md#build-environment)\r\nfor the version you install.\r\n\r\n(the free compilers probably work too, but haven't been tested - let me know your experiences!)\r\n\r\n`setup.py` is a standard distutils build script, so you probably want:\r\n\r\n```shell\r\npython setup.py install\r\n```\r\n\r\nor\r\n\r\n```shell\r\npython setup.py --help\r\n```\r\n\r\nSome modules need obscure SDKs to build - `setup.py` should succeed, gracefully\r\ntelling you why it failed to build them - if the build actually fails with your\r\nconfiguration, please [open an issue](https://github.com/mhammond/pywin32/issues).\r\n\r\n## Release process\r\n\r\nThe following steps are performed when making a new release - this is mainly\r\nto form a checklist so @mhammond doesn't forget what to do :)\r\n\r\nSince build 307 the release process is based on the artifacts created by Github actions.\r\n\r\n* Ensure CHANGES.txt has everything worth noting. Update the header to reflect\r\n  the about-to-be released build and date, commit it.\r\n\r\n* Update setup.py with the new build number. Update CHANGES.txt to have a new heading\r\n  section for the next unreleased version. (ie, a new, empty \"Coming in build XXX, as yet unreleased\"\r\n  section)\r\n\r\n* Push these changes to github, wait for the actions to complete, then\r\n  download the artifacts from that run.\r\n\r\n* Upload .whl artifacts to pypi - we do this before pushing the tag because they might be\r\n  rejected for an invalid `README.md`. Done via `py -3.? -m twine upload dist/*XXX*.whl`.\r\n\r\n* Create a new git tag for the release.\r\n\r\n* Update setup.py with the new build number + \".1\" (eg, 123.1), to ensure\r\n  future test builds aren't mistaken for the real release.\r\n\r\n* Make sure everything is pushed to github, including the tag (ie,\r\n  `git push --tags`)\r\n\r\n* Send mail to python-win32\r\n\r\n### Older Manual Release Process\r\n\r\nThis is the old process used when a local dev environment was used to create\r\nthe builds. Build 306 was the last released with this process.\r\n\r\n* Ensure CHANGES.txt has everything worth noting. Update the header to reflect\r\n  the about-to-be released build and date, commit it.\r\n\r\n* Update setup.py with the new build number.\r\n\r\n* Execute `make_all.bat`, wait forever, test the artifacts.\r\n\r\n* Upload .whl artifacts to pypi - we do this before pushing the tag because they might be\r\n  rejected for an invalid `README.md`. Done via `py -3.? -m twine upload dist/*XXX*.whl`.\r\n\r\n* Commit setup.py (so the new build number is in the repo), create a new git tag\r\n\r\n* Upload the .exe installers to github.\r\n\r\n* Update setup.py with the new build number + \".1\" (eg, 123.1), to ensure\r\n  future test builds aren't mistaken for the real release.\r\n\r\n* Make sure everything is pushed to github, including the tag (ie,\r\n  `git push --tags`)\r\n\r\n* Send mail to python-win32\r\n",
    "bugtrack_url": null,
    "license": "PSF",
    "summary": "Python for Window Extensions",
    "version": "308",
    "project_urls": {
        "Homepage": "https://github.com/mhammond/pywin32"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72a63e9f2c474895c1bb61b11fa9640be00067b5c5b363c501ee9c3fa53aec01",
                "md5": "c03f73ad40e4eae4a4901a7502217a5d",
                "sha256": "796ff4426437896550d2981b9c2ac0ffd75238ad9ea2d3bfa67a1abd546d262e"
            },
            "downloads": -1,
            "filename": "pywin32-308-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "c03f73ad40e4eae4a4901a7502217a5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5927028,
            "upload_time": "2024-10-12T20:41:58",
            "upload_time_iso_8601": "2024-10-12T20:41:58.898893Z",
            "url": "https://files.pythonhosted.org/packages/72/a6/3e9f2c474895c1bb61b11fa9640be00067b5c5b363c501ee9c3fa53aec01/pywin32-308-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9b484e2463422f869b4b718f79eb7530a4c1693e96b8a4e5e968de38be4d2ba",
                "md5": "fce1759266fa82f60deba18a6b3af5ac",
                "sha256": "4fc888c59b3c0bef905ce7eb7e2106a07712015ea1c8234b703a088d46110e8e"
            },
            "downloads": -1,
            "filename": "pywin32-308-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fce1759266fa82f60deba18a6b3af5ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 6558484,
            "upload_time": "2024-10-12T20:42:01",
            "upload_time_iso_8601": "2024-10-12T20:42:01.271076Z",
            "url": "https://files.pythonhosted.org/packages/d9/b4/84e2463422f869b4b718f79eb7530a4c1693e96b8a4e5e968de38be4d2ba/pywin32-308-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f8ffb84ab789713f7c6feacaa08dad3ec8105b88ade8d1c4f0f0dfcaaa017d6",
                "md5": "26e3d2dec494b607a6df1989288fa282",
                "sha256": "a5ab5381813b40f264fa3495b98af850098f814a25a63589a8e9eb12560f450c"
            },
            "downloads": -1,
            "filename": "pywin32-308-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "26e3d2dec494b607a6df1989288fa282",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 7971454,
            "upload_time": "2024-10-12T20:42:03",
            "upload_time_iso_8601": "2024-10-12T20:42:03.544106Z",
            "url": "https://files.pythonhosted.org/packages/9f/8f/fb84ab789713f7c6feacaa08dad3ec8105b88ade8d1c4f0f0dfcaaa017d6/pywin32-308-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ebe202652007469263fe1466e98439831d65d4ca80ea1a2df29abecedf7e47b7",
                "md5": "cb96fe1375e82f9a51f31f683ce53843",
                "sha256": "5d8c8015b24a7d6855b1550d8e660d8daa09983c80e5daf89a273e5c6fb5095a"
            },
            "downloads": -1,
            "filename": "pywin32-308-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "cb96fe1375e82f9a51f31f683ce53843",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5928156,
            "upload_time": "2024-10-12T20:42:05",
            "upload_time_iso_8601": "2024-10-12T20:42:05.780962Z",
            "url": "https://files.pythonhosted.org/packages/eb/e2/02652007469263fe1466e98439831d65d4ca80ea1a2df29abecedf7e47b7/pywin32-308-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48eff4fb45e2196bc7ffe09cad0542d9aff66b0e33f6c0954b43e49c33cad7bd",
                "md5": "86b246615ffb751b8f14000be2beaeca",
                "sha256": "575621b90f0dc2695fec346b2d6302faebd4f0f45c05ea29404cefe35d89442b"
            },
            "downloads": -1,
            "filename": "pywin32-308-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "86b246615ffb751b8f14000be2beaeca",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 6559559,
            "upload_time": "2024-10-12T20:42:07",
            "upload_time_iso_8601": "2024-10-12T20:42:07.644561Z",
            "url": "https://files.pythonhosted.org/packages/48/ef/f4fb45e2196bc7ffe09cad0542d9aff66b0e33f6c0954b43e49c33cad7bd/pywin32-308-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79ef68bb6aa865c5c9b11a35771329e95917b5559845bd75b65549407f9fc6b4",
                "md5": "15168dde0d17dd8465f4105c2e9e4f0f",
                "sha256": "100a5442b7332070983c4cd03f2e906a5648a5104b8a7f50175f7906efd16bb6"
            },
            "downloads": -1,
            "filename": "pywin32-308-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "15168dde0d17dd8465f4105c2e9e4f0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 7972495,
            "upload_time": "2024-10-12T20:42:09",
            "upload_time_iso_8601": "2024-10-12T20:42:09.803646Z",
            "url": "https://files.pythonhosted.org/packages/79/ef/68bb6aa865c5c9b11a35771329e95917b5559845bd75b65549407f9fc6b4/pywin32-308-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "007cd00d6bdd96de4344e06c4afbf218bc86b54436a94c01c71a8701f613aa56",
                "md5": "1ffe70e16e2bf078e55d52dcc0f92cae",
                "sha256": "587f3e19696f4bf96fde9d8a57cec74a57021ad5f204c9e627e15c33ff568897"
            },
            "downloads": -1,
            "filename": "pywin32-308-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "1ffe70e16e2bf078e55d52dcc0f92cae",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5939729,
            "upload_time": "2024-10-12T20:42:12",
            "upload_time_iso_8601": "2024-10-12T20:42:12.001650Z",
            "url": "https://files.pythonhosted.org/packages/00/7c/d00d6bdd96de4344e06c4afbf218bc86b54436a94c01c71a8701f613aa56/pywin32-308-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21270c8811fbc3ca188f93b5354e7c286eb91f80a53afa4e11007ef661afa746",
                "md5": "2c85ba0f451d12a902909d745e397639",
                "sha256": "00b3e11ef09ede56c6a43c71f2d31857cf7c54b0ab6e78ac659497abd2834f47"
            },
            "downloads": -1,
            "filename": "pywin32-308-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2c85ba0f451d12a902909d745e397639",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 6543015,
            "upload_time": "2024-10-12T20:42:14",
            "upload_time_iso_8601": "2024-10-12T20:42:14.044770Z",
            "url": "https://files.pythonhosted.org/packages/21/27/0c8811fbc3ca188f93b5354e7c286eb91f80a53afa4e11007ef661afa746/pywin32-308-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d0fd40f8373608caed2255781a3ad9a51d03a594a1248cd632d6a298daca693",
                "md5": "27a571f2e5499f7a5f0fddd92c0c9498",
                "sha256": "9b4de86c8d909aed15b7011182c8cab38c8850de36e6afb1f0db22b8959e3091"
            },
            "downloads": -1,
            "filename": "pywin32-308-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "27a571f2e5499f7a5f0fddd92c0c9498",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 7976033,
            "upload_time": "2024-10-12T20:42:16",
            "upload_time_iso_8601": "2024-10-12T20:42:16.215994Z",
            "url": "https://files.pythonhosted.org/packages/9d/0f/d40f8373608caed2255781a3ad9a51d03a594a1248cd632d6a298daca693/pywin32-308-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9a4aa562d8935e3df5e49c161b427a3a2efad2ed4e9cf81c3de636f1fdddfd0",
                "md5": "cab396af7bca6a9b533c48fb5b8f0835",
                "sha256": "1c44539a37a5b7b21d02ab34e6a4d314e0788f1690d65b48e9b0b89f31abbbed"
            },
            "downloads": -1,
            "filename": "pywin32-308-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "cab396af7bca6a9b533c48fb5b8f0835",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 5938579,
            "upload_time": "2024-10-12T20:42:18",
            "upload_time_iso_8601": "2024-10-12T20:42:18.623692Z",
            "url": "https://files.pythonhosted.org/packages/a9/a4/aa562d8935e3df5e49c161b427a3a2efad2ed4e9cf81c3de636f1fdddfd0/pywin32-308-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c750b0efb8bb66210da67a53ab95fd7a98826a97ee21f1d22949863e6d588b22",
                "md5": "62e7ae0638110cb4fad7b42b3166e2b7",
                "sha256": "fd380990e792eaf6827fcb7e187b2b4b1cede0585e3d0c9e84201ec27b9905e4"
            },
            "downloads": -1,
            "filename": "pywin32-308-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "62e7ae0638110cb4fad7b42b3166e2b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 6542056,
            "upload_time": "2024-10-12T20:42:20",
            "upload_time_iso_8601": "2024-10-12T20:42:20.864375Z",
            "url": "https://files.pythonhosted.org/packages/c7/50/b0efb8bb66210da67a53ab95fd7a98826a97ee21f1d22949863e6d588b22/pywin32-308-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26df2b63e3e4f2df0224f8aaf6d131f54fe4e8c96400eb9df563e2aae2e1a1f9",
                "md5": "c8d49b728dfafbe2373494d8f96c0fab",
                "sha256": "ef313c46d4c18dfb82a2431e3051ac8f112ccee1a34f29c263c583c568db63cd"
            },
            "downloads": -1,
            "filename": "pywin32-308-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "c8d49b728dfafbe2373494d8f96c0fab",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 7974986,
            "upload_time": "2024-10-12T20:42:22",
            "upload_time_iso_8601": "2024-10-12T20:42:22.799524Z",
            "url": "https://files.pythonhosted.org/packages/26/df/2b63e3e4f2df0224f8aaf6d131f54fe4e8c96400eb9df563e2aae2e1a1f9/pywin32-308-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c5d3f187cc1f7c7a249a98aaea41fa370cdf16bc6fae4746710661b33be2181",
                "md5": "cd751b7cb866a24cc6ab83c4753e8c2c",
                "sha256": "1f696ab352a2ddd63bd07430080dd598e6369152ea13a25ebcdd2f503a38f1ff"
            },
            "downloads": -1,
            "filename": "pywin32-308-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "cd751b7cb866a24cc6ab83c4753e8c2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 5985446,
            "upload_time": "2024-10-12T20:41:45",
            "upload_time_iso_8601": "2024-10-12T20:41:45.403469Z",
            "url": "https://files.pythonhosted.org/packages/6c/5d/3f187cc1f7c7a249a98aaea41fa370cdf16bc6fae4746710661b33be2181/pywin32-308-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6952ac7037ec0eec0aa0a78ec4aab3d34227ea714b7fe5b578c5dca0af3d312f",
                "md5": "c9f185e6e9dd4c7b28e9074b84b4d7c2",
                "sha256": "13dcb914ed4347019fbec6697a01a0aec61019c1046c2b905410d197856326a6"
            },
            "downloads": -1,
            "filename": "pywin32-308-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c9f185e6e9dd4c7b28e9074b84b4d7c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 6617118,
            "upload_time": "2024-10-12T20:41:48",
            "upload_time_iso_8601": "2024-10-12T20:41:48.182038Z",
            "url": "https://files.pythonhosted.org/packages/69/52/ac7037ec0eec0aa0a78ec4aab3d34227ea714b7fe5b578c5dca0af3d312f/pywin32-308-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f30d2c464011689e11ff5d64a32337f37de463a0cb058e45de5ea4027b56601a",
                "md5": "e9c6df294e04d4e18e860b7a50e5e74a",
                "sha256": "5794e764ebcabf4ff08c555b31bd348c9025929371763b2183172ff4708152f0"
            },
            "downloads": -1,
            "filename": "pywin32-308-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "e9c6df294e04d4e18e860b7a50e5e74a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5998793,
            "upload_time": "2024-10-12T20:41:50",
            "upload_time_iso_8601": "2024-10-12T20:41:50.597082Z",
            "url": "https://files.pythonhosted.org/packages/f3/0d/2c464011689e11ff5d64a32337f37de463a0cb058e45de5ea4027b56601a/pywin32-308-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7e8729b049e3c5c5449049d6036edf7a24a6ba785a9a1d5f617b638a9b444eb",
                "md5": "45e13d2214026d68b44b4b60b4422cf9",
                "sha256": "3b92622e29d651c6b783e368ba7d6722b1634b8e70bd376fd7610fe1992e19de"
            },
            "downloads": -1,
            "filename": "pywin32-308-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "45e13d2214026d68b44b4b60b4422cf9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 6647446,
            "upload_time": "2024-10-12T20:41:52",
            "upload_time_iso_8601": "2024-10-12T20:41:52.949775Z",
            "url": "https://files.pythonhosted.org/packages/b7/e8/729b049e3c5c5449049d6036edf7a24a6ba785a9a1d5f617b638a9b444eb/pywin32-308-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a841ead05a7657ffdbb1edabb954ab80825c4f87a3de0285d59f8290457f9016",
                "md5": "5db8e4e596f4f46695980e1ef6f5754f",
                "sha256": "7873ca4dc60ab3287919881a7d4f88baee4a6e639aa6962de25a98ba6b193341"
            },
            "downloads": -1,
            "filename": "pywin32-308-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "5db8e4e596f4f46695980e1ef6f5754f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5991824,
            "upload_time": "2024-10-12T20:41:55",
            "upload_time_iso_8601": "2024-10-12T20:41:55.034482Z",
            "url": "https://files.pythonhosted.org/packages/a8/41/ead05a7657ffdbb1edabb954ab80825c4f87a3de0285d59f8290457f9016/pywin32-308-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4cd0838c9a6063bff2e9bac2388ae36524c26c50288b5d7b6aebb6cdf8d375d",
                "md5": "7cdf2597a9747b25f2440f03fc9cbeda",
                "sha256": "71b3322d949b4cc20776436a9c9ba0eeedcbc9c650daa536df63f0ff111bb920"
            },
            "downloads": -1,
            "filename": "pywin32-308-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7cdf2597a9747b25f2440f03fc9cbeda",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 6640327,
            "upload_time": "2024-10-12T20:41:57",
            "upload_time_iso_8601": "2024-10-12T20:41:57.239848Z",
            "url": "https://files.pythonhosted.org/packages/e4/cd/0838c9a6063bff2e9bac2388ae36524c26c50288b5d7b6aebb6cdf8d375d/pywin32-308-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-12 20:41:58",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "mhammond",
    "github_project": "pywin32",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pywin32"
}
        
Elapsed time: 0.37000s