Skip to main content

CJKwrap is a library for wrapping and filling CJK text. Fix Python issue24665

Project description

CJKwrap is a library for wrapping and filling CJK text.

CJKwrap fix the issue24665 because Python 2 will stay broken forever: https://bugs.python.org/issue24665.

CJKwrap support both Python 2 (2.6 and above) and Python 3 (3.3 and above).

CJKwrap is developed by Florent Gallaire fgallaire@gmail.com.

Website: http://fgallaire.github.io/cjkwrap.

Download and Install

To install the last stable version from PyPI:

$ sudo pip install cjkwrap

To install the development version from GitHub:

$ git clone https://github.com/fgallaire/cjkwrap
$ cd cjkwrap
$ sudo python setup.py install

Or you can just use the cjkwrap.py file alone, nothing more needed!

Usage

cjklen() and cjkslices() to replace built-in len() and slicing:

>>> import cjkwrap
>>> cjkwrap.cjklen(u"最終的には良い長さ")
18
>>> head, tail = cjkwrap.cjkslices(u"最終的には良い長さ", 6)
>>> print head
最終的
>>> print tail
には良い長さ

As cjklen() uses len() for non unicode stuff, you can safely do this:

>>> from cjkwrap import cjklen as len
>>> len(u"最終的には良い長さ")
18
>>> len('ascii string')
12
>>> len([1, 2, 3, 4])
4

wrap() and fill() to replace the ones from the Python standard library:

>>> wrapped_cjk = cjkwrap.wrap(u"最終的に良いラッピング", 10)
>>> for line in wrapped_cjk: print line
...
最終的に良
いラッピン
グ
>>> print cjkwrap.fill(u"最終的に良いラッピング", 10)
最終的に良
いラッピン
グ

Mixed content is allowed:

>>> cjkwrap.cjklen(u"CJK 最終的には良い長さ")
22
>>> print cjkwrap.fill(u"CJK 最終的には良い長さ", 10)
CJK 最終的
には良い長
さ

License

CJKwrap files are released under the GNU LGPLv3 or above license.

CJKwrap codebase from textwrap by Greg Ward (gward@python.net) under the Python license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

CJKwrap-2.0.tar.gz (21.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

CJKwrap-2.0-py2.py3-none-any.whl (4.2 kB view details)

Uploaded Python 2Python 3

File details

Details for the file CJKwrap-2.0.tar.gz.

File metadata

  • Download URL: CJKwrap-2.0.tar.gz
  • Upload date:
  • Size: 21.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for CJKwrap-2.0.tar.gz
Algorithm Hash digest
SHA256 3f99aa48305be8701c98d58a440b10372503b9d7bb1ab9a389dc5da5657a7647
MD5 35a3295ebd489d05bb7d6fa2207e30b7
BLAKE2b-256 f5799b28ab5c849aacbe60b935c685fc4ec8363f59c1950fb6f8ab727e25e1c3

See more details on using hashes here.

File details

Details for the file CJKwrap-2.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for CJKwrap-2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 9ca4faa9470231136b8ce6adbb043fd9834dfee596c6f6e20cf6946b8324e45f
MD5 2484b2302d18377d41ffc38ae00f5fe8
BLAKE2b-256 41eccda0370d9ba3404e5399000a83a0b0593caab3b39e07a92af345d9354e29

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page