# get data from github
import requests
response = requests.get(url)
if response.status_code == 200:
# Open the file for writing
with open('F14S1940_callonly_tfds.zip', 'wb') as f:
# Write the response content to the file
f.write(response.content)
else:
print('Error: Failed to download the file')