get_crypto_rss_list
Fetch and filter cryptocurrency RSS feeds from local or remote OPML files. Retrieve URLs, descriptions, and categories, optionally narrowed by a keyword for precise results.
Instructions
Retrieve a list of available cryptocurrency RSS feeds from a local or remote OPML file, optionally filtered by keyword.
Parameters:
keyword (str, optional): Filter feeds where the keyword appears in the description or category (case-insensitive).
opml_file (str, optional): Path to a local OPML file to read feeds from. If not provided, fetches from the remote OPML URL.
Returns:
str: A formatted string listing each RSS feed URL, its description, and category, parsed from the OPML file.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyword | No | ||
opml_file | No | RAW.opml |
Input Schema (JSON Schema)
{
"properties": {
"keyword": {
"default": null,
"title": "Keyword",
"type": "string"
},
"opml_file": {
"default": "RAW.opml",
"title": "Opml File",
"type": "string"
}
},
"title": "get_crypto_rss_listArguments",
"type": "object"
}