https://github.com/gusanmaz/gpodder-exporter
CLI to export podcast title and RSS URL pairs from gpodder database file in CSV format
https://github.com/gusanmaz/gpodder-exporter
gpodder podcast podcasts rss-feed
Last synced: about 1 month ago
JSON representation
CLI to export podcast title and RSS URL pairs from gpodder database file in CSV format
- Host: GitHub
- URL: https://github.com/gusanmaz/gpodder-exporter
- Owner: gusanmaz
- Created: 2023-04-22T15:42:30.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-22T15:48:02.000Z (about 3 years ago)
- Last Synced: 2026-01-02T16:22:51.400Z (5 months ago)
- Topics: gpodder, podcast, podcasts, rss-feed
- Language: Python
- Homepage: https://pypi.org/project/gpodder-exporter/
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gpodder-exporter
A simple command-line tool to export gPodder podcast titles and RSS URLs to a CSV file. This tool is helpful when you want to extract the list of subscribed podcasts and their RSS feeds from gPodder without having to manually parse the configuration files, which are not human-readable.
This program simply reads the gPodder database file and extracts the podcast titles and RSS URLs from it. It then saves the extracted data to a CSV file.
## Installation
You can install `gpodder-exporter` using pip:
`pip install gpodder-exporter`
## Usage
To use `gpodder-exporter`, simply run the following command:
`gpodder-export`
By default, the tool will look for the gPodder database file in the current working directory and save the output to a file named `podcast_titles_and_rss_urls.csv`.
If your database file is located in a different folder, you can provide the path using the `--data_folder` option:
`gpodder-export --data_folder /path/to/your/data_folder`
To specify a custom output path for the CSV file, use the `--output` option:
`gpodder-exporter --output /path/to/your/output.csv`
## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.