Metadata-Version: 2.1
Name: rss-reader-bektur
Version: 3.1.1
Summary: RSS reader for final task in Python educational course
Home-page: http://packages.python.org/rss-reader
Author: Bektur Soltobaev
Author-email: bektur_soltobaev@epam.com
License: BSD
Keywords: rss reader exam
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: BSD License

**bold**CLI utility for reading RSS news from given URL**bold**


Provides rss-reader command that receives single positional argument "source",
that should be the URL for rss news. Utility will collect data from that URL and
print out collected data in human readable format.


Usage example:

    rss-reader "https://news.yahoo.com/rss/" --limit 1


Output:

    Feed: Yahoo News - Latest News & Headlines 


    Title: Woman whose rape DNA led to her arrest sues San Francisco

    Date: 2022-09-12T20:58:22Z

    Link: https://news.yahoo.com/woman-whose-rape-dna-led-205822755.html


Optional arguments:

--limit  Set the maximum amount of output messages

--verbose        Increase output verbosity

--version        Show current version

--json           Set output format to JSON. 

--date           Show cached entry for given date in %Y%m%d format

Example of JSON output:

    {"Feed": "Yahoo News - Latest News & Headlines",
    "Entries": [{"Title": "Woman whose rape DNA led to her arrest sues San Francisco",
    "Date": "2022-09-12T20:58:22Z",
    "Link": "https://news.yahoo.com/woman-whose-rape-dna-led-205822755.html"},]}
