#barcode #validation #upc #gtin #ean

eansearch

在 Ean-Search.org 搜索 EAN 条码数据库。通过 EAN 编号或产品名称搜索产品,验证条码或生成条码图像

3 个稳定版本

1.0.2 2024年4月22日
1.0.1 2023年8月15日
1.0.0 2023年8月1日

#804数据库接口

Download history 54/week @ 2024-04-23 2/week @ 2024-05-21 8/week @ 2024-07-02 5/week @ 2024-07-09

每月 140 次下载

MIT/Apache

23KB
401

EANSearch

通过 EAN 条码或产品名称/关键词搜索产品

特性

  • 通过 EAN 码搜索
  • 通过 ISBN 码(ISBN-10 或 ISBN-13)查找
  • 通过名称或关键词搜索
  • 按产品类别限制搜索
  • 获取条码发行国家
  • 验证条码校验和
  • 获取 EAN 条码的 PNG 图像

使用方法

// 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);

// search by ISBN code
let eansearch = EANSearch::new(&token);
let book = eansearch.isbn_lookup(1119578884);
let book = book.unwrap(); // unwrap result
let book = book.unwrap();
println!("ISBN-13 {} is {}", book.ean, book.name);

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

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

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

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

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

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

要使用此库,您需要一个账户并获取 API 令牌。

请参阅 https://www.ean-search.org/ean-database-api.html

依赖

~4–16MB
~239K SLoC