Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aeyoll/sukurappa
Watch for changes on a webpage and do anything with it!
https://github.com/aeyoll/sukurappa
notification parser rust
Last synced: 16 days ago
JSON representation
Watch for changes on a webpage and do anything with it!
- Host: GitHub
- URL: https://github.com/aeyoll/sukurappa
- Owner: aeyoll
- License: mit
- Created: 2022-08-14T09:36:45.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-23T08:57:34.000Z (about 2 years ago)
- Last Synced: 2024-10-14T06:21:27.174Z (30 days ago)
- Topics: notification, parser, rust
- Language: Rust
- Homepage:
- Size: 39.1 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sukurappa
[![GitHub Actions workflow status](https://github.com/aeyoll/sukurappa/workflows/ci/badge.svg)](https://github.com/aeyoll/sukurappa/actions)
[![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
[![Minimum rustc version](https://img.shields.io/badge/rustc-1.57.0+-lightgray.svg)](#rust-version-requirements)
[![Crates.io Version](https://img.shields.io/crates/v/sukurappa.svg)](https://crates.io/crates/sukurappa)
[![Conventional commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org)Watch for changes on a webpage and do anything with it!
Install
---With cargo:
```shell
cargo install sukurappa
```Or use the install-script and add `$HOME/.sukurappa/bin` to your `$PATH`.
````shell
curl -fsSL https://raw.githubusercontent.com/aeyoll/sukurappa/main/install.sh | bash
````Usage
---```shell
# Add an url + selector to watch
sukurappa add --url https://example.org --selector "h1"# Remove an url + selector to watch
sukurappa remove --url https://example.org --selector "h1"# List watched urls + selectors
sukurappa list# Watch for changes every 5 seconds and send an email with the new content every times it changes
# URL will be replaced with the actual url
# NEW_CONTENT will be replaced with... the new content
sukurappa watch --command='mail -s "[Sukurappa] Content changed in URL" [email protected] <<< NEW_CONTENT' --frequency=5
```Rust version requirements
---Rust >= 1.57.0+