我正在处理从诺贝尔奖 API 中提取的 API 数据。
特别是以下端点(Nobel API 版本 2):https://api.nobelprize.org/2.0/laureates
我已经使用我构建的简单 Python 脚本成功地提取了它们。
以下是 JSON 文件内容的一些示例。
但首先,请允许我提前对片段的长度表示歉意。
我找不到更好的方式来呈现它。
类型 - 1
{
"laureates": [
{
"birth": {
"date": "1943-00-00",
"place": {
"city": {
"en": "Montclair, NJ",
"no": "Montclair, NJ",
"se": "Montclair, NJ"
},
"cityNow": {
"en": "Montclair, NJ",
"no": "Montclair, NJ",
"se": "Montclair, NJ"
},
"continent": {
"en": "North America"
},
"country": {
"en": "USA",
"no": "USA",
"se": "USA"
},
"countryNow": {
"en": "USA",
"no": "USA",
"se": "USA"
},
"locationString": {
"en": "Montclair, NJ, USA",
"no": "Montclair, NJ, USA",
"se": "Montclair, NJ, USA"
}
}
},
"familyName": {
"en": "Spence",
"se": "Spence"
},
"fullName": {
"en": "A. Michael Spence",
"se": "A. Michael Spence"
},
"gender": "male",
"givenName": {
"en": "A. Michael",
"se": "A. Michael"
},
"id": "745",
"knownName": {
"en": "A. Michael Spence",
"se": "A. Michael Spence"
},
BIG阳
相关分类