如何从 Python 字典 (JSON) 中存在的键中的值中提取某些特定文本

How to extract some particular text from a value in a key present in a Python dictionary (JSON)

我有这个 JSON 数据,我需要通过这些数据来提取 customfield_20340 中包含 Crucible 链接的所有数据。我的任务是提取 Crucible 链接作为给定键中的值。当我提取 Crucible 链接时,我不需要任何其他字符或文本。 例如,我不想要文本等,只想要个别链接。 目前,我能够提取 customfield_20340.

中的全部内容

你们会如何解决这个问题? 谢谢!

如果您能够提取完整字段,则只需将其拆分并保留以 http:

开头的内容
links = [i for i in data['fields']['customfield_20340'].split() if i.startswith('http')]