Metadata-Version: 1.1
Name: ibooks
Version: 0.1
Summary: iBooks Author cover and metadata extraction
Home-page: http://github.com/titusz/ibooks
Author: titusz
Author-email: tp@py7.de
License: BSD
Description: ============================================================
        ibooks - Extract cover and metadata from iBooks Author files
        ============================================================
        
        *"ibooks" is a small python module that can be used to extract cover images
        and basic metadata from iBooks Author files.*
        
        - **Author:** *Titusz <tp at py7 de>*
        - **PyPi:** http://pypi.python.org/pypi/ibooks
        - **Source Code**: http://github.com/titusz/ibooks
        - **License**: BSD
        
        Installation
        ------------
        
        Use easy_install or pip::
        
            pip install ibooks
        
        
        Commandline Usage
        -----------------
        With the commandline script you can print metadata to the console and extract
        the cover from .ibooks files::
        
            ibooks my-ibooks-author-file.ibooks
        
        
        Library Usage
        -------------
        Here is how you can use 'ibooks' as a lib in your code::
        
            >>>from ibooks import iBooks
            >>>ibook = iBooks('my-ibooks-author.ibooks')
        
            # Get some metadata
            >>> ibook.title
            "Title of iBooks file"
            >>>ibook.author
            "Authors Name"
        
            # Extract cover
            >>>ibook.cover
            /temp-path-to/OPS/assets/images/cover-image.jpg
            # Be sure to process the image file before the "ibook" object is released
        
        
        
        0.1
        ---
        
        *Release date: 2013-06-19*
        
        * Initial release
        
Keywords: ibooks author metadata cover extraction epub epub3
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Desktop Environment :: File Managers
Classifier: Topic :: System :: Filesystems
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
