talklib 2.1.3__tar.gz → 2.1.4__tar.gz
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.
- {talklib-2.1.3/src/talklib.egg-info → talklib-2.1.4}/PKG-INFO +12 -17
- {talklib-2.1.3 → talklib-2.1.4}/README.md +11 -16
- {talklib-2.1.3 → talklib-2.1.4}/pyproject.toml +1 -1
- {talklib-2.1.3 → talklib-2.1.4/src/talklib.egg-info}/PKG-INFO +12 -17
- {talklib-2.1.3 → talklib-2.1.4}/LICENSE.txt +0 -0
- {talklib-2.1.3 → talklib-2.1.4}/requirements.txt +0 -0
- {talklib-2.1.3 → talklib-2.1.4}/setup.cfg +0 -0
- {talklib-2.1.3 → talklib-2.1.4}/src/talklib/__init__.py +0 -0
- {talklib-2.1.3 → talklib-2.1.4}/src/talklib/ev.py +0 -0
- {talklib-2.1.3 → talklib-2.1.4}/src/talklib/ffmpeg.py +0 -0
- {talklib-2.1.3 → talklib-2.1.4}/src/talklib/notify.py +0 -0
- {talklib-2.1.3 → talklib-2.1.4}/src/talklib/pod.py +0 -0
- {talklib-2.1.3 → talklib-2.1.4}/src/talklib/show.py +0 -0
- {talklib-2.1.3 → talklib-2.1.4}/src/talklib/utils.py +0 -0
- {talklib-2.1.3 → talklib-2.1.4}/src/talklib.egg-info/SOURCES.txt +0 -0
- {talklib-2.1.3 → talklib-2.1.4}/src/talklib.egg-info/dependency_links.txt +0 -0
- {talklib-2.1.3 → talklib-2.1.4}/src/talklib.egg-info/requires.txt +0 -0
- {talklib-2.1.3 → talklib-2.1.4}/src/talklib.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: talklib
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.4
|
|
4
4
|
Summary: A package to automate processing of shows/segments airing on the TL
|
|
5
5
|
Author-email: Ben Weddle <ben.weddle@gmail.com>
|
|
6
6
|
Maintainer-email: Ben Weddle <ben.weddle@gmail.com>
|
|
@@ -102,7 +102,7 @@ Requires-Dist: zipp==3.17.0
|
|
|
102
102
|
|
|
103
103
|

|
|
104
104
|
[](https://github.com/Nashville-Public-Library/talklib/issues)
|
|
105
|
-
[](https://github.com/Nashville-Public-Library/talklib/commits/
|
|
105
|
+
[](https://github.com/Nashville-Public-Library/talklib/commits/main)
|
|
106
106
|
|
|
107
107
|
## A package to automate processing TL shows/segments and podcasts
|
|
108
108
|
|
|
@@ -468,9 +468,17 @@ SD.run()
|
|
|
468
468
|
|
|
469
469
|
## TL Podcasts Usage
|
|
470
470
|
|
|
471
|
-
|
|
471
|
+
### Prerequisites
|
|
472
472
|
|
|
473
|
-
|
|
473
|
+
Before starting to podcast a new show, you must log in to the server and create a directory. The directory should be named the same as the base name of the audio files for that show. For example, The Nashville Scene audio files are labelled as SceneMMDDYY. The directory name on the server should be `scene` in all lower-case.
|
|
474
|
+
|
|
475
|
+
You must also add two files to this directory: an RSS Feed and and an image.
|
|
476
|
+
|
|
477
|
+
The RSS feed should be named `feed.xml`. The image (the logo for the show) should be named `image.jpg`. You should update the template RSS feed file for each program. There are several default values such as Title that need to be changed. They are marked as such in the template.
|
|
478
|
+
|
|
479
|
+
### Scripts
|
|
480
|
+
|
|
481
|
+
`TLPod` is the main class to use. Import the class to your script like this:
|
|
474
482
|
|
|
475
483
|
````python
|
|
476
484
|
from talklib import TLPod
|
|
@@ -490,23 +498,11 @@ from talklib import TLPod
|
|
|
490
498
|
nyt = TLPod(
|
|
491
499
|
display_name = "New York Times",
|
|
492
500
|
filename_to_match = "nyt",
|
|
493
|
-
categories = ["News and Politics"]
|
|
494
501
|
)
|
|
495
502
|
nyt.run()
|
|
496
503
|
````
|
|
497
504
|
|
|
498
|
-
To add multiple category tags, do this:
|
|
499
505
|
|
|
500
|
-
````python
|
|
501
|
-
from talklib import TLPod
|
|
502
|
-
|
|
503
|
-
nyt = TLPod(
|
|
504
|
-
display_name = "New York Times",
|
|
505
|
-
filename_to_match = "nyt",
|
|
506
|
-
categories = ["News and Politics", "National News", "International News"]
|
|
507
|
-
)
|
|
508
|
-
nyt.run()
|
|
509
|
-
````
|
|
510
506
|
|
|
511
507
|
The default number of episodes allowed in a podcast feed at any given time is 5. To change that:
|
|
512
508
|
|
|
@@ -516,7 +512,6 @@ from talklib import TLPod
|
|
|
516
512
|
nyt = TLPod(
|
|
517
513
|
display_name = "New York Times",
|
|
518
514
|
filename_to_match = "nyt",
|
|
519
|
-
categories = ["News and Politics"],
|
|
520
515
|
max_episodes_in_feed = 7
|
|
521
516
|
)
|
|
522
517
|
nyt.run()
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
[](https://github.com/Nashville-Public-Library/talklib/issues)
|
|
5
|
-
[](https://github.com/Nashville-Public-Library/talklib/commits/
|
|
5
|
+
[](https://github.com/Nashville-Public-Library/talklib/commits/main)
|
|
6
6
|
|
|
7
7
|
## A package to automate processing TL shows/segments and podcasts
|
|
8
8
|
|
|
@@ -368,9 +368,17 @@ SD.run()
|
|
|
368
368
|
|
|
369
369
|
## TL Podcasts Usage
|
|
370
370
|
|
|
371
|
-
|
|
371
|
+
### Prerequisites
|
|
372
372
|
|
|
373
|
-
|
|
373
|
+
Before starting to podcast a new show, you must log in to the server and create a directory. The directory should be named the same as the base name of the audio files for that show. For example, The Nashville Scene audio files are labelled as SceneMMDDYY. The directory name on the server should be `scene` in all lower-case.
|
|
374
|
+
|
|
375
|
+
You must also add two files to this directory: an RSS Feed and and an image.
|
|
376
|
+
|
|
377
|
+
The RSS feed should be named `feed.xml`. The image (the logo for the show) should be named `image.jpg`. You should update the template RSS feed file for each program. There are several default values such as Title that need to be changed. They are marked as such in the template.
|
|
378
|
+
|
|
379
|
+
### Scripts
|
|
380
|
+
|
|
381
|
+
`TLPod` is the main class to use. Import the class to your script like this:
|
|
374
382
|
|
|
375
383
|
````python
|
|
376
384
|
from talklib import TLPod
|
|
@@ -390,23 +398,11 @@ from talklib import TLPod
|
|
|
390
398
|
nyt = TLPod(
|
|
391
399
|
display_name = "New York Times",
|
|
392
400
|
filename_to_match = "nyt",
|
|
393
|
-
categories = ["News and Politics"]
|
|
394
401
|
)
|
|
395
402
|
nyt.run()
|
|
396
403
|
````
|
|
397
404
|
|
|
398
|
-
To add multiple category tags, do this:
|
|
399
405
|
|
|
400
|
-
````python
|
|
401
|
-
from talklib import TLPod
|
|
402
|
-
|
|
403
|
-
nyt = TLPod(
|
|
404
|
-
display_name = "New York Times",
|
|
405
|
-
filename_to_match = "nyt",
|
|
406
|
-
categories = ["News and Politics", "National News", "International News"]
|
|
407
|
-
)
|
|
408
|
-
nyt.run()
|
|
409
|
-
````
|
|
410
406
|
|
|
411
407
|
The default number of episodes allowed in a podcast feed at any given time is 5. To change that:
|
|
412
408
|
|
|
@@ -416,7 +412,6 @@ from talklib import TLPod
|
|
|
416
412
|
nyt = TLPod(
|
|
417
413
|
display_name = "New York Times",
|
|
418
414
|
filename_to_match = "nyt",
|
|
419
|
-
categories = ["News and Politics"],
|
|
420
415
|
max_episodes_in_feed = 7
|
|
421
416
|
)
|
|
422
417
|
nyt.run()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: talklib
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.4
|
|
4
4
|
Summary: A package to automate processing of shows/segments airing on the TL
|
|
5
5
|
Author-email: Ben Weddle <ben.weddle@gmail.com>
|
|
6
6
|
Maintainer-email: Ben Weddle <ben.weddle@gmail.com>
|
|
@@ -102,7 +102,7 @@ Requires-Dist: zipp==3.17.0
|
|
|
102
102
|
|
|
103
103
|

|
|
104
104
|
[](https://github.com/Nashville-Public-Library/talklib/issues)
|
|
105
|
-
[](https://github.com/Nashville-Public-Library/talklib/commits/
|
|
105
|
+
[](https://github.com/Nashville-Public-Library/talklib/commits/main)
|
|
106
106
|
|
|
107
107
|
## A package to automate processing TL shows/segments and podcasts
|
|
108
108
|
|
|
@@ -468,9 +468,17 @@ SD.run()
|
|
|
468
468
|
|
|
469
469
|
## TL Podcasts Usage
|
|
470
470
|
|
|
471
|
-
|
|
471
|
+
### Prerequisites
|
|
472
472
|
|
|
473
|
-
|
|
473
|
+
Before starting to podcast a new show, you must log in to the server and create a directory. The directory should be named the same as the base name of the audio files for that show. For example, The Nashville Scene audio files are labelled as SceneMMDDYY. The directory name on the server should be `scene` in all lower-case.
|
|
474
|
+
|
|
475
|
+
You must also add two files to this directory: an RSS Feed and and an image.
|
|
476
|
+
|
|
477
|
+
The RSS feed should be named `feed.xml`. The image (the logo for the show) should be named `image.jpg`. You should update the template RSS feed file for each program. There are several default values such as Title that need to be changed. They are marked as such in the template.
|
|
478
|
+
|
|
479
|
+
### Scripts
|
|
480
|
+
|
|
481
|
+
`TLPod` is the main class to use. Import the class to your script like this:
|
|
474
482
|
|
|
475
483
|
````python
|
|
476
484
|
from talklib import TLPod
|
|
@@ -490,23 +498,11 @@ from talklib import TLPod
|
|
|
490
498
|
nyt = TLPod(
|
|
491
499
|
display_name = "New York Times",
|
|
492
500
|
filename_to_match = "nyt",
|
|
493
|
-
categories = ["News and Politics"]
|
|
494
501
|
)
|
|
495
502
|
nyt.run()
|
|
496
503
|
````
|
|
497
504
|
|
|
498
|
-
To add multiple category tags, do this:
|
|
499
505
|
|
|
500
|
-
````python
|
|
501
|
-
from talklib import TLPod
|
|
502
|
-
|
|
503
|
-
nyt = TLPod(
|
|
504
|
-
display_name = "New York Times",
|
|
505
|
-
filename_to_match = "nyt",
|
|
506
|
-
categories = ["News and Politics", "National News", "International News"]
|
|
507
|
-
)
|
|
508
|
-
nyt.run()
|
|
509
|
-
````
|
|
510
506
|
|
|
511
507
|
The default number of episodes allowed in a podcast feed at any given time is 5. To change that:
|
|
512
508
|
|
|
@@ -516,7 +512,6 @@ from talklib import TLPod
|
|
|
516
512
|
nyt = TLPod(
|
|
517
513
|
display_name = "New York Times",
|
|
518
514
|
filename_to_match = "nyt",
|
|
519
|
-
categories = ["News and Politics"],
|
|
520
515
|
max_episodes_in_feed = 7
|
|
521
516
|
)
|
|
522
517
|
nyt.run()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|