Metadata-Version: 1.0
Name: loremipsum
Version: 1.0.2
Summary: A Lorem Ipsum text generator
Home-page: http://projects.monkeython.com/loremipsum
Author: Luca De Vitis
Author-email: luca@monkeython.com
License: UNKNOWN
Description: You may import the **Generator** class to instantiate your generator
        with your own sample text and a dictionary:
        
        >>> from loremipsum import Generator
        >>> 
        >>> sample = file('data/sample.txt').read()
        >>> dictionary = file('data/dictionary.txt').read().split()
        >>> 
        >>> g = Generator(sample, dictionary)
        >>> g.generate_sentence() #doctest: +ELLIPSIS
        (...)
        >>> 
        
        or just import **get_sentences** or **get_paragraphs**
        which interface to a module wide **Generator** instance.
        
        >>> from loremipsum import get_paragraphs, get_sentences
        >>> 
        >>> get_sentences(5) #doctest: +ELLIPSIS
        ['...', '...', '...', '...', '...']
        >>> get_paragraphs(3) #doctest: +ELLIPSIS
        ['...', '...', '...']
        
Keywords: lorem,ipsum,text,generator
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
