Metadata-Version: 1.0
Name: libleipzig
Version: 1.1
Summary: wortschatz.uni-leipzig.de binding
Home-page: http://github.com/lehmannro/libleipzig-python/
Author: Robert Lehmann
Author-email: libleipzig@robertlehmann.de
License: GPLv3
Description: =================================================
        libleipzig -- wortschatz.uni-leipzig.de binding
        =================================================
        
        **libleipzig-python** provides a wrapper to the web services provided by the
        `Deutscher Wortschatz`_ project of the University of Leipzig. **Deutscher
        Wortschatz** is a German database of text corpora and can be utilized to
        analyze and contextualize words in the thesaurus. *libleipzig* currently
        supports all public service calls. These do not require authentication and are
        provided `free of charge`_ for private or scientific purposes.
        
        .. _Deutscher Wortschatz: http://wortschatz.uni-leipzig.de/
        .. _free of charge: http://wortschatz.uni-leipzig.de/use.html
        
        .. contents::
        
        .. attention:: libleipzig prefetches__ *all* service interfaces on initial
        load. This process requires an Internet connection.
        
        Subsequent ``import``\ s use indefinitely cached definitions (WSDL files).
        
        __ https://fedorahosted.org/suds/wiki/Documentation#PERFORMANCE
        
        
        Example
        -------
        
        >>> from libleipzig import * # might take some time initially
        >>> r = Baseform(u"Schlangen")
        >>> r # doctest: +NORMALIZE_WHITESPACE
        [(Grundform: u'Schlange', Wortart: u'N'),
        (Grundform: u'Schlangen', Wortart: u'S')]
        >>> r[0].Grundform
        u'Schlange'
        >>> help(Baseform) # doctest: +NORMALIZE_WHITESPACE
        Help on function Baseform in module libleipzig.protocol:
        Baseform(*vectors)
        Baseform(Wort) -> Grundform, Wortart
        Return the lemmatized (base) form.
        >>>
        
        .. **
        
        Dependencies
        ------------
        
        - Python 2.5 or later 2.x releases
        - suds_ 0.3.9 or later
        
        .. _suds: https://fedorahosted.org/suds/#Resources
        
        Changelog
        ---------
        
        1.1
        * Bumped suds version to 0.3.9.
        * Fixed numerous unicode issues and pointed out potential pitfalls.
        * Fixed caching to be persistent but lazy.
        * Upgraded virtual environment to incremental build steps.
        * Pushed tests into installed package.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Natural Language :: German
Classifier: Topic :: Text Processing :: Linguistic
