学术信息的使用非常简单,可以获取作者信息。(https://pypi.org/project/scholarly/)。
在Python: How to access the elements in a generator object and put them in a Pandas dataframe or in a dictionary?中已经很好地解释了它到.csv文件的转换
但是,我不知道如何才能只获取出版物信息(作者、标题、期刊等)吗?
有没有办法做到这一点?
谢谢!
发布于 2021-04-04 10:51:51
学术类有一个search_pubs方法,它返回一个迭代器。
search_query = scholarly.search_pubs('Predicting tags for stackoverflow posts')
scholarly.pprint(next(search_query))https://scholarly.readthedocs.io/en/latest/quickstart.html#search-pubs
https://stackoverflow.com/questions/60838857
复制相似问题