poddb_client 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +40 -5
- data/lib/poddb_client/version.rb +1 -1
- metadata +1 -1
data/README.markdown
CHANGED
@@ -8,6 +8,16 @@ and Vim.
|
|
8
8
|
[screenshots]
|
9
9
|
|
10
10
|
|
11
|
+
## Why
|
12
|
+
|
13
|
+
I wanted a fast and easy way to search for and download podcasts in any Unix
|
14
|
+
environment, without resorting to a GUI application or web browser. I also
|
15
|
+
wanted to start crowdsourcing and publishing podcast download statistics to
|
16
|
+
make it easier to spot popular podcasts and podcast episodes. Finally, I wanted
|
17
|
+
a more streamlined way to search for NPR podcasts than through the NPR website
|
18
|
+
or iTunes. Poddb serves these three goals.
|
19
|
+
|
20
|
+
|
11
21
|
## Prerequisites
|
12
22
|
|
13
23
|
* Vim (7.2 or later)
|
@@ -47,6 +57,8 @@ This will remove all traces of Poddb, except for the application-specific files
|
|
47
57
|
it creates in a directory called `~/.poddb`. These you'll have to remove
|
48
58
|
manually.
|
49
59
|
|
60
|
+
To update Poddb to the latest version, just run `gem install poddb_client`
|
61
|
+
again.
|
50
62
|
|
51
63
|
## How to use it
|
52
64
|
|
@@ -92,8 +104,8 @@ podcast episodes** below for instruction on how to view and download episodes.
|
|
92
104
|
|
93
105
|
## Add podcasts to the database
|
94
106
|
|
95
|
-
If you don't see a favorite
|
96
|
-
you can add the
|
107
|
+
If you don't see a favorite podcast of yours in the list returned by `poddb -l`,
|
108
|
+
you can add the podcast to the Poddb database with this command:
|
97
109
|
|
98
110
|
poddb -a PODCAST_URL
|
99
111
|
|
@@ -111,6 +123,20 @@ to your favorites by putting the cursor over it and pressing `f`. Press `f`
|
|
111
123
|
again to remove the podcast from your favorite podcasts. Favorite podcasts
|
112
124
|
have a `@` sign in the left margin.
|
113
125
|
|
126
|
+
@ NPR Programs: Fresh Air from WHYY | 16 | 0 | Sep 15 2011 |
|
127
|
+
NPR Programs: Talk of the Nation | 41 | 0 | Sep 15 2011 |
|
128
|
+
@ NPR Programs: Tell Me More Podcast | 20 | 0 | Sep 15 2011 |
|
129
|
+
NPR Programs: Wait Wait... Don't Tell Me! Podcast | 10 | 0 | Sep 10 2011 |
|
130
|
+
NPR Series: Alt.Latino Podcast | 21 | 0 | Sep 14 2011 |
|
131
|
+
NPR Series: From Scratch | 16 | 0 | Sep 14 2011 |
|
132
|
+
NPR Series: Talk of the Nation Opinion Page Podcast | 10 | 0 | Sep 05 2011 |
|
133
|
+
NPR Series: World Cafe: Next from WXPN Podcast | 10 | 0 | Sep 12 2011 |
|
134
|
+
NPR Topics: Business Story of the Day Podcast | 21 | 0 | Sep 16 2011 |
|
135
|
+
NPR Topics: Economy Podcast | 11 | 0 | Sep 13 2011 |
|
136
|
+
NPR Topics: Education Podcast | 12 | 0 | Sep 15 2011 |
|
137
|
+
NPR Topics: Environment Podcast | 11 | 0 | Sep 15 2011 |
|
138
|
+
@ NPR Topics: Food Podcast | 11 | 0 | Sep 15 2011 |
|
139
|
+
|
114
140
|
Once you have a few favorite podcasts, you can list and navigate them with
|
115
141
|
the command
|
116
142
|
|
@@ -136,13 +162,22 @@ A basic search like
|
|
136
162
|
|
137
163
|
will return all podcast episodes that match the query words "music" and "oud."
|
138
164
|
|
165
|
+
pubdate | match | dwnlds | title | podcast
|
166
|
+
-------------+-------+--------+----------------------------------------------------+--------------------
|
167
|
+
Sep 01 2011 | 0.99 | 1 | Journeys with the Oud | PRI: Afropop Worldw
|
168
|
+
Aug 05 2011 | 8.74 | | Mystics and the Mediterranean (Podcast Edition) | The latest articles
|
169
|
+
Jun 29 2011 | 1.01 | | Worldview 6.29.11 | Worldview Podcast
|
170
|
+
Oct 15 2010 | 0.97 | | Unusual Collaborations (Weekly Podcast) | The latest articles
|
171
|
+
|
172
|
+
|
139
173
|
You can also limit the scope of the search by media type:
|
140
174
|
|
141
175
|
poddb -t video ruby
|
142
176
|
|
143
|
-
will return all podcast episodes that match the
|
144
|
-
|
145
|
-
|
177
|
+
will return all podcast episodes that match the word "ruby" that are video
|
178
|
+
downloads.
|
179
|
+
|
180
|
+
You can use `-t audio` to limit search results to audio downloads.
|
146
181
|
|
147
182
|
Two other command flags that are useful are `-o` and `-d`. `-d n` lets you
|
148
183
|
limit the scope of the search to episodes published in the last _n_ days. So
|
data/lib/poddb_client/version.rb
CHANGED