variabel awan goresan python

import requests
project_id = #id here
url = f'https://clouddata.scratch.mit.edu/logs?projectid={project_id}&limit=40&offset=0'
response = requests.get(url)
print(response.text)
Tycho112