Avasam
Avasam
Please add type hints to the functions 
https://github.com/boppreh/keyboard/blob/master/keyboard/_winkeyboard.py#L393 Non-localized key names would fix *a lot* of issues. Especially given that: A) Parts of the code wrongly assumes english keys B) There's no way to translate the key...
Here "left shift" is called "maj". ```py >>> import keyboard >>> keyboard.read_event(True) KeyboardEvent(maj down) >>> keyboard.is_modifier(keyboard.read_event(True).name) False ``` ```py >>> import keyboard >>>keyboard.get_hotkey_name(['ctrl', 'maj', 'D']) KeyboardEvent(maj down) 'ctrl+D+maj' ``` Workaround:...
The request is for this page to display the games that are currently being played.  Similar to how Twitch does it:  (on mobile) 
Take these images for example:  They will appear super blurry in livesplit:  Scaling up should probably use some hard edge scaling. Or at...
Just like Cheat Engine's Array of byte, I would like to be able to use a wildcard character to signify an unknown value in the array. For example `9989????????????5996` Where...
Note that issues in this repository are only for bugs or feature requests in the pywin32. **If you need support or help using this package, please follow [these instructions](https://github.com/mhammond/pywin32/blob/master/README.md#support)** -...
Note that issues in this repository are only for bugs or feature requests in the pywin32. **If you need support or help using this package, please follow [these instructions](https://github.com/mhammond/pywin32/blob/master/README.md#support)** -...
Note that issues in this repository are only for bugs or feature requests in the pywin32. **If you need support or help using this package, please follow [these instructions](https://github.com/mhammond/pywin32/blob/master/README.md#support)** -...
I cannot pass a TypedDict to the parameter `_dict` and if one of my properties is a TypedDict, it'll be saved as `"TypedDict()"` In fact, any class that implements `keys()`...