Metadata-Version: 1.1
Name: pangu
Version: 1.0.0
Summary: Insert a white space between full-width characters (Chinese, Japanese, etc.) and half-width alphanumerics. For good readability.
Home-page: https://github.com/vinta/pangu.py
Author: Vinta Chen
Author-email: vinta.chen@gmail.com
License: The MIT License (MIT)

Copyright (c) 2013 Vinta

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Description: pangu
        =====
        
        Spacing texts using Python! Insert a white space between full-width characters (Chinese, Japanese, etc.) and half-width alphanumerics. For good readability.
        
        JavaScript version: `pangu.js <https://github.com/vinta/paranoid-auto-spacing>`_
        
        Installation
        ============
        
        .. code-block:: bash
        
            $ pip install pangu
        
        Usage
        =====
        
        .. code-block:: pycon
        
            >>> import pangu
        
            >>> pangu.spacing(u'請問Jackie的鼻子有幾個？123個！')
            u'請問 Jackie 的鼻子有幾個？123 個！'
        
            >>> pangu.spacing(u'請問Jackie的鼻子有幾個？')
            u'請問 Jackie 的鼻子有幾個？'
        
            >>> pangu.spacing(u'新阿姆斯特朗炫風噴射阿姆斯特朗砲')
            u'新阿姆斯特朗炫風噴射阿姆斯特朗砲'
        
        
        History
        =======
        
        1.0.0 (2014-02-12)
        ++++++++++++++++++
        
        - Hello World
        
Keywords: white space text spacing readability
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Natural Language :: Chinese (Traditional)
Classifier: Natural Language :: Chinese (Simplified)
Classifier: Natural Language :: Japanese
Classifier: Natural Language :: Korean
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Education
Classifier: Topic :: Software Development :: Internationalization
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing
Classifier: Topic :: Text Processing :: General
Classifier: Topic :: Text Processing :: Linguistic
Classifier: Topic :: Utilities
