Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How can I get bulk of papers sorted on citation count given a title? #105

Open
hissain opened this issue Jan 19, 2025 · 1 comment
Open
Labels
enhancement New feature or request

Comments

@hissain
Copy link

hissain commented Jan 19, 2025

Proposed change description

How can I get bulk of papers sorted on citation count given a title?

Implementing that would be helpful.

@hissain hissain added the enhancement New feature or request label Jan 19, 2025
@danielnsilva
Copy link
Owner

This is already supported.

from semanticscholar import SemanticScholar

sch = SemanticScholar()
response = sch.search_paper(
    query='Abstractive text summarization of low-resourced languages using deep learning',
    bulk=True,
    sort='citationCount:desc'
)

for item in response:
    print(item.citationCount, item.title)

Output:

14 Abstractive text summarization and new large-scale datasets for agglutinative languages Turkish and Hungarian  
11 Turkish abstractive text summarization using pretrained sequence-to-sequence models  
11 Abstractive text summarization of low-resourced languages using deep learning  
0 Automatic Text Summarization-Based Transformers Architecture  

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants