File Sharing
File.io is a simple API for uploading files and sharing them via a URL, with automatic deletion after use or time.
import requests
url = "https://file.io/"
files = {'file': open('/path/to/your/file.txt', 'rb')}
response = requests.post(url, files=files)
print(response.json())Last 50 checks (10 min intervals)