Client library for Path of Exile API
Warning: The crate is in early stages and the interface (esp. the data model for items) is likely to evolve over time.
Add ezomyte to your project's [dependencies]
in Cargo.toml:
toml
[dependencies]
ezomyte = "0.0.2"
ezomyte::Client
provides access to various part of Path of Exile API:
public stashes (Client::stashes
), current & past leagues (Client::leagues
), and so on.
All endpoints return asynchronous Stream
s of structures
that has been deserialized from PoE API.
Here's a simple example of accessing public stash tabs
and looking for items with the unique rarity:
```rust extern crate ezomyte; extern crate futures; extern crate tokio_core;
use ezomyte::Rarity; use futures::Stream; use tokio_core::reactor::Core;
fn main() {
let mut core = Core::new().unwrap();
let client = ezomyte::Client::new("ezomyte example", &core.handle());
core.run(
client.stashes().all().foreach(|stash| {
let uniques = stash.items.iter().filter(|i| i.rarity == Rarity::Unique);
for item in uniques {
// Prints something like "Belly of the Beast -- Full Wyrmscale".
println!("{} -- {}",
item.name.asref().map(|n| n.asstr()).unwrapor("
```
See the examples directory for more examples.
Besides the current version of Rust compiler and Cargo, you would want:
cargo install just
)apt-get install jq
or similar)Running just
will execute all the tests and compile examples.