Welcome, guest | Sign In | My Account | Store | Cart

Notice! PyPM is being replaced with the ActiveState Platform, which enhances PyPM’s build and deploy capabilities. Create your free Platform account to download ActivePython or customize Python with the packages you require and get automatic updates.

Download
ActivePython
INSTALL>
pypm install fulltext

How to install fulltext

  1. Download and install ActivePython
  2. Open Command Prompt
  3. Type pypm install fulltext
 Python 2.7Python 3.2Python 3.3
Windows (32-bit)
0.3-1
0.4-1Never BuiltWhy not?
0.3-1 Available View build log
0.2-1 Available View build log
0.1-1 Available View build log
Windows (64-bit)
0.3-1
0.4-1Never BuiltWhy not?
0.3-1 Available View build log
0.2-1 Available View build log
0.1-1 Available View build log
Mac OS X (10.5+)
0.3-1
0.4-1Never BuiltWhy not?
0.3-1 Available View build log
0.2-1 Available View build log
0.1-1 Available View build log
Linux (32-bit)
0.3-1
0.4-1Never BuiltWhy not?
0.3-1 Available View build log
0.2-1 Available View build log
0.1-1 Available View build log
Linux (64-bit)
0.4-1 Available View build log
0.3-1 Available View build log
0.2-1 Available View build log
0.1-1 Available View build log
 
Author
License
GPLv3
Imports
Lastest release
version 0.4-1 on Jan 9th, 2014
Travis CI Status

A SmartFile Open Source project. Read more about how SmartFile uses and contributes to Open Source software.

SmartFile

Introduction

Fulltext is meant to be used for full-text indexing of file contents for search applications.

Fulltext is a library that makes converting various file formats to plain text simple. Mostly it is a wrapper around shell tools. It will execute the shell program, scrape it's results and then post-process the results to pack as much text into as little space as possible.

Supported formats

The following formats are supported using the command line apps listed.

  • application/pdf: pdftotext
  • application/msword: antiword
  • application/vnd.openxmlformats-officedocument.wordprocessingml.document: docx2txt
  • application/vnd.ms-excel: convertxls2csv
  • application/rtf: unrtf
  • application/vnd.oasis.opendocument.text: odt2txt
  • application/vnd.oasis.opendocument.spreadsheet: odt2txt
  • application/zip: funzip
  • application/x-tar, gzip: tar & gunzip
  • application/x-tar, bzip2: tar & bunzip2
  • application/rar: unrar
  • text/html: html2text
  • text/xml: html2text
  • image/jpeg: exiftool
  • video/mpeg: exiftool
  • audio/mpeg: exiftool
  • application/octet-stream: strings

Installing tools

Fulltext uses the above command line programs to function. Therefore, it is not useful unless you have installed them. Many of them can be installed via your system's package manager. I use Fedora, thus the following command installed most of the required packages.

$ sudo yum install xls2csv odt2txt antiword poppler-utils unrtf \
perl-Image-ExifTool html2text binutils unrar gzip bzip2 unzip

The docx2txt utility is not avaialable in a package.

http://docx2txt.sourceforge.net/

The package names may differ on other systems, but for the most part will be similar.

Usage

To use the library, simply pass a filename to the .get() module function. A second optional argument default can provide a string to be returned in case of error. This way, if you are not concerned with exceptions, you can simply ignore them by providing a default. This is like how the dict.get() method works.

> import fulltext
> fulltext.get('does-not-exist.pdf', '< no content >')
'< no content >'
> fulltext.get('exists.pdf', '< no content >'')
'Lorem ipsum...'

There is also a quick way to check for the existence of all of the required tools.

> import fulltext
> fulltext.check()
Cannot execute command docx2txt, please install it.

Post-processing

Some formats require additional care, this is done in the post-processing step. For example, unrtf is the tool used to convert .rtf files to text. It prints a banner including the program version and some document metadata. This header is removed in post-processing.

A simple regular expression is used to convert adjacent whitespace characters to a single space.

This results in the highest word-per-byte ratio possible, allowing your full-text engine to quickly index the file contents.

Future

Sometimes multiple tools can be used. For example, catdoc provides xls2csv, while xls2csv provides convertxls2csv. We should use whichever is present.

I would like to do away with commands as tuples, and simply use strings. This is something easyprocess can do.

Subscribe to package updates

Last updated Jan 9th, 2014

Download Stats

Last month:3

What does the lock icon mean?

Builds marked with a lock icon are only available via PyPM to users with a current ActivePython Business Edition subscription.

Need custom builds or support?

ActivePython Enterprise Edition guarantees priority access to technical support, indemnification, expert consulting and quality-assured language builds.

Plan on re-distributing ActivePython?

Get re-distribution rights and eliminate legal risks with ActivePython OEM Edition.