Qualtrics API - 某些列从字符串更改为数字



我正在从我们在Qualtrics进行的一项调查中下载数据。我找到了 Python 3 示例代码(https://api.qualtrics.com/docs/response-exports(,并围绕它编写了我的代码。

成功下载后,我注意到提供了供用户选择的选项列表的问题被下载为数字(我怀疑所选答案的索引(。

我相信答案很简单,只需输入一些参数以不同的方式下载数据,但我似乎无法在 Qualtric 的 API 文档中找到它。

这是我使用此程序时数据的样子

这就是我希望它的样子

这是我的代码,我的 api 凭据已更改:

import shutil
import os
import requests
import zipfile
import json
import io
# Setting user Parameters
apiToken = "myKey"
surveyId = "mySurveyID"
fileFormat = "csv"
dataCenter = "az1" 
# Setting static parameters
requestCheckProgress = 0
progressStatus = "in progress"
baseUrl = "https://{0}.qualtrics.com/API/v3/responseexports/".format(dataCenter)
headers = {
"content-type": "application/json",
"x-api-token": apiToken,
}
# Step 1: Creating Data Export
downloadRequestUrl = baseUrl
downloadRequestPayload = '{"format":"' + fileFormat + '","surveyId":"' + surveyId + '"}'
downloadRequestResponse = requests.request("POST", downloadRequestUrl, data=downloadRequestPayload, headers=headers)
progressId = downloadRequestResponse.json()["result"]["id"]
print(downloadRequestResponse.text)
#print (requests)
# Step 2: Checking on Data Export Progress and waiting until export is ready
while requestCheckProgress < 100 and progressStatus is not "complete":
requestCheckUrl = baseUrl + progressId
requestCheckResponse = requests.request("GET", requestCheckUrl, headers=headers)
requestCheckProgress = requestCheckResponse.json()["result"]["percentComplete"]
print("Download is " + str(requestCheckProgress) + " complete")
# Step 3: Downloading file
requestDownloadUrl = baseUrl + progressId + '/file'
requestDownload = requests.request("GET", requestDownloadUrl, headers=headers, stream=True)
# Step 4: Unzipping the file
zipfile.ZipFile(io.BytesIO(requestDownload.content)).extractall("MyQualtricsDownload")
# Step 5: Move the file out of the folder and place it in the working directory --> change the paths to the appropiate paths for the server
shutil.move( "/Users/Abram/Documents/PCC/MyQualtricsDownload/Mindshare English v21.csv", "/Users/Abram/Documents/PCC/Mindshare English v21.csv")
os.rmdir("/Users/Abram/Documents/PCC/MyQualtricsDownload/")
print('Complete')

谢谢:)

终于想通了。是的,需要添加 useLabels 参数,但使用我上面提供的代码是不够的。出于某种原因,JSON 不会接受它,我相信它需要一个布尔值来类型转换为 JSON,而不仅仅是一个看起来像布尔值的字符串。所以我做了一个字典并加载了参数并在字典上使用JSON.dumps((,它就像一个魅力。希望这有助于其他任何想要使用标签的数据的人。

useLabels = True
dictionaryPayload = {'format': fileFormat, 'surveyId': surveyId, 'useLabels': useLabels}
downloadRequestPayload = json.dumps(dictionaryPayload)

将 useLabels 参数设置为 true: https://api.qualtrics.com/docs/create-response-export

最新更新