Any free UPC/Barcode DBs [closed]

好久不见. 提交于 2019-12-21 05:29:05

问题


I'm looking for a free UPC or Barcode database that is available for download. I have seen upcdataBase.com and a few others, but those do not allow for a free download of the db. File type is not a huge issue as I can work with SQL, csv, text, XML, json or anything else.

Anyone know where I can find one? I do not want a web service, I need an actual file or method of downloading all of the upcs or barcodes someone has. A large inclusive db would be great, but even a partial db would be great. Thanks


回答1:


Gregg London sells UPC databases in the form of a "Product Load Service". There is more information on their site: http://www.glondon.com/upcdatabase.html




回答2:


Logical Solutions (http://www.LogicalSo.com) sells UPC barcode datamining software that scans the web for barcodes and product names, and build a database for you.




回答3:


You probably can make a quick mashup using: searchupc.com and upcdata.info and then retrieve product information from google product API.

Also, you can use AWSECommerceService API to retrieve something like this:

        ItemLookupRequest request = new ItemLookupRequest();
    request.getResponseGroup().add("Large");
    request.setIdType("UPC"); // TODO: need to change if it's EAC
    request.getItemId().add(upc);
    request.setSearchIndex("All");


来源:https://stackoverflow.com/questions/4818329/any-free-upc-barcode-dbs

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!