#character #information #web #mmo #string #scraps

bns

Rust library that web scraps character information from certain MMO

1 unstable release

Uses old Rust 2015

0.1.0 Aug 28, 2016

#156 in #character

Zlib license

7KB
153 lines

bns-rs

Rust library that web scraps character information from certain MMO.

Dependencies

curl = "^0.3.5"
scraper = "^0.4.0"

Example usage

let chara = players::Character::new(
    String::from("PUT_API_DOMAIN_NAME_HERE"),
    String::from("eu"),
    String::from("SOME_CHARACTER_NAME")
).unwrap();
println!("{:?}", chara);

You have to guess what to put instead of PUT_API_DOMAIN_NAME_HERE, because I don't want to be sued for misusing trademark.

Additional info

Character::new returns Result<Character, String>, where two of possible errors are:

  • INVALID_REGION
  • CHARACTER_NOT_FOUND

This may change in future versions to some custom Error structs.

Dependencies

~20MB
~386K SLoC