semanticscholar
Unofficial Python client library for Semantic Scholar APIs.
Main features
- Simplified access to the Semantic Scholar APIs
- Support for the Academic Graph and Recommendations APIs
- Typed responses
- Streamlined navigation of paginated responses
- Support for asynchronous requests
Quickstart
Installation
pip install semanticscholar
See the install page for more detailed installation instructions.
Usage
from semanticscholar import SemanticScholar
sch = SemanticScholar()
paper = sch.get_paper('10.1093/mind/lix.236.433')
print(paper.title)
Output:
Computing Machinery and Intelligence
What next?
- Usage - See additional examples to learn how to use the library to fetch data from Semantic Scholar APIs.
- Reference - Get the details of the classes and methods available in the library.
- API Endpoints - Check the supported SemanticScholar API endpoints and which methods implement them.
Semantic Scholar API official docs
If you have concerns or feedback specific to this library, feel free to open an issue. However, the official documentation provides additional resources for broader API-related issues.
Contributing
As a volunteer-maintained open-source project, contributions of all forms are welcome! For more information, see the Contributing Guidelines.
Please make sure to understand our Contributor Covenant Code of Conduct before you contribute. TL;DR: Be nice and respectful!