https://github.com/felipebaltazar/podcastmanager
Tool to download and organize your Podcasts programmatically
https://github.com/felipebaltazar/podcastmanager
csharp csharp-library manager nerdcast netstandard20 nuget-package opensource podcast standard tool
Last synced: 4 months ago
JSON representation
Tool to download and organize your Podcasts programmatically
- Host: GitHub
- URL: https://github.com/felipebaltazar/podcastmanager
- Owner: felipebaltazar
- License: mit
- Created: 2018-04-20T16:21:36.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T05:24:27.000Z (over 2 years ago)
- Last Synced: 2025-01-04T03:30:40.889Z (6 months ago)
- Topics: csharp, csharp-library, manager, nerdcast, netstandard20, nuget-package, opensource, podcast, standard, tool
- Language: C#
- Size: 40 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PodcastManager
Tool to download and organize your Podcasts programmatically[](https://travis-ci.org/felipebaltazar/PodcastManager) [](https://ci.appveyor.com/project/felipebaltazar/podcastmanager)[](https://www.nuget.org/packages/PodcastManager/)
## Current Supported Podcasts
The banks below were added in the order they are listed
| Name | Episode List | Additional Info | Method | Status |
| --- | --- | --- | --- | --- |
| [](https://github.com/felipebaltazar/PodcastManager/blob/master/PodcastManager/PodcastManagers/NerdCastManager.cs) | Yes | Episode Number, Title, Published Date, Insertions | Reversed Web API | OK |
| [](https://github.com/felipebaltazar/PodcastManager/blob/master/PodcastManager/PodcastManagers/NaoOuvoManager.cs) | Yes | Episode Number, Title, Published Date, Insertions | Reversed Feed | OK |## Nuget Install
```
Install-Package PodcastManager
```## Usage
```csharp
var podcastManager = new Manager();
var nerdCast = podcastManager.GetManager(PodcastType.NerdCast);
var podcastCollection = await nerdCast.GetPodcastListAsync();
```