collect test data for scraping korean torrent sites.
Example
```rust use reqwest; use reqwest::header::USERAGENT; use ktorrent::Document; use ktorrent::findchildattrby_tag;
fn main() { let url = "https://torrentsir31.com/bbs/board.php?botable=movie&wrid=15846"; let client = reqwest::blocking::Client::new(); let res = client.get(url) .header(USERAGENT, "Mozilla/5.0 (Macintosh; Intel Mac OS X 1120)") .send().unwrap(); let doc = Document::fromread(res).unwrap(); let result = findchildattrbytag( &doc, "list-group", "a", "href" ); assert_eq!("magnet:?xt=urn:btih:dac87e714c3adf0fe073236ef32acafb6931ae63", result[1]); } ```
| No | site | url | status | |:--:|:-------------:|:---------------------------:|:------:| | 1 | ttobogo | https://ttobogo.net | O | | 2 | torrentube | https://torrentube.to | O | | 3 | tshare | https://tshare.org | O | | 4 | torrentmobile | https://torrentmobile15.com | O | | 5 | torrentview | https://torrentview28.com | O | | 6 | torrentsir | https://torrentsir31.com | O | | 7 | torrentj | https://torrentj32.com | O |