I am creating a Desktop app that contains my own grids of data, I want users to be able to easily paste from my grid into a google sheet. How can I construct a string that when put into the clipboard, can be pasted directly into Google Sheets to enter data into multiple cells?
For example I have this CSV string as a variable in Python:
1,2,3,4
If I paste that string into google sheets it gets pasted as 1 cell with the value 1,2,3,4, where I want it pasted as 4 cells in the same row.