It uses a temporary cloud service to transfer saves without needing a user account.
# Save the data to Google Drive drive_url = "https://www.googleapis.com/upload/drive/v3/files?uploadType=media" headers = "Authorization": f"Bearer access_token" response = requests.post(drive_url, headers=headers, data=data) file_id = response.json()["id"] renpy save from different device
Ren'Py saves are stored locally on the device, which means that saves are not synced across devices by default. This can be frustrating for players who want to play a visual novel on multiple devices, such as a computer and a mobile phone. It uses a temporary cloud service to transfer
(for cloud)