使用Python中的package_create API调用创建具有资源的包

时间:2019-05-23 06:09:05

标签: python ckan

我正在尝试将具有资源的数据包上载到CKAN(通过Python)。我可以在没有“资源”的情况下成功上传程序包,但是我一直使用它们遇到此错误: 'message': "Only lists of dicts can be placed against subschema ('resources',), not <type 'list'>"

我已经尝试过多次重新格式化Python字典,并且还在字典上使用了json.dumps(),但是随后在调用API时遇到了json错误。

test_dict = 
      {
      'title': 'title of my dataset',
      'start': '2018-09-15 00:00:00',
      'end': '2018-09-20 00:00:00',
      'fact': 'interesting fact',
      'ReportNo': 1234,
      'type': 'data',
      'notes': ' ',
      'owner_org': 'Org',
      'maintainer': 'Me',
      'name': 'Test package for S3',
      'resources': [
          {
                    'package_id': '',
                    'url': 'https://s3-test-bucket/test.txt',
                    'name': 'S3 URL testing',
                    'description': 'does description work?'
                    }
      ]
}

response = requests.post(url, test_dict, headers=auth)
response.json()

期望:“成功”:“正确”

获取:'message':“只能针对子模式('resources',)放置字典列表,而不是”,   '__type':'完整性错误'

请有人可以解释正确的Python字典格式吗?最好带有示例。

谢谢!

1 个答案:

答案 0 :(得分:1)

我根据以下信息找到了答案:Create CKAN dataset using CKAN API and Python Requests library

这是我正在使用的代码:

    headers = json.loads(open('API_KEY','rb').read())
    headers['Content-Type'] = 'application/x-www-form-urlencoded'
    ckan = 'https://yourckanwebsite/api/3/action/'
    uri = ckan + 'package_create'

    data_dict = urllib.parse.quote(json.dumps(test_dict))
    response = requests.post(uri, data=data_dict, headers=headers)
    response.json()