/usr/share/doc/python3-pycangjie/README.md is in python3-pycangjie 1.2-2build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | This is a Python wrapper to libcangjie, the library implementing the Cangjie
input method.
Below is a trivial example of how to use it:
```python
import cangjie
cj = cangjie.Cangjie(cangjie.versions.CANGJIE3,
cangjie.filters.BIG5 | cangjie.filters.HKSCS)
for c in cj.get_characters("a*y"):
print(c)
```
For more details, refer to the documentation, either
[online](http://cangjians.github.io/projects/pycangjie/documentation)
or the one shipped with this software.
Development happens [on github](https://github.com/Cangjians/pycangjie), and
stable release tarballs can be found in
[the download section](http://cangjians.github.io/downloads/pycangjie/) of
our website.
## Legalities
pycangjie is offered under the terms of the
[GNU Lesser General Public License, either version 3 or any later version](http://www.gnu.org/licenses/lgpl.html).
We won't ask you to sign a copyright assignment or any other kind of silly and
tedious legal document, so just send us patches and/or pull requests!
|