Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 770 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 770 Bytes

sunxdcc.rs

license CI Crates.io Documentation

A small, unofficial Rust wrapper for the SunXDCC search engine's API.

use sunxdcc;

for result in sunxdcc::search("hitchhiker's guide to the galaxy") {
  println!("{:?}", result.unwrap());
}

See the documentation for all available result fields.