Library for scraping data off of FFXIV's lodestone
```rust use model::profile::Profile;
let profile = Profile::get(user_id).unwrap(); ```
```rust
fn search_user(name: &str, dc: Option
if let Some(d) = dc { search = search.datacenter(d); }
search.send() } ```
```rust let profiles = SearchBuilder::new() .character("Strawberry Custard") .datacenter(Datacenter::Primal) .lang(Language::English) .grand_company(GrandCompany::Maelstrom) .send() .unwrap();
let strawberry = profiles.first().unwrap(); ```