如何从Microsoft Academics API获取会议论文

时间:2017-07-29 21:05:37

标签: python azure academic-graph

我一直在使用Microsoft Academic Knoledge API一周,直到现在我都没有遇到任何问题。我想从会议上获得所有论文,例如ICLR或ICML。我正在尝试使用“解释”方法得到的以下查询:

        'expr': "Composite(C.CN=='iclr')",
        'model': 'latest',
        'count': '100',
        'offset': '0',
        'attributes': 'Ti,D,C.CN,AA.AuN,AA.AfN,F.FN,CC',

但我只是得到一篇论文,而不是一系列结果:

{'authors': 'Karen Simonyan, Andrew Zisserman', 'affiliations': 'University Of Oxford, University Of Oxford', 'citations': 3249, 'fields': 'Theoretical Computer Science, Computer Vision, Machine Learning, Computer Science'}

有没有办法一次性获得所有结果?

非常感谢你。

1 个答案:

答案 0 :(得分:0)

您可以使用 count 字段来调整要查看的项目数。

例如,以下显示了 100 个结果(按年份降序排列 -- 请注意 count=100&orderby=Y:desc):

https://api.labs.cognitive.microsoft.com/academic/v1.0/evaluate?&expr=Composite(C.CN==%27iclr%27)&count=100&orderby=Y:desc&attributes=Ti,D,C.CN,AA.AuN,AA.AfN,F.FN,CC&subscription-key={YOUR-KEY}

相关问题