Metadata-Version: 1.0
Name: zhpy
Version: 0.2
Summary: Write python language in chinese
Home-page: http://code.google.com/p/zhpy/
Author: Fred Lin
Author-email: gasolin+zhpy@gmail.com
License: MIT <http://www.opensource.org/licenses/mit-license.php>
Download-URL: http://hg.python.org.tw/mopowg
Description: zhpy is an toy convertor to translate chinese (Traditional and Simplified) python code
        to nature python code (english).
        
        zhpy use pyparsing to detect chinese keywords, class name, methods, arguments, variables and
        translate them back to python.
        
        zhpy refactored the origin code from HYRY.
        
        Install mopowg
        --------------
        
        You could use easy_install command to install zhpy::
        
        
        $ easy_install zhpy
        
        Usage
        -----
        
        ::
        
        $ zhpy hello.py
        hello, world!
        
        Export normal python code (english)
        
        ::
        
        $ zhpy hello.py nhello.py
        
        ::
        
        $ python nhello.py
        hello, world!
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
