Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nbhirud/pypodcasts

A simple podcasts player/viewer being developed using python. The goal is to have a modern yet simple podcasts functionality. Should retrive RSS based on xml, save them, play audio, display description, audio transcript, transcript summary, display image from show/episode, and display a wordcloud based on transcript to give a quick idea.
https://github.com/nbhirud/pypodcasts

audio-player ollama podcast python rss rss-feed rss-reader sqlite3 summarize transcribe whisper-ai wordcloud xml xml-parser

Last synced: about 1 month ago
JSON representation

A simple podcasts player/viewer being developed using python. The goal is to have a modern yet simple podcasts functionality. Should retrive RSS based on xml, save them, play audio, display description, audio transcript, transcript summary, display image from show/episode, and display a wordcloud based on transcript to give a quick idea.

Awesome Lists containing this project

README

        

# pypodcasts

## 1. Environment setup
Note: I am using fedora as the operating system on my primary development machine. So the instructions are based on Fedora. But similar things exist for all operating systems and can be found easily

### 1.1 Install Poetry
```
sudo dnf install -y poetry
```
### 1.2 Clone the repo
I know that this is expected to be known by most developers. But This is a simple code project and I would like it to be easily understandable for someone who is just starting.
```
git clone https://github.com/nbhirud/pypodcasts.git
```

### 1.3 `poetry install` needed some gpg key.
Ran the following and selected this key in next step when it prompted. This step will not be needed if you have a gpg key already. You will need to remember the gpg paraphrase for the key you select.
More details: https://bugs.kde.org/show_bug.cgi?id=353960

```
gpg --full-generate-key
# gpg2 --full-gen-key # This worked too
```

### 1.4 Install dependencies using poetry:

```
# cd to the repo base directory and run the following
poetry install
```