-
Notifications
You must be signed in to change notification settings - Fork 54
Added Support to Scopus database #14
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
Open
rakshabesafe
wants to merge
8
commits into
openags:main
Choose a base branch
from
rakshabesafe:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This commit removes a commented-out DEFAULT_API_KEY constant from scopus.py, as it's no longer used and could cause confusion.
added support for scopus
This commit addresses a ModuleNotFoundError for 'pandas' by: 1. Adding 'pandas' to the dependencies in pyproject.toml, as it is a sub-dependency of elsapy. 2. Regenerating the uv.lock file to reflect the new dependency graph after resolving import issues. This ensures that all necessary dependencies for Scopus integration are correctly installed.
fix: Add pandas dependency for elsapy and regenerate lockfile
Added Support to scopus |
Adds a new searcher for the Shodhganga platform. Key features: - Implements ShodhgangaSearcher class for fetching and parsing search results. - Integrates the new searcher into the academic_platforms hub. - Includes unit tests with mocked HTTP responses and assumed HTML structures. IMPORTANT: The HTML parsing logic and search parameters are based on common DSpace patterns due to inability to directly access shodhganga.inflibnet.ac.in during development. This implementation will require validation and potential adjustments after testing against the live website.
feat: Add basic Shodhganga searcher
Implemented a new PMCSearcher for fetching paper metadata, downloading PDFs, and reading text content from PubMed Central. - Created `paper_search_mcp/academic_platforms/pmc.py` with the PMCSearcher class. - Updated `paper_search_mcp/server.py` to include MCP tools for PMC (search_pmc, download_pmc, read_pmc_paper). - Added comprehensive unit tests in `tests/test_pmc.py`, including mocks for external dependencies. - Ensured `pyproject.toml` has necessary dependencies (no changes were needed for PMC itself as deps were already present or standard lib). - Corrected various import errors and capitalization issues in `paper_search_mcp/academic_platforms/__init__.py` that were uncovered during testing. - Refined abstract and date parsing in `PMCSearcher` for robustness.
feat: Add PubMed Central (PMC) support
very interested by this feature, any news? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot encountered an error and was unable to review this pull request. You can try again by re-requesting a review.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added Support to Scopus database set SCOPUS_API_KEY as environment variable to work