Metadata-Version: 1.1
Name: bisheng
Version: 0.10.0
Summary: A set of utility functions for processing Chinese text.
Home-page: https://github.com/eliangcs/bisheng
Author: Chang-Hung Liang
Author-email: eliang.cs@gmail.com
License: BSD
Description: BiSheng
        =======
        
        .. image:: https://badge.fury.io/py/bisheng.png
            :target: http://badge.fury.io/py/bisheng
        
        .. image:: https://travis-ci.org/eliangcs/bisheng.png?branch=master
            :target: https://travis-ci.org/eliangcs/bisheng
        
        .. image:: https://coveralls.io/repos/eliangcs/bisheng/badge.png?branch=master
            :target: https://coveralls.io/r/eliangcs/bisheng
        
        A set of utility functions for processing Chinese text. Current features
        include:
        
        * Add spaces between Chinese/Japanese/Korean characters and halfwidth
          characters
        
        * Convert traditional Chinese to simplified Chinese and the other way around
        
        
        Installation
        ------------
        ::
        
            $ pip install bisheng
        
        
        Usage
        -----
        
        Add spaces between Chinese characters and halfwidth characters::
        
            >>> import bisheng
            >>> print bisheng.add_spaces(u'BiSheng由Python寫成，名字源自1000多年前的活字印刷術發明人-畢昇。')
            BiSheng 由 Python 寫成，名字源自 1000 多年前的活字印刷術發明人 - 畢昇。
        
        Specify the characters you want to exclude::
        
            >>> print bisheng.add_spaces(u'中[括]弧')
            中 [括] 孤
        
            >>> print bisheng.add_spaces(u'中[括]弧', exclude='[]')
            中[括]弧
        
        Traditional/simplified Chinese convertion::
        
            >>> print bisheng.to_simp(u'畢昇')
            毕升
        
            >>> print bisheng.to_trad(u'毕升')
            畢升
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Text Processing
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Software Development :: Libraries :: Python Modules
