lodestone

Library for scraping data off of FFXIV's lodestone

Examples

Get a profile from a user id

```rust fn getprofile(userid: u32) -> Result { use model::profile::Profile;

Profile::get(user_id) } ```

Search for a profile

```rust fn search_user(name: &str, server: Option) -> Result, Error> { let search = SearchBuilder::new().character(name);

if let Some(s) = server { search = search.server(s); }

search.send() }