我正在使用 Python 脚本从 Web API 收集数据。Web API 最多提供 50 个结果 ( "size":50
)。但是,我需要收集所有结果。请让我知道我该怎么做。我的初始代码如下所示。先感谢您。
def getData():
headers = {
'Content-type': 'application/json',
}
data = '{"size":50,"sites.recruitment_status":"ACTIVE", "sites.org_state_or_province":"VA"}'
response = requests.post('https://clinicaltrialsapi.cancer.gov/v1/clinical-trials', headers=headers, data=data)
print(response.json())