Clipboard
Clipboard module for autopylot. This module is used to interact with the Windows clipboard.
Examples:
>>> from autopylot import clipboard
>>> clipboard.set_data(data='Hello World!')
>>> clipboard.get_data()
'Hello World!'
It contains the following functions:
set_data(data)
: Set the clipboard data to the given string.get_data()
: Get the clipboard data as a string.