https://github.com/krshrimali/youtube-monitoring-app-rust-iced
Using iced-rs library for YT monitoring app
https://github.com/krshrimali/youtube-monitoring-app-rust-iced
Last synced: 5 months ago
JSON representation
Using iced-rs library for YT monitoring app
- Host: GitHub
- URL: https://github.com/krshrimali/youtube-monitoring-app-rust-iced
- Owner: krshrimali
- Created: 2022-12-09T10:36:31.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-03T16:46:24.000Z (over 2 years ago)
- Last Synced: 2025-05-13T04:56:06.097Z (5 months ago)
- Language: Rust
- Size: 2.18 MB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## YouTube Monitoring App (using Rust)

## Description
This app is built on the top of [iced library](https://github.com/iced-rs/iced). If you're curious what this is about, check out the [YT monitoring App stream series](https://www.youtube.com/playlist?list=PLfjzHJeA53gS-RyxHcpNdf85Q4tR_ZJ6_) on my [YouTube channel](https://youtube.com/c/kushashwaraviShrimali).
I have written a blog: [I started building an app using Rust and here is how it went…](https://krshrimali.github.io/posts/2022/12/i-started-building-an-app-using-rust-and-here-is-how-it-went.../) on my experience developing this app so far.
**What will this app do, when ready?**
1. Allow users to choose their favorite 12 creators.
2. Monitor the following for chosen creators:
* Their live status.
* Watching of the stream.
* Live count of subscribers.
3. The app view will be dynamic based on their live status (including appearance)**Why is this needed?**
* Not always you are notified by YouTube (on time) when a streamer goes live.
* Developing an app with dynamic views, notifications, JSON parsing, is a good learning experience for me.
* Iced is a rapidly growing GUI library written in Rust, and I wanted to explore it.## Instructions
Assuming you have `cargo` installed and rust setup, following Instructions should work:
```bash
cargo build
cargo run --release
```For development, please ensure that all the tests pass when and if you create a PR using: `cargo test`. If you are on Linux, you might have to install some extra dependencies before doing `cargo run --release`:
```bash
sudo apt update
sudo apt install build-essential
sudo apt install cmake, pkg-config
sudo apt install fontconfig libfontconfig-dev
```## Demo
### Dark Theme (Sorted by subscriber count)
### Dark Theme (Sorted by "is_live_status")

### Light Theme (Sorted by subscriber count)

### Light Theme (Sorted by "is_live_status")

**NOTE:** Another version of this project is present [here](https://github.com/krshrimali/youtuber-monitoring-app).