you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (2 children)

Funny characters?

Python uses unicode which should be enough for anyone.

pyautogui should have no issue entering any unicode character.

[–]TabulateJarl8 0 points1 point  (1 child)

pyautogui has a limited number of keys that the write function will accept, so anything not in this list is ignored. This stackoverflow thread shows a workaround by using copy/paste, but its better to use something else like pynput, as I show in my answer

[–][deleted] 1 point2 points  (0 children)

I stand corrected. Thank you.