Avasam

Results 353 issues of Avasam

Please add type hints to the functions ![image](https://user-images.githubusercontent.com/1350584/141981389-3881d06f-2d1e-4083-8eab-466d19f029e7.png)

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. ![image](https://user-images.githubusercontent.com/1350584/115639367-6114e500-a2e2-11eb-8743-74e4d3e3c8f5.png) Similar to how Twitch does it: ![image](https://user-images.githubusercontent.com/1350584/115639487-b3ee9c80-a2e2-11eb-880f-f7e37417712a.png) (on mobile) ![image](https://user-images.githubusercontent.com/1350584/115639618-10ea5280-a2e3-11eb-959a-7e808cecfd46.png)

Take these images for example: ![Bunny](https://user-images.githubusercontent.com/1350584/110553664-55d97180-8107-11eb-81bb-62bf077c80ad.png)![Red Key](https://user-images.githubusercontent.com/1350584/110553880-b8cb0880-8107-11eb-9a2c-ea7d1e73eb05.png)![Skull](https://user-images.githubusercontent.com/1350584/110553667-583bcb80-8107-11eb-89d0-e5424386325c.png)![Green key](https://user-images.githubusercontent.com/1350584/110553948-d8fac780-8107-11eb-97e6-d6be4affc6db.png)![Watering Can](https://user-images.githubusercontent.com/1350584/110553951-db5d2180-8107-11eb-9ff5-cbced39d30a3.png)![Blue Key](https://user-images.githubusercontent.com/1350584/110553963-de581200-8107-11eb-983d-b3a803165cea.png)![Book](https://user-images.githubusercontent.com/1350584/110553965-e021d580-8107-11eb-8a43-b23a146e9d07.png)![-1](https://user-images.githubusercontent.com/1350584/110554001-f334a580-8107-11eb-8a27-93eb2d9fca7a.png)![-2](https://user-images.githubusercontent.com/1350584/110554003-f596ff80-8107-11eb-95cd-2947c593c782.png)![-2 3-4](https://user-images.githubusercontent.com/1350584/110554002-f465d280-8107-11eb-8c06-5430a410b317.png)![-3](https://user-images.githubusercontent.com/1350584/110554007-f6c82c80-8107-11eb-912f-d157f9909dbe.png) They will appear super blurry in livesplit: ![image](https://user-images.githubusercontent.com/1350584/110553627-4528fb80-8107-11eb-9f7a-fda033a61e72.png)![image](https://user-images.githubusercontent.com/1350584/110553912-c84a5180-8107-11eb-8189-11d755a1b224.png) 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...

feature request
help wanted
good first issue

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()`...

type: feature
needs triage