I've seen the use of pyautogui.typewrite()
but I can't find the documentation for it in the pyautogui docs. I did find the pyautogui.write()
function in the docs and I wanted to know if they are the same thing, because from what I can see, they seem very similar.
Asked
Active
Viewed 4,122 times
5

Ben Dover
- 153
- 1
- 7
-
https://github.com/asweigart/pyautogui/blob/e869e5dd9c36022631888555776749ca2f70382b/pyautogui/__init__.py#L1644 – deceze Nov 06 '20 at 07:48
2 Answers
9
As of version 1.0 there is no difference between write
and typewrite
. The write
function has been chosen as the preferred invocation but currently write
is just an alias for typewrite
:
write = typewrite # In PyAutoGUI 1.0, write() replaces typewrite().

Zion
- 1,562
- 13
- 32

sphennings
- 998
- 10
- 22
1
The typewrite() function is used to type something in a text field. in the other side the write() function does the same thing!

Diego Ciprietti
- 11
- 2
-
1Your answer could be improved with additional supporting information. Please [edit] to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Jun 12 '22 at 22:26