Metadata-Version: 1.0
Name: zhpy
Version: 0.3
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>
Description: zhpy is python on Chinese, which good for Taiwan and China beginners to
        learn python in their native language.
        
        zhpy is a lightweight python module and a source convertor, which provides a command line
        tool to translate python code. The python code written by traditional and simplified
        chinese would be translated to nature python code (english).
        
        zhpy use pyparsing module to detect chinese keywords, class name, methods, arguments, v
        ariables and translate them back to python.
        
        It's possible for developers to port zhpy to python on korean or python on japenese.
        
        Check examples_ here.
        
        .. _examples: "http://code.google.com/p/zhpy/wiki/ZhpyExample"
        
        Install zhpy
        --------------
        
        You could use easy_install command to install zhpy::
        
        $ easy_install zhpy
        
        or check instructions_ for detail.
        
        .. _instructions: "http://code.google.com/p/zhpy/wiki/DownloadInstall"
        
        Usage
        -----
        
        You could use 'zhpy' command instead of "python" in command line to
        execute source code mixed in Chinese and English.::
        
        $ zhpy hello.py
        hello, world!
        
        You could assign a file name to export the zhpy source to the normal python source (english)::
        
        $ zhpy hello.py nhello.py
        
        Then run the exported file as normal python source::
        
        $ python nhello.py
        hello, world!
        
        Programming
        -----------
        
        You could mix original english keywords and Chinese keywords in your zhpy source.
        
        Reserved keywords are listed here_
        
        .. _here: http://code.google.com/p/zhpy/wiki/KeyWords
        
        
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
