Metadata-Version: 2.1
Name: pypi-rss
Version: 2020.6.1
Summary: pypi.org rss utils
Home-page: https://github.com/andrewp-as-is/pypi-rss.py
License: Unlicense
Description: <!--
        https://pypi.org/project/readme-generator/
        https://pypi.org/project/python-readme-generator/
        -->
        
        [![](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['title'], p['pubdate'], p['name'])
        
        for p in pypi_rss.get_latest_updates():
            print(p['title'], p['pubdate'], p['name'], p['version'])
        ```
        
        <p align="center">
            <a href="https://pypi.org/project/python-readme-generator/">python-readme-generator</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
