Skip to main content
https://travis-ci.org/c-w/Gutenberg.svg?branch=master https://coveralls.io/repos/github/c-w/Gutenberg/badge.svg?branch=master https://img.shields.io/pypi/v/gutenberg.svg

Overview

This package contains a variety of scripts to make working with the Project Gutenberg body of public domain texts easier.

The functionality provided by this package includes:

  • Downloading texts from Project Gutenberg.

  • Cleaning the texts: removing all the crud, leaving just the text behind.

  • Making meta-data about the texts easily accessible.

The package has been tested with Python 2.6, 2.7, 3.3, 3.4 and 3.5.

Installation

This project is on PyPI, so I’d recommend that you just install everything from there using your favourite Python package manager.

pip install gutenberg

If you want to install from source or modify the package, you’ll need to clone this repository:

git clone https://github.com/c-w/Gutenberg.git

Now, you should probably install the dependencies for the package and verify your checkout by running the tests.

cd Gutenberg

virtualenv --no-site-packages virtualenv
source virtualenv/bin/activate
pip install -r requirements.pip

pip install nose
nosetests

Python 3

This package depends on BSD-DB. The bsddb module was removed from the Python standard library since version 2.7. This means that if you wish to use gutenberg on Python 3, you will need to manually install BSD-DB.

Linux

On Linux, you can usually install BSD-DB using your distribution’s package manager. For example, on Ubuntu, you can use apt-get:

sudo apt-get install libdb5.1-dev
export BERKELEYDB_DIR=/usr
pip install -r requirements-py3.pip

MacOS

On Mac, you can install BSD-DB using homebrew:

brew install berkeley-db4
pip install -r requirements-py3.pip

Windows

On Windows, it’s easiest to download a pre-compiled version of BSD-DB from pythonlibs.

For example, if you have Python 3.5 on a 64-bit version of Windows, you should download bsddb3‑6.2.1‑cp35‑cp35m‑win_amd64.whl.

After you download the wheel, install it and you’re good to go:

pip install bsddb3‑6.2.1‑cp35‑cp35m‑win_amd64.whl

License conflicts

Since its v6.x releases, BSD-DB switched to the AGPL3 license which is stricter than this project’s Apache v2 license. This means that unless you’re happy to comply to the terms of the AGPL3 license, you’ll have to install an ealier version of BSD-DB (anything between 4.8.30 and 5.x should be fine). If you are happy to use this project under AGPL3 (or if you have a commercial license for BSD-DB), set the following environment variable before attempting to install BSD-DB:

YES_I_HAVE_THE_RIGHT_TO_USE_THIS_BERKELEY_DB_VERSION=1

Usage

Downloading a text

from gutenberg.acquire import load_etext
from gutenberg.cleanup import strip_headers

text = strip_headers(load_etext(2701)).strip()
print(text)  # prints 'MOBY DICK; OR THE WHALE\n\nBy Herman Melville ...'
python -m gutenberg.acquire.text 2701 moby-raw.txt
python -m gutenberg.cleanup.strip_headers moby-raw.txt moby-clean.txt

Looking up meta-data

A bunch of meta-data about ebooks can be queried:

from gutenberg.query import get_etexts
from gutenberg.query import get_metadata

print(get_metadata('title', 2701))  # prints frozenset([u'Moby Dick; Or, The Whale'])
print(get_metadata('author', 2701)) # prints frozenset([u'Melville, Hermann'])

print(get_etexts('title', 'Moby Dick; Or, The Whale'))  # prints frozenset([2701, ...])
print(get_etexts('author', 'Melville, Hermann'))        # prints frozenset([2701, ...])

You can get a full list of the meta-data that can be queried by calling:

from gutenberg.query import list_supported_metadatas

print(list_supported_metadatas()) # prints (u'author', u'formaturi', u'language', ...)

Before you use one of the gutenberg.query functions you must populate the local metadata cache. This one-off process will take quite a while to complete (18 hours on my machine) but once it is done, any subsequent calls to get_etexts or get_metadata will be very fast. If you fail to populate the cache, the calls will raise an exception.

To populate the cache:

from gutenberg.acquire import get_metadata_cache
cache = get_metadata_cache()
cache.populate()

If you need more fine-grained control over the cache (e.g. where it’s stored or which backend is used), you can use the set_metadata_cache function to switch out the backend of the cache before you populate it. For example, to use the Sqlite cache backend instead of the default Sleepycat backend and store the cache at a custom location, you’d do the following:

from gutenberg.acquire import set_metadata_cache
from gutenberg.acquire.metadata import SqliteMetadataCache

cache = SqliteMetadataCache('/my/custom/location/cache.sqlite')
cache.populate()
set_metadata_cache(cache)

Limitations

This project deliberately does not include any natural language processing functionality. Consuming and processing the text is the responsibility of the client; this library merely focuses on offering a simple and easy to use interface to the works in the Project Gutenberg corpus. Any linguistic processing can easily be done client-side e.g. using the TextBlob library.

Download files

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

Source Distribution

Gutenberg-0.4.5.tar.gz (14.5 kB view details)

Uploaded Source

Built Distribution

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

Gutenberg-0.4.5-py3.6.egg (44.8 kB view details)

Uploaded Egg

File details

Details for the file Gutenberg-0.4.5.tar.gz.

File metadata

  • Download URL: Gutenberg-0.4.5.tar.gz
  • Upload date:
  • Size: 14.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for Gutenberg-0.4.5.tar.gz
Algorithm Hash digest
SHA256 08feb04f77d46bff52732d0551a678f2c16151ab94cfa3148c9da1a6680d9c85
MD5 0ec2391bdd14e2d7e22537361639c353
BLAKE2b-256 f84c97c1854f619c21b6a9d6b0ab0e3502e0aa82d827448cb60252333b52c76a

See more details on using hashes here.

File details

Details for the file Gutenberg-0.4.5-py3.6.egg.

File metadata

  • Download URL: Gutenberg-0.4.5-py3.6.egg
  • Upload date:
  • Size: 44.8 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for Gutenberg-0.4.5-py3.6.egg
Algorithm Hash digest
SHA256 8065df2fcf6bfdd5686b68cb31664be9f1639b29da0a5e3596da8358d7f39caf
MD5 22b3a6c53fd71bd817373a11871f1ece
BLAKE2b-256 a7980a5ad3e75fc099759ff2737db08d8e7ec9f0142e26fd4781c4b4331a423b

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