Metadata-Version: 2.1
Name: github-timeline-rss
Version: 1.2.2
Summary: Github timeline to RSS translation for easier feed integration
Home-page: https://github.com/narfman0/github_timeline_rss
Author: Jon Robison
Author-email: narfman0@gmail.com
License: MIT license
Keywords: github_timeline_rss github timeline rss atom
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: flask
Requires-Dist: requests

===============================
Github timeline RSS
===============================


.. image:: https://img.shields.io/pypi/v/github_timeline_rss.svg
        :target: https://pypi.python.org/pypi/github_timeline_rss

.. image:: https://img.shields.io/travis/narfman0/github_timeline_rss.svg
        :target: https://travis-ci.org/narfman0/github_timeline_rss


Github timeline to RSS translation for easier feed integration


* Free software: MIT license


Features
--------

* Create RSS feeds from github timelines
* Command line interface to dump to stdout or a file

Usage
-----

Optional: set up virtualenv environment with::

    virtualenv venv
    source venv/bin/activate

Install requirements::

    pip install -r requirements_dev.txt

Run flask app, e.g.::

    cd github_timeline_rss
    FLASK_APP=rss.py flask run

Test::

    http://127.0.0.1:5000/narfman0

Should show rss feed for activity for narfman0 from github!

CLI
---

The command line interface may be used to dump a timeline to stdout::

    github_timeline_rss narfman0

or it may be directed at a file with `--file`::

    github_timeline_rss narfman0 --file narfman0.atom


