EANSearch

Search for products by EAN barcode or product name / keywords

Features

How to use

```rust // search by EAN barcode, product name in English let eansearch = EANSearch::new(&token); let product = eansearch.barcode_lookup(5099750442227, Some(1)); let product = product.unwrap(); // unwrap result let product = product.unwrap(); println!("EAN {} is {}", product.ean, product.name);

// now find all products with the keyword 'bananaboat' let productlist = eansearch.productsearch("bananaboat", Some(1), None); for p in &productlist.unwrap() { println!("EAN {:0>13} is {} ({})", p.ean, p.name, p.categoryname); }

// only find 'bananaboat' products from the 'Music' category let productlist = eansearch.categorysearch(45, Some("bananaboat"), Some(1), None);

// download a EANs that start with 509975044xxx let productlist = eansearch.barcodeprefix_search(509975044, Some(1), None);

// find the country where a barcode was issued let countrylookup = eansearch.issuingcountry(5099750442227);

// check if this is really a valid barcode let checksumok = eansearch.verifychecksum(5099750442227);

// get A PNG image of the barcode to display eg. on a website let img = eansearch.barcode_image(5099750442227, None, None);

```

To use the library, you need an account and obtain an API token.

See https://www.ean-search.org/ean-database-api.html