lodestone 0.4.0

A website wrapper for FFXIV's lodestone.
Documentation

ci-badge docs-badge crates.io version

lodestone

Library for scraping data off of FFXIV's lodestone

Examples

Get a profile from a user id

use model::profile::Profile;
  
let profile = Profile::get(user_id).unwrap();

Search for a profile in a datacenter

fn search_user(name: &str, dc: Option<Datacenter>) -> Result<Vec<Profile>, Error> {
  let search = SearchBuilder::new().character(name);
        
  if let Some(d) = dc {
    search = search.datacenter(d);
  }
    
  search.send()
}

A more targeted search

let profiles = SearchBuilder::new()
    .character("Strawberry Custard")
    .datacenter(Datacenter::Primal)
    .lang(Language::English)
    .grand_company(GrandCompany::Maelstrom)
    .send()
    .unwrap();

let strawberry = profiles.first().unwrap();