Metadata-Version: 2.1
Name: pypi-rss
Version: 2020.12.3
Summary: pypi.org rss utils
Home-page: https://github.com/andrewp-as-is/pypi-rss.py
License: Unlicense
Description: <!--
        https://readme42.com
        -->
        
        
        [![](https://img.shields.io/pypi/v/pypi-rss.svg?maxAge=3600)](https://pypi.org/project/pypi-rss/)
        [![](https://img.shields.io/badge/License-Unlicense-blue.svg?longCache=True)](https://unlicense.org/)
        
        ### Installation
        ```bash
        $ [sudo] pip install pypi-rss
        ```
        
        #### Pros
        Batteries included:
        +   xml and datetime parser
        +   requests/xml exceptions catch. ready for production usage! :)
        
        #### Examples
        ```python
        import pypi_rss
        
        for p in pypi_rss.get_newest_packages():
            print(p['pubdate'], p['name'], p['description'])
        
        for p in pypi_rss.get_latest_updates():
            print(p['pubdate'], p['name'], p['version'], p['description'])
        ```
        
        <p align="center">
            <a href="https://readme42.com/">readme42.com</a>
        </p>
Keywords: pypi.org rss
Platform: UNKNOWN
Classifier: License :: Public Domain
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
