Core class for accessing the Clipboard. If we are not able to access the system clipboard, a fake one will be used.
Usage example:
#:import Clipboard kivy.core.clipboard.Clipboard
Button:
    on_release:
        self.text = Clipboard.paste()
        Clipboard.copy('Data')
