Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 19 days 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 (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T05:24:27.000Z (about 2 years ago)
- Last Synced: 2024-12-04T15:17:02.649Z (about 2 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[![Build Status](https://travis-ci.org/felipebaltazar/PodcastManager.svg?branch=master)](https://travis-ci.org/felipebaltazar/PodcastManager) [![Build status](https://ci.appveyor.com/api/projects/status/8ns5xutsna7cey73?svg=true)](https://ci.appveyor.com/project/felipebaltazar/podcastmanager)[![NuGet](https://img.shields.io/nuget/v/PodcastManager.svg)](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 |
| --- | --- | --- | --- | --- |
| [![Nerdcast](https://github.com/felipebaltazar/PodcastManager/blob/master/Logos/Nerdcast.png)](https://github.com/felipebaltazar/PodcastManager/blob/master/PodcastManager/PodcastManagers/NerdCastManager.cs) | Yes | Episode Number, Title, Published Date, Insertions | Reversed Web API | OK |
| [![NaoOuvo](https://github.com/felipebaltazar/PodcastManager/blob/master/Logos/NaoOuvo.png)](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();
```