Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/nbhirud/pypodcasts
- Owner: nbhirud
- License: gpl-3.0
- Created: 2024-09-02T23:03:49.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-15T01:22:03.000Z (4 months ago)
- Last Synced: 2024-10-19T22:21:45.018Z (2 months ago)
- Topics: audio-player, ollama, podcast, python, rss, rss-feed, rss-reader, sqlite3, summarize, transcribe, whisper-ai, wordcloud, xml, xml-parser
- Language: Python
- Homepage:
- Size: 54.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```