Skip to main content

A library for generating preview (thumbnails, text or json overview) for file-based content

Project description

Presentation

https://api.travis-ci.org/algoo/preview-generator.svg?branch=master

preview-generator is a library for generating preview - thumbnails, pdf, text and json overview for all your file-based content. This module gives you access to jpeg, pdf, text, htlm and json preview of virtually any kind of file. It also includes a cache mechanism so you do not have to care about preview storage.

By creating this module, the goal was to delegate the responsibility of building preview of files managed by tracim.

Supported file formats

Here is an overview of supported file formats:

Your files

Generated preview formats

JPEG

PDF

TEXT

HTML

JSON

Image files

bmp

eps

gif

jpg, jpeg

png

svg

Archive files

zip

Office files

docx

ods

odp

odt

pdf

ppt

pptx

xls

xlsx

Other

txt

Installation

pip install preview-generator

Note about requirements: some packages are needed for installing python. If the pip install preview-generator command fails, try to install zlib and libjpeg dev packages. On debian-based OSes this can be done through the following command:

apt-get install zlib1g-dev libjpeg-dev

This package uses the following python dependencies (this list is not exhaustive): wand, python-magick, pillow, PyPDF2.

Note: if you want to preview office files, ensure that LibreOffice is installed on your computer.

Usage

Here are some examples of code

Generate a thumbnail of an image file

from preview_generator.manager import PreviewManager
manager = PreviewManager('/tmp/cache/', create_folder= True)
thumbnail_file_path = manager.get_jpeg_preview('/home/user/Pictures/myfile.gif', height=100, width=200)
print('Preview created at path : ', thumbnail_file_path)

Generate a pdf preview of a libreoffice text document

from preview_generator.manager import PreviewManager
manager = PreviewManager('/tmp/cache/', create_folder= True)
pdf_file_path = manager.get_pdf_preview('/home/user/Documents/report.odt', page=2)
print('Preview created at path : ', thumbnail_file_path)

The preview manager

preview_manager = PreviewManager(cache_path)

args :

cache_path : a String of the path to the directory where the cache file will be stored create_folder : a boolean, when True will TRY to create the cache folder

returns :

a PreviewManager Object

The builders

Here is the way it is meant to be used assuming that cache_path is an existing directory

For Office types into PDF :

preview_manager = PreviewManager(cache_path)
preview = preview_manager.get_pdf_preview(file_path,page=page_id)

-> Will create a preview from an office file into a pdf file

args :

file_path : the String of the path where is the file you want to get the preview

page : the int of the page you want to get. If not mentioned all the pages will be returned. First page is page 0

use_original_filename : a boolean that mention if the original file name should appear in the preview name. True by default

returns :

a FileIO stream of bytes of the pdf preview

For images(GIF, BMP, PNG, JPEG, PDF) into jpeg :

preview_manager = PreviewManager(cache_path)
preview = preview_manager.get_jpeg_preview(file_path,height=1024,width=526)

-> Will create a preview from an image file into a jpeg file of size 1024 * 526

args :

file_path : the String of the path where is the file you want to get the preview

height : height of the preview in pixels

width : width of the preview in pixels. If not mentioned, width will be the same as height

use_original_filename : a boolean that mention if the original file name should appear in the preview name. True by default

returns :

a FileIO stream of bytes of the jpeg preview

Other conversions :

The principle is the same as above

Zip to text or html : will build a list of files into texte/html inside the json

Office to jpeg : will build the pdf out of the office file and then build the jpeg.

Text to text : mainly just a copy stored in the cache

Cache mechanism

Naming :

The name of the preview generated in the cache directory will be :

{file_name}-[{size}-]{file_md5sum}[({page})]{extension}

file_name = the name of the file you asked for a preview without the extension.

size = the size you asked for the preview. In case of a Jpeg preview.

file_md5sum = the md5sum of the entire path of the file. To avoid conflicts like files that have the same name but are in different directory.

page = the page asked in case of pdf or office document preview.

extensions = the extension of the preview (.jpeg for a jpeg, .txt for a text, etc)

Example :

These scripts :

GIF to JPEG :

import os
from preview-generator.manager import PreviewManager
current_dir = os.path.dirname(os.path.abspath(__file__)) +'/'

manager = PreviewManager(path=current_dir + 'cache')
path_to_file = manager.get_jpeg_preview(
    file_path=current_dir + 'the_gif.gif',
    height=512,
    width=512,
)

print('Preview created at path : ', path_to_file)

will print

Preview created at path : the_gif-512x512-60dc9ef46936cc4fff2fe60bb07d4260.jpeg

ODT to JPEG :

import os
from preview-generator.manager import PreviewManager
current_dir = os.path.dirname(os.path.abspath(__file__)) +'/'

manager = PreviewManager(path=current_dir + 'cache')
path_to_file = manager.get_jpeg_preview(
    file_path=current_dir + 'the_odt.odt',
    page=1,
    height=1024,
    width=1024,
)

print('Preview created at path : ', path_to_file)

will print

Preview created at path : the_odt-1024x1024-c8b37debbc45fa96466e5e1382f6bd2e-page1.jpeg

ZIP to Text :

import os
from preview-generator.manager import PreviewManager
current_dir = os.path.dirname(os.path.abspath(__file__)) +'/'

manager = PreviewManager(path=current_dir + 'cache')
path_to_file = manager.get_text_preview(
    file_path=current_dir + 'the_zip.zip',
)

print('Preview created at path : ', path_to_file)

will print

Preview created at path : the_zip-a733739af8006558720be26c4dc5569a.txt

Adding new feature :

Before all, I’d be glad if you could share your new feature with everybody. So if you want to, you can fork it on github ( https://github.com/algoo/preview-generator) (see Developer’s Kit) and submit new features.

If you want to add a new preview builder to handle documents of type foo into jpeg (for example) here is how to proceed :

  • Warning If you need to look at other builders to find out how to proceed, avoid looking at any of the Office to something. It is a particular case and could misslead you.

  • Create a new class FooPreviewBuilder in a file foo_preview.py in preview-generator/preview

  • Make him inherit from the logical PreviewBuilder class

    • if it handles several pages it will be class FooPreviewBuilder(PreviewBuilder)

    • for single page it will be class FooPreviewBuilder(OnePagePreviewBuilder)

  • define your own build_jpeg_preview(…) (in the case we want to make foo into jpeg) based on the same principle as other build_{type}_preview(…)

  • Inside this build_jpeg_preview(…) you will call a method file_converter.foo_to_jpeg(…)

  • Define your foo_to_jpeg(…) method in preview-generator.file_converter.py

    • inputs must be a stream of bytes and optional informations like a number of pages, a size, …

    • output must also be a stream of bytes

  • Maybe you’ll need to redefine some methods like get_page_number() or exists_preview() in your FooPreviewBuilder class

Developer’s Kit

Installation (dev) :

From scratch on a terminal :
  • create your project directory (we will name it “the_project” but you can name it the way you want) : mkdir the_project

  • cd the_project

  • git clone https://github.com/algoo/preview-generator

  • building your environment :
    • install python virtualenv builder : sudo apt install python3-venv

    • build your virtual env (I can say that it work with python 3.4 but did not try with other versions)(env will be called “myenv”, you can name it the way you want): python3.4 -m venv myenv

    • if it’s not already, activate it : source myenv/bin/activate. (deactivate to deactivate)

  • install dependencies :
    • apt-get install zlib1g-dev

    • apt-get install libjpeg-dev

    • pip install wand

    • pip install python-magick

    • pip install pillow

    • pip install PyPDF2

    • if you use python 3.5 or less pip install typing

Running Pytest :

Pytest is a motor for unit testing

  • pip install pytest

  • go into the “tests” directory : cd path/to/you/project/directory/tests

  • run py.test

License

MIT licensed. https://opensource.org/licenses/MIT

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

preview_generator-0.2.3.tar.gz (23.7 kB view hashes)

Uploaded Source

Supported by

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