How to get ISBN number from a book title and author programmatically? [closed]

纵饮孤独 提交于 2019-12-20 09:39:35

问题


Is there a way to get ISBN number from the title of the book and author programmatically (preferably in Python)?

Does Amazon provide web services for this? If so, how can one use it?


回答1:


http://isbndb.com/data-intro.html

Someone has already written a python wrapper: http://code.google.com/p/isbndb-py/




回答2:


You can take a look at this Amazon Product Advertising API (btw it demands you to have as AWS account), it provides possibility to look for book, probably in your case it will fit.

Alternatively you can read Amazon API: How To Get A Book’s Image - there is described how to get image of book, but together with that information you get ASIN, and as written in Wikipedia for 10 digits it is the same as ISBN. That example was written in PHP, but I'm sure you can port it to Python. On the other hand, Accessing Amazon’s Product Advertising API with Python gives you code sample to access AWS using Python (but without such a good description of what is going on there, as those articles about AWS+PHP, I advice you to read them for better understanding)

Here is a list of services you can try as alternative to Amazon API.



来源:https://stackoverflow.com/questions/4893908/how-to-get-isbn-number-from-a-book-title-and-author-programmatically

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