zhpy is the python on Chinese, which is good for Taiwan and China beginners to learn python in our 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 could be translated to nature python code (english).
zhpy support full python syntax. Code written in zhpy could be converted to natual python and be used in normal python programs. After 0.5, zhpy provide a method ‘zh_exec’ that allow to embed chinese script in python After 0.6, you could use zhpy as the chinese script in shell as well.
zhpy is fully tested which use ~50 test cases to test the small(<10k) source.
zhpy use pyparsing module to detect chinese keywords, class name, methods, arguments, variables 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.
Install zhpy
You could use easy_install command to install zhpy:
$ easy_install zhpy
or check instructions for detail.
Usage
You could use interpretor to test zhpy with zh_exec method:
$ python
>>> from zhpy import zh_exec
>>> zh_exec("print hello") # execute zhpy here, pypi not allow non ascii code.
hello
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 n_hello.py
Then run the exported file as normal python source:
$ python n_hello.py hello, world!
Or you could combine these two steps in one command (with ‘-p’ option):
$ python -p hello.py hello, world! $ ls hello.py n_hello.py
check the BasicUsage for detail.
Programming
You could mix original english keywords and Chinese keywords in your zhpy source.
Reserved keywords are listed here
You could view the ChangeLog to see what’s new in these version
Release files for zhpy 0.6
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| zhpy-0.6.zip | 28.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| zhpy-0.6-py2.5.egg | Legacy Egg format | - | - | Details |
Total release size: 57.7 kB
Release files / zhpy-0.6.zip
| Download URL | zhpy-0.6.zip |
|---|---|
| Size | 28.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
a2fcfaea4118cbec49e4ae42dd2283e5c3943de9ee95a10800bfbbf27b1aede3
|
|
BLAKE2b-256 checksum How to use checksums |
840f5e53f4e0d0b8d812feff965840a4095892545b7cb0e47c1a574b04fd9ca4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / zhpy-0.6-py2.5.egg
| Download URL | zhpy-0.6-py2.5.egg |
|---|---|
| Size | 29.5 kB |
| Tags | Egg |
|
SHA-256 checksum How to use checksums |
502102ca183d4b37661fe9afcdaf43076e29e52234f89c586a8b8da947737a8a
|
|
BLAKE2b-256 checksum How to use checksums |
9e7155d696aad5dcf617a6fd2ee650b945387871246b714056131ada3bc3398e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |