feat: Add fetchFromAllFeeds#1460
Merged
Merged
Conversation
Member
|
Thank you! |
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
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.
This pull request adds support for fetching all feeds at once in the MISP API client and updates the test suite to reflect this new functionality. The main addition is the new
fetch_all_feedsmethod in thepymisp/api.pyfile, which enables users to retrieve all feeds in a single call. The test suite is also updated to acknowledge the presence of this method.API Enhancements:
fetch_all_feedsmethod to theMISPAPI client (pymisp/api.py), providing a way to fetch all feeds via thefeeds/fetchFromAllFeedsendpoint.Test Suite Updates:
missing_methodstest to removefeeds/fetchFromAllFeedsfrom the list of missing endpoints, as it is now implemented (tests/testlive_comprehensive.py).test_feedstest forfetch_all_feeds, noting that it cannot be fully tested because it fetches all events (tests/testlive_comprehensive.py).Human Authored: No AI code generators (e.g., GitHub Copilot, ChatGPT, Clause) were used in the creation of this Pull Request.