如何从嵌套字典创建 df?

How do I create a df from a nested dictionary?

提问人:user22640333 提问时间:11/1/2023 最后编辑:user19077881user22640333 更新时间:11/1/2023 访问量:43

问:

我在 Python 中有一个这样的字典:

{'expand': 'schema,names',
 'issues': [{'expand': 'customfield_10716.properties,editmeta,customfield_10645.properties,changelog,renderedFields,operations,customfield_10643.cmdb.label,customfield_10646.properties,versionedRepresentations,customfield_10643.cmdb.objectKey,customfield_10643.cmdb.attributes,customfield_10172.properties,customfield_10036.requestTypePractice',
   'fields': {'aggregateprogress': {'progress': 0, 'total': 0},
    'aggregatetimeestimate': None,
    'aggregatetimeoriginalestimate': None,
    'aggregatetimespent': None,
    'assignee': {'accountId': 'XXXXXXXXX',
     'accountType': 'atlassian',
     'active': True,
     'avatarUrls': {'16x16': '',
      '24x24': 'X',
      '32x32': 'x',
      '48x48': 'x'},
     'displayName': 'Name,
     'emailAddress': 'email',
     'self': 'USER_ID',
     'timeZone': 'America/Los_Angeles'},
    'components': [{'id': '10162',
      'name': 'Android',
      'self': 'API'},
     {'description': 'DESC',
      'id': 'Number',
      'name': 'NAME',
      'self': 'SELF'},
     {'id': 'Number',
      'name': 'COMPonent',
      'self': 'COMPONENT'}],

我正在尝试将其转换为数据框并删除所有“无”值。我该如何实现?提前致谢

Python Pandas DataFrame 字典 Jira

评论

3赞 user19077881 11/1/2023
有各种不平衡的括号需要解决。如果您将数据简化为仅包含定义问题所需的基本元素,那就更好了。

答: 暂无答案