Skip to main content

Extract, clean, transform, hyphenate and metadata for ISBNs (International Standard Book Number).

Project description

Graph Documentation Status Coverage Status Built Status Windows Built Status Bugs PYPI Downloads

Warning

The service xISBN was decommissioned (see issue 51)!

Info

isbnlib is a (pure) python library that provides several useful methods and functions to validate, clean, transform, hyphenate and get metadata for ISBN strings. Its origin was as the core of isbntools.

This short version, is suitable to be include as a dependency in other projects. Has a straightforward setup and a very easy programmatic api.

Runs on py27, py35, py36 and py37.

Typical usage (as library):

import isbnlib
...

ISBN

The official form of an ISBN is something like ISBN 979-10-90636-07-1. However for most applications only the numbers are important, you can always ‘mask’ them if you need (see below). This library works mainly with ‘striped’ ISBNs (only digits and X) like ‘0826497527’. You can strip an ISBN-like string by using canonical(isbnlike). You can ‘mask’ the ISBN by using mask(isbn). So in the examples below, when you see ‘isbn’ in the argument, it is a ‘striped’ ISBN, when the argument is an ‘isbnlike’ it is a string like ISBN 979-10-90636-07-1 or even something dirty like asdf 979-10-90636-07-1 bla bla.

Two important concepts: valid ISBN should be an ISBN that was built according with the rules, this is distinct from issued ISBN that is an ISBN that was already issued to a publisher (this is the usage of the libraries and most of the web services). However isbn.org, probably by legal reasons, merges the two! So, according to isbn-international.org, ‘9786610326266’ is not valid (because the block 978-66… has not been issued yet, however if you use is_isbn13('9786610326266') you will get True (because ‘9786610326266’ follows the rules of an ISBN). But the situation is even murkier, try meta('9786610326266') and you will see that this ISBN was already used!

If possible, work with ISBNs in the isbn-13 format (since 2007, only are issued ISBNs in the isbn-13 format). You can always convert isbn-10 to isbn-13, but not the reverse. Read more about ISBN at isbn-international.org or wikipedia.

Main Functions

is_isbn10(isbn10like)

Validates as ISBN-10.

is_isbn13(isbn13like)

Validates as ISBN-13.

to_isbn10(isbn13)

Transforms isbn-13 to isbn-10.

to_isbn13(isbn10)

Transforms isbn-10 to isbn-13.

canonical(isbnlike)

Keeps only digits and X. You will get strings like 9780321534965 and 954430603X.

clean(isbnlike)

Cleans ISBN (only legal characters).

notisbn(isbnlike, level='strict')

Check with the goal to invalidate isbn-like.

get_isbnlike(text, level='normal')

Extracts all substrings that seem like ISBNs (very useful for scraping).

get_canonical_isbn(isbnlike, output='bouth')

Extracts ISBNs and transform them to the canonical form.

EAN13(isbnlike)

Transforms an isbnlike string into an EAN13 number (validated canonical ISBN-13).

info(isbn)

Gets the language or country assigned to this ISBN.

mask(isbn, separator='-')

Mask (hyphenate) a canonical ISBN.

meta(isbn, service='default', cache='default')

Gives you the main metadata associated with the ISBN. As service parameter you can use: 'goob' uses the Google Books service (no key is needed) and is the default option, 'openl' uses the OpenLibrary.org api (no key is needed). You can enter API keys with config.add_apikey(service, apikey) (see example below). The output can be formatted as bibtex, csl (CSL-JSON), msword, endnote, refworks, opf or json (BibJSON) bibliographic formats with registry.bibformatters. cache only allows two values: ‘default’ or None. You can change the kind of cache by using registry.set_cache (see below). Now, you can extend the functionality of this function by adding pluggins, more metadata providers or new bibliographic formatters (check for available pluggins).

editions(isbn, service='merge')

Returns the list of ISBNs of editions related with this ISBN. By default uses ‘merge’ (merges ‘openl’ and ‘thingl’), but other providers are available: ‘openl’ users Open Library, ‘thingl’ (uses the service ThingISBN from LibraryThing) and ‘any’ (first tries ‘openl’, if no data, then ‘thingl’).

isbn_from_words(words)

Returns the most probable ISBN from a list of words (for your geographic area).

goom(words)

Returns a list of references from Google Books multiple references.

doi(isbn)

Returns a DOI’s ISBN-A from a ISBN-13.

doi2tex(DOI)

Returns metadata formated as BibTeX for a given DOI.

ren(filename)

Renames a file using metadata from an ISBN in his filename.

desc(isbn)

Returns a small description of the book. Almost all data available are for US books!

cover(isbn)

Returns a dictionary with the url for cover. Almost all data available are for US books!

See files test_core and test_ext for a lot of examples.

Install

From the command line, enter (in some cases you have to preced the command with sudo):

$ pip install isbnlib

If you use linux systems, you can install using your distribution package manager (all major distributions have packages python-isbnlib and python3-isbnlib), however (usually) are very old and don’t work well anymore!

For Devs

API’s Main Namespaces

In the namespace isbnlib you have access to the core methods: is_isbn10, is_isbn13, to_isbn10, to_isbn13, canonical, clean, notisbn, get_isbnlike, get_canonical_isbn, mask, meta, info, editions, goom, ren, doi, EAN13, isbn_from_words, desc and cover.

The exceptions raised by these methods can all be catched using ISBNLibException.

You can extend the lib by using the classes and functions exposed in namespace isbnlib.dev, namely:

  • WEBService a class that handles the access to web services (just by passing an url) and supports gzip. You can subclass it to extend the functionality… but probably you don’t need to use it! It is used in the next class.

  • WEBQuery a class that uses WEBService to retrieve and parse data from a web service. You can build a new provider of metadata by subclassing this class. His main methods allow passing custom functions (handlers) that specialize them to specific needs (data_checker and parser). It implements a throttling mechanism with a default rate of one call per second per service.

  • Metadata a class that structures, cleans and ‘validates’ records of metadata. His method merge allows to implement a simple merging procedure for records from different sources. The main features of this class, can be implemented by a call to the stdmeta function instead!

  • vias exposes several functions to put calls to services, just by passing the name and a pointer to the service’s query function. vias.parallel allows to put threaded calls. You can use vias.serial to make serial calls and vias.multi to use several cores. The default is vias.serial.

The exceptions raised by these methods can all be catched using ISBNLibDevException. You should’t raise this exception in your code, only raise the specific exceptions exposed in isbnlib.dev whose name ends in Error.

In isbnlib.dev.helpers you can find several methods, that we found very useful, some of then are only used in isbntools (an app and framework that uses isbnlib).

With isbnlib.config you can read and set configuration options: change timeouts with seturlopentimeout and setthreadstimeout, access api keys with apikeys and add new one with add_apikey, access and set generic and user-defined options with options.get('OPTION1') and set_option.

Finally, from isbnlib.registry you can change the metadata service to be used by default (setdefaultservice), add a new service (add_service), access bibliographic formatters for metadata (bibformatters), set the default formatter (setdefaultbibformatter), add new formatters (add_bibformatter) and set a new cache (set_cache) (e.g. to switch off the chache set_cache(None)). The cache only works for calls through isbnlib.meta. These changes only work for the ‘current session’, so should be done always before calling other methods.

Let us concretize these points with a small example.

Suppose you want a small script to get metadata using Open Library formated in BibTeX.

A minimal script would be:

from isbnlib import meta
from isbnlib.registry import bibformatters

SERVICE = 'openl'

# now you can use the service
isbn = '9780446310789'
bibtex = bibformatters['bibtex']
print(bibtex(meta(isbn, SERVICE)))

Plugins

You can extend the functionality of the library by adding plugins (for now, just new metadata providers or new bibliographic formatters).

For available plugins check here.

After install, your plugin will blend transparently in isbnlib (you will have more options in meta and bibformatters).

If you want to develop a plugin, start with this template and follow the instructions there. For inspiration take a look at goob.

Remember that plugins must support python 2.7 and python 3.5+ (see python-future.org).

Caveats

  1. These classes are optimized for one-call to services and not for batch calls.

  2. If you inspect the library, you will see that there are a lot of private modules (their name starts with ‘_’). These modules should not be accessed directly since, with high probability, your program will break with a further version of the library!

Projects using isbnlib

isbntools https://github.com/xlcnd/isbntools

Open Library https://github.com/internetarchive/openlibrary

Spreads https://github.com/DIYBookScanner/spreads

Papis https://github.com/papis/papis

libBMC https://github.com/Phyks/libbmc/

Alessandria https://gitlab.com/openlabmatera/alessandria

Comic Collector https://github.com/wengole/comiccollector

Abelujo http://www.abelujo.cc/

BibLib https://pypi.python.org/pypi/biblib

Help

If you need help, please take a look at github or post a question on stackoverflow (with tag isbnlib)


Read isbnlib code in a very sctructured way at sourcegraph or ‘the docs’ at readthedocs.


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

isbnlib-3.9.6.tar.gz (66.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

isbnlib-3.9.6-py2.py3-none-any.whl (72.4 kB view details)

Uploaded Python 2Python 3

File details

Details for the file isbnlib-3.9.6.tar.gz.

File metadata

  • Download URL: isbnlib-3.9.6.tar.gz
  • Upload date:
  • Size: 66.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for isbnlib-3.9.6.tar.gz
Algorithm Hash digest
SHA256 d4ae098cb31d6c678a6eac074a24f8ba4adfe7df65db13b0b2ab7355f28d6e3b
MD5 91771e51eefc5a2d11cc13774afec0e1
BLAKE2b-256 bc06870bd49451d54363063c815cfa7365c93557384b49fe694e228b7e6a2e06

See more details on using hashes here.

File details

Details for the file isbnlib-3.9.6-py2.py3-none-any.whl.

File metadata

  • Download URL: isbnlib-3.9.6-py2.py3-none-any.whl
  • Upload date:
  • Size: 72.4 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for isbnlib-3.9.6-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 5c67d7c6707380f1ceb291f52ce2737e43e24d76b2ff08ba37b0455801922dbf
MD5 93968cd16cc997f458a8f9800c1a7031
BLAKE2b-256 43f0a78c954caa825eeb31a666bf4875ac66baea5f286ad8f6c06c9b4d8768ce

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page