vocalolyrics 0.2.4

Lyrics scraper, primarily for Vocaloid content. By default, atwiki is used as the source. We plan to make other sources selectable, but that is not currently possible.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
## Description
Lyrics scraper, primarily for Vocaloid content.
By default, atwiki is used as the source.
We plan to make other sources selectable, but that is not currently possible.

## Usage:

```rust
#[tokio::test]
async fn test_fetch_vocaloid_lyrics() {
	let title = "ageha";
	let lyrics = fetch_vocaloid_lyrics(title).await;
	dbg!(&lyrics);
	assert!(lyrics.is_ok());
}
```