Fetch Academic Research Papers from different sources including Google Scholar, ACL, ACM, PMLR, Arxiv, Semantic Scholar, and more
Project description
RESP: Research Papers Search
Fetch academic research papers from multiple sources including Google Scholar, Arxiv, Semantic Scholar, ACL, ACM, and more
Installation
pip install respsearch
For Connected Papers support (requires Selenium):
pip install respsearch[selenium]
Quick Start
Simple API (Recommended)
from resp import arxiv, semantic_scholar, acm, google_scholar
# Arxiv - No API key needed
papers = arxiv.search_papers("deep learning", max_results=10)
# Semantic Scholar - No API key needed
papers = semantic_scholar.search_papers("natural language processing", max_results=5)
# ACM Digital Library - No API key needed
papers = acm.search_papers("machine learning", max_results=5)
# Google Scholar - Requires free SerpAPI key from https://serpapi.com/
google_scholar.set_api_key("your_serpapi_key")
papers = google_scholar.search_papers("machine learning", num_results=10)
Advanced API (Direct Class Access)
from resp.apis.arxiv_api import Arxiv
from resp.apis.semantic_s import Semantic_Scholar
from resp.apis.serp_api import Serp
# Arxiv
ap = Arxiv()
papers = ap.arxiv('deep learning', max_pages=5)
# Semantic Scholar
sc = Semantic_Scholar()
papers = sc.ss('neural networks', max_pages=3)
# Google Scholar via Serp
serp = Serp(api_key="your_serpapi_key")
papers = serp.google_scholar_search('transformers', max_pages=2)
Features
- 🔍 Search papers by keywords across multiple academic sources
- 📚 Fetch citations of any paper from Google Scholar
- 🔗 Find related papers from Google Scholar
- 🕸️ Connected Papers - discover papers using similarity graphs (not just citations)
Supported Sources
| Source | API Key Required | Status |
|---|---|---|
| Arxiv | ✅ Free | ✅ Working |
| Semantic Scholar | ✅ Free | ✅ Working |
| Google Scholar | 🔑 Required (SerpAPI) | ✅ Working |
| ACM Digital Library | ✅ Free | ⚠️ Limited* |
| ACL Anthology | ✅ Free | ✅ Via Resp |
| PMLR | ✅ Free | ✅ Via Resp |
| NeurIPS | ✅ Free | ✅ Via Resp |
| IJCAI | ✅ Free | ✅ Via Resp |
| OpenReview | ✅ Free | ✅ Via Resp |
| CVF Open Access | ✅ Free | ✅ Via Resp |
| Connected Papers | ✅ Free | ✅ Requires Selenium |
*ACM website structure changes frequently, may return limited results
Advanced Features
Google Scholar: Get Citations & Related Papers
from resp import google_scholar
# Set API key once
google_scholar.set_api_key("your_serpapi_key")
# Search papers
papers = google_scholar.search_papers("attention mechanism", num_results=5)
# Get citations for a paper
citations = google_scholar.get_citations("Attention is all you need")
# Get related papers
related = google_scholar.get_related_papers("BERT language model")
Connected Papers (Requires Selenium)
from resp import connected_papers
# Install first: pip install respsearch[selenium]
papers = connected_papers().get_connected_papers("paper_title")
Using Resp Class for Multiple Sources
from resp import Resp
# Search across ACL, PMLR, NeurIPS, etc.
resp = Resp()
papers = resp.search_papers("keyword", source="acl")
Citation
If you find this repository useful, please cite:
@misc{Resp2021,
title = {RESP: Research Papers Search},
author = {Pal, Ankit},
year = {2021},
howpublished = {\url{https://github.com/monk1337/resp}},
note = {Fetch academic research papers from multiple sources}
}
Support
If you'd like to support this project:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file respsearch-0.1.2.tar.gz.
File metadata
- Download URL: respsearch-0.1.2.tar.gz
- Upload date:
- Size: 27.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36a3aa90db3f1d358f070bad0ed861bd58d16c8cbd5d6e105b091255987b9711
|
|
| MD5 |
a9f4ca52a9d2190d44fbf3387c5d14b8
|
|
| BLAKE2b-256 |
15c7574cbb891402c1087dd31faea45879b928e2f903002586d0835810b40fe1
|
Provenance
The following attestation bundles were made for respsearch-0.1.2.tar.gz:
Publisher:
publish.yml on monk1337/resp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
respsearch-0.1.2.tar.gz -
Subject digest:
36a3aa90db3f1d358f070bad0ed861bd58d16c8cbd5d6e105b091255987b9711 - Sigstore transparency entry: 779011973
- Sigstore integration time:
-
Permalink:
monk1337/resp@a0211afa7da4700edd7f53a334d18019a2c7e6cb -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/monk1337
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a0211afa7da4700edd7f53a334d18019a2c7e6cb -
Trigger Event:
release
-
Statement type:
File details
Details for the file respsearch-0.1.2-py3-none-any.whl.
File metadata
- Download URL: respsearch-0.1.2-py3-none-any.whl
- Upload date:
- Size: 17.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec229b0418c2381c18e6e67d2f206b577baf9a5bc1807a852f7781a7153ea14a
|
|
| MD5 |
01fc0c6e2ca1d29eaa24634872ebb28f
|
|
| BLAKE2b-256 |
71da1f1049730de9f4e9a8c48c82abddd860a5b95e23f9d599491f7ee8797ef2
|
Provenance
The following attestation bundles were made for respsearch-0.1.2-py3-none-any.whl:
Publisher:
publish.yml on monk1337/resp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
respsearch-0.1.2-py3-none-any.whl -
Subject digest:
ec229b0418c2381c18e6e67d2f206b577baf9a5bc1807a852f7781a7153ea14a - Sigstore transparency entry: 779011974
- Sigstore integration time:
-
Permalink:
monk1337/resp@a0211afa7da4700edd7f53a334d18019a2c7e6cb -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/monk1337
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a0211afa7da4700edd7f53a334d18019a2c7e6cb -
Trigger Event:
release
-
Statement type: