Metadata-Version: 1.0
Name: pyahooapis
Version: 0.2.3
Summary: Yahoo! Japan Text APIs Python wrapper
Home-page: https://github.com/ukyo/pyahooapis
Author: ukyo
Author-email: ukyo.web@gmail.com
License: Apache License 2.0
Description: Setup
        -----
        
        ::
        
        $ easy_install pyahooapis
        
        Example
        -------
        
        ::
        
        from pyahooapis import jlp
        
        appid = 'your-application-id'
        api = jlp.JLPAPIs(appid)
        sentence = 'sentence'
        
        chunks = api.da.get_chunks(sentence)
        
        for chunk in chunks:
        print '%s -> %s' % (chunk, chunks[chunk.dependency] if chunk.dependency != -1 else None)
        
        Documentation
        -------------
        
        Go to `Pyahooapis's documentation`_
        
        .. _Pyahooapis's documentation: http://dl.dropbox.com/u/142237/pyahooapis/build/html/index.html
        
Keywords: yahoo text jlp
Platform: UNKNOWN
