aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 77bd771f1d9f0cac490c438579dd8b928108d7ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# simple-rss-podcast-downloader

A simple Rust CLI application that downloads podcast episodes from an RSS feed.

## Installation

Ensure you have [Rust](https://www.rust-lang.org/tools/install) installed.

Clone the repository:

```bash
git clone https://cgit.farzat.xyz/public/simple-rss-podcast-downloader
cd simple-rss-podcast-downloader
```

Build the project:

```bash
cargo build --release
```

## Usage

Run the application with:

```bash
simple-rss-podcast-downloader <RSS_FEED_URL> [OUTPUT_DIR]
```

Example:

```bash
simple-rss-podcast-downloader https://feeds.simplecast.com/54nAGcIl ./downloads
```