Metadata-Version: 2.1
Name: podcast-player
Version: 1.6.1
Summary: A Python command line podcast player.
Home-page: https://github.com/aziezahmed/podcast-player
Author: Aziez Ahmed Chawdhary
Author-email: 
License: MIT License
Keywords: cli,audio,podcast,stream
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: License :: Public Domain
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Environment :: Console
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Provides-Extra: test

Podcast Player
==============

|PyPI version|

*A command line podcast player, written in Python.*

Getting Started
---------------

Prerequisites
~~~~~~~~~~~~~

-  `Python`_
-  `mpv`_ or mplayer or any other media player that can be launched from the command line

Installing
~~~~~~~~~~

Podcast Player is on PyPI so it can be installed with pip.

.. code-block:: bash

    $ pip install podcast-player

To upgrade use the -U flag.

.. code-block:: bash

    $ pip install -U podcast-player

Setup
~~~~~

To begin we need to add some podcast rss feeds. This is done one by one with the following command.

.. code-block:: bash

    $ podcast add URL

If you have an OPML file with podcast subscriptions that you would like to import then you can do so with the -i flag.

.. code-block:: bash

    $ podcast -i OPML-FILE

The default audio player is mpv in no-video mode. If desired you can change that.

.. code-block:: bash

    $ podcast set-player mplayer

Usage
~~~~~

Once you have added all the podcasts you want to subscribe to, then simply run the 'podcast' command to select the podcast and the episode you want to listen to.

.. code-block:: bash

    $ podcast

For more details run with the help option.

.. code-block:: bash
		
    $ podcast --help

    podcast

    Usage:
      podcast
      podcast add <url>
      podcast delete
      podcast set-player <player>
      podcast -i <opml-file>
      podcast -h | --help
      podcast --version

    Options:
      -h --help                         Show this screen.
      --version                         Show version.

    Examples:
      podcast
      podcast set-player mpv
      podcast set-player mplayer
      podcast add https://my-podcast-url.com/feed.rss

    Help:
      For help using this tool, please open an issue on the Github repository:
      https://github.com/aziezahmed/podcast-player


Built With
----------

-  `skele-cli`_

Authors
-------

-  `Aziez Ahmed Chawdhary`_

License
-------

This project is licensed under the MIT License

.. _Python: https://www.python.org
.. _PyPi: https://pypi.python.org/pypi
.. _skele-cli: https://github.com/rdegges/skele-cli
.. _Aziez Ahmed Chawdhary: https://github.com/aziezahmed
.. _mpv: https://mpv.io
.. |PyPI version| image:: https://img.shields.io/pypi/v/podcast-player.svg
   :target: https://pypi.python.org/pypi/podcast-player


