Metadata-Version: 2.3
Name: win32more
Version: 0.5.4
Summary: Python bindings for Windows API
Project-URL: Homepage, https://github.com/ynkdir/py-win32more
Author-email: Yukihiro Nakadaira <yukihiro.nakadaira@gmail.com>
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=3.8
Requires-Dist: typing-extensions; python_version < '3.9'
Description-Content-Type: text/markdown

# Win32more

[![PyPI - Version](https://img.shields.io/pypi/v/win32more.svg)](https://pypi.org/project/win32more)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/win32more.svg)](https://pypi.org/project/win32more)

Win32more is a python bindings for Windows API generated from metadata.

https://github.com/microsoft/win32metadata

https://www.nuget.org/packages/Microsoft.Windows.SDK.Contracts

https://github.com/microsoft/WindowsAppSDK

## Installation

```console
pip install win32more
```

## Usage

```pycon
>>> from win32more.Windows.Win32.UI.WindowsAndMessaging import MessageBox, MB_OK
>>> MessageBox(0, "hello, world", "win32more", MB_OK)
```
