我正在尝试使用 contentful 的 python api 将 .txt 文件从计算机上传到 contentful。这是文档的链接 下面是我的代码
with open('/Users/p2335/Documents/Work/files/input/test.txt', 'rb') as file:
new_upload = client.uploads(space_id).create(file)
client.assets(space_id, 'dev').create(
'ptn2',
{
'fields': {
'file': {
'en-US': {
'fileName': 'rds1.txt',
'contentType': 'text/plain',
'uploadFrom': new_upload.to_link().to_json()
}
}
}
}
)