Go to file
Magnus Walbeck 13abc5b331 update setup.py 2017-08-11 12:02:00 +02:00
logo even better logo 2015-10-26 09:51:09 +01:00
podfox improve progress bar implementation 2017-07-12 21:13:36 +02:00
.gitignore update .gitignore 2017-07-04 15:28:54 +02:00
LICENSE.md Update LICENSE.md 2015-10-25 17:53:48 +01:00
README.md Change behavior of maxnum 2017-07-05 22:21:37 +02:00
requirements.txt Update dependencies 2017-07-05 15:11:05 +02:00
setup.py update setup.py 2017-08-11 12:02:00 +02:00

README.md

podfox - podcatching for the terminal.

podfox logo

A program for managing & catching podcasts from the terminal.

Work in Progress and unfinished. Use at your own risk.

Requirements

requires feedparser, requests, colorama and tqdm

git clone https://github.com/mwalbeck/podfox.git
cd podfox
python3 setup.py install

Configuration

podfox main configuration file is called .podfox.json and should be located in your home directory. Here is mine:

{
    "podcast-directory"     : "/home/<USER>/podcasts",
    "maxnum"                : 5,
    "cover-image"           : true,
    "cover-image-name"      : "folder",
    "rename-episodes"       : true,
    "date-format"           : "%Y-%m-%d",
    "connection-timeout"    : 10,
    "conncetion-retries"    : 3
}
  • podcast-directory is your main directory to store podcast data. This directory should be empty before you begin adding feeds.
  • maxnum (optional) download the newest of noted amount of episodes from podcast. When a new episodes comes out the oldest will be ignore if deleted (default is no limit)
  • cover-image (optional) boolean value to enable downloading of podcast image (default is false)
  • cover-image-name (optional) custom name for the image (default is folder)
  • rename-episodes (optional) boolean value to enable renaming of podcast episodes (default is false)
  • date-format (optional) formatting for the date when renaming episodes (default is %Y-%m-%d)
  • connection-timeout (optional) int in seconds for how long to wait before timeout (default is 10)
  • connection-retries (optional) int for how many retries per podcast episode before moving on to next episode if there is connection problems (default is 3)

Directory Structure

In podfox, every podcast is identified with its own shortname, which is restricted to lowercase-letters, numbers, and dashes. If the shortname is not specifically given during import, it will be derived from the title of the feed. The following shows a directory tree for such a setup, including two podcasts, each with its own feed.json file for bookkeeping.

+ podcast-directory
|              
+-----------+ python-for-rockstars
|           |
|           + feed.json
|           + episode1.ogg
|           + episode2.ogg
|
+-----------+ cobol-today
            |
            + feed.json
            + episode289.ogg
            + episode288.ogg

Usage:

    podfox.py import <feed-url> [<shortname>]
    podfox.py update [<shortname>]
    podfox.py feeds
    podfox.py episodes <shortname>
    podfox.py download [<shortname> --how-many=<n>]

Import

To import a new feed use: podfox.py import <feed-url> [<shortname>] For example, to import the haskell cast feed:

podfox import http://www.haskellcast.com/feed.xml To import the techsnap podcast, and to store the episodes to a specific folder ts, use

podfox import http://feeds.feedburner.com/techsnapmp3 ts

Update

podfox update will update all feeds (This does not include downloading any new episodes)

podfox update <shortname> will only update the feed associated with the given shortname

Feeds

podfox feeds will give an overview over the imported pocasts, and their shortnames. In the example:

$ podfox feeds
title                                     |  shortname           
================================================================
TechSNAP MP3                              |  ts                  
The Haskell Cast                          |  the-haskell-cast    

Episodes

podfox episodes <shortname> will produce a list of episodes available for this podcast, and wether they have been downloaded yet.

$ podfox episodes ts
A Rip in NTP | TechSNAP 237               |  Not Downloaded      
National Security Breaking Agency | Tech  |  Not Downloaded      
Catching the Angler | TechSNAP 235        |  Not Downloaded      
Key Flaw With GPL | TechSNAP 234          |  Not Downloaded      
Dukes of Cyber Hazard | TechSNAP 233      |  Not Downloaded      
Hardware Insecurity Module | TechSNAP 23  |  Not Downloaded      
Leaky RSA Keys | TechSNAP 231             |  Not Downloaded      
Trojan Family Ties | TechSNAP 230         |  Not Downloaded      
Extortion Startups | TechSNAP 229         |  Not Downloaded      
[...]

Downloading

podfox download will download maxnum not yet downloaded episodes for every feed (if possible.)

podfox download ts --how-many=3 will download the 3 newest techsnap podcasts that have not yet been downloaded. (Skipping newer, but already downloaded ones). If the --how-many parameter is omitted, the maxnum parameter from the configuration file is used instead.