Skip to main content

Python bindings for wc(s)width

Project description

Python bindings for wc(s)width

cwcwidth provides Python bindings for wcwidth and wcswidth functions defined in POSIX.1-2001 and POSIX.1-2008 based on Cython. These functions compute the printable length of a unicode character/string on a terminal. The module provides the same functions as wcwidth and its behavior is compatible.

On systems not conforming to POSIX.1-2001 and POSIX.1-2008, Markus Kuhn's implementation is used to provide the functionality.

Dependencies

  • Cython >= 0.28 (optional, only for building). If Cython is not available, the C files are not regenerated from their source.

Quick installation guide

cwcwidth can be installed via pip:

pip install cwcwidth

or by running:

python3 setup.py install

Usage

>>> import cwcwidth
>>> cwcwidth.wcwidth("a")
1
>>> cwcwidth.wcswidth("コ")
2
>>> cwcwidth.wcswidth("コンニチハ, セカイ!")
19
>>> cwcwidth.wcswidth("コンニチハ, セカイ!", 5)
10

Comparison with wcwidth

>>> import wcwidth, cwcwidth, timeit
>>> timeit.timeit(lambda: wcwidth.wcswidth("コンニチハ, セカイ!"))
19.14463168097427
>>> timeit.timeit(lambda: cwcwidth.wcswidth("コンニチハ, セカイ!"))
0.16294104099506512

License

The code is licensed under the MIT license.

Tidelift

Security contact information

To report a security vulnerability, please use the Tidelift security contact. Tidelift will coorindate the fix and disclosure.

Commercial support

cwcwidth and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source packages you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact packages you use. Learn more.

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

cwcwidth-0.1.4.tar.gz (11.2 kB view details)

Uploaded Source

Built Distributions

cwcwidth-0.1.4-cp39-cp39-win_amd64.whl (20.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

cwcwidth-0.1.4-cp39-cp39-win32.whl (18.5 kB view details)

Uploaded CPython 3.9 Windows x86

cwcwidth-0.1.4-cp39-cp39-manylinux2010_x86_64.whl (55.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

cwcwidth-0.1.4-cp39-cp39-manylinux2010_i686.whl (54.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

cwcwidth-0.1.4-cp39-cp39-manylinux1_x86_64.whl (55.8 kB view details)

Uploaded CPython 3.9

cwcwidth-0.1.4-cp39-cp39-manylinux1_i686.whl (54.0 kB view details)

Uploaded CPython 3.9

cwcwidth-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl (15.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

cwcwidth-0.1.4-cp38-cp38-win_amd64.whl (20.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

cwcwidth-0.1.4-cp38-cp38-win32.whl (18.6 kB view details)

Uploaded CPython 3.8 Windows x86

cwcwidth-0.1.4-cp38-cp38-manylinux2010_x86_64.whl (56.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

cwcwidth-0.1.4-cp38-cp38-manylinux2010_i686.whl (54.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

cwcwidth-0.1.4-cp38-cp38-manylinux1_x86_64.whl (56.3 kB view details)

Uploaded CPython 3.8

cwcwidth-0.1.4-cp38-cp38-manylinux1_i686.whl (54.8 kB view details)

Uploaded CPython 3.8

cwcwidth-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl (15.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

cwcwidth-0.1.4-cp37-cp37m-win_amd64.whl (20.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

cwcwidth-0.1.4-cp37-cp37m-win32.whl (18.3 kB view details)

Uploaded CPython 3.7m Windows x86

cwcwidth-0.1.4-cp37-cp37m-manylinux2010_x86_64.whl (53.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

cwcwidth-0.1.4-cp37-cp37m-manylinux2010_i686.whl (52.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

cwcwidth-0.1.4-cp37-cp37m-manylinux1_x86_64.whl (53.9 kB view details)

Uploaded CPython 3.7m

cwcwidth-0.1.4-cp37-cp37m-manylinux1_i686.whl (52.5 kB view details)

Uploaded CPython 3.7m

cwcwidth-0.1.4-cp37-cp37m-macosx_10_9_x86_64.whl (15.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

cwcwidth-0.1.4-cp36-cp36m-win_amd64.whl (20.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

cwcwidth-0.1.4-cp36-cp36m-win32.whl (18.2 kB view details)

Uploaded CPython 3.6m Windows x86

cwcwidth-0.1.4-cp36-cp36m-manylinux2010_x86_64.whl (52.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

cwcwidth-0.1.4-cp36-cp36m-manylinux2010_i686.whl (51.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

cwcwidth-0.1.4-cp36-cp36m-manylinux1_x86_64.whl (52.7 kB view details)

Uploaded CPython 3.6m

cwcwidth-0.1.4-cp36-cp36m-manylinux1_i686.whl (51.2 kB view details)

Uploaded CPython 3.6m

cwcwidth-0.1.4-cp36-cp36m-macosx_10_9_x86_64.whl (15.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file cwcwidth-0.1.4.tar.gz.

File metadata

  • Download URL: cwcwidth-0.1.4.tar.gz
  • Upload date:
  • Size: 11.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4.tar.gz
Algorithm Hash digest
SHA256 482a937891a6918667436e0a7041aab576c26e4bcbcdddd178ef79362fbcf9ab
MD5 575b47fc4b33ec74a8c4d230bfd1e4e7
BLAKE2b-256 ecdd07aee69281914e20ad3e703579caf28658230602efeaecca973e801deb60

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 20.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7779cb2ccc04694f95134d3f660216f32be5de82101dcbd8f1c8f81ff748ae41
MD5 e9398a9236d4789257a65bc49753fcbf
BLAKE2b-256 1b329c5a44eb0a5362573f815d62cbc34d0e42a15db4aaa42dc9e772f4a9efac

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 18.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0e05498c57629bf6c8445b17b2e5a9ec26c0f97080cb7ae2602e14a5db67209b
MD5 488f4475368e55a4067e221df9df22fc
BLAKE2b-256 858a61c2c733ab7f422f90405aaf53143e8c498fa0170c8db0e5d0ed53106f54

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 55.8 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 01b630049fdd8fc37f0e929d24012fee7855d8aa3f304c8a0c26caf2415c7d85
MD5 20379cefeafe3e288cab14c34dddd28b
BLAKE2b-256 3d911b6dd9d24cce78311b25660bfff7f69eb73e4022dd183ed2166e759cf4b9

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 54.0 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 99fb16a3b0258ee2fa952e7dab80b839b990aebdb96b98b648211a99e8a0c906
MD5 c7f7c186439c92ed19312e03bcb665d7
BLAKE2b-256 3bdcf6808ec2b5aa95e9c2deea28b521b071824e7fdf357a2522bc278e64a505

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 55.8 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 63190cb5b87a568ed89cfae3be203935a14dea0c10b116160a15031273771b44
MD5 e7f8410e031a4fbe5b605ad6179354c6
BLAKE2b-256 b37056082a89fe842da11dd8727f4d217556540d4999d1f3cf77dd9aeeaf3b96

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 54.0 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1d75b2c9edc19a579dd5d92e93dc7087b6430a250928a06527aa6ebd627b06c
MD5 67cdd6261fd049d9e3910575d735765d
BLAKE2b-256 514614fd5b5141c88ca799b41b86351e259de8fce9dd3252a5463633393022e5

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 15.3 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2fc0d1c4214f76ba7fec60aac6e1467588d865a0005ce9063c5471c57751f895
MD5 0fca58b959980103efbeafcf8394485c
BLAKE2b-256 21d42c166ec7fe72330cc5229739a734e73c17c6350cb10d60138ceacf67483e

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 20.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 146069bc61cb5db11d3c037b057454d78ef2254932f4f4871ae355e0923ce8e7
MD5 4617097010e18f55f5da36c29bdebb81
BLAKE2b-256 3e3cb0f5ddb350da4ff8bf00e93ac123ff8fb6bd4ba4137c654790c33b4af9b4

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 18.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 51481cb731c6d9c46a5d751bafff03ea3072f856c590fe8d4a27a1d404bb20be
MD5 22774d94cc8199669a1d88219f4dcb10
BLAKE2b-256 30d7618aad81e353416bba36472b875801330f9a9e3f5b93d60bdb371f350d2e

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 56.3 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 55969b269a11f317c29b206e74cae02267af92a3a9a2fb86860a84f64366705a
MD5 6a3415abaf24503c41f664a2ec0cf9fa
BLAKE2b-256 8e48f4a0a190953cdaa5128877597d06623111dff721cdb708ffd61ac5c2a0d0

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 54.8 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3011f108504e3ad6472f53df0b7a12b9a978e6e0e41bd841a768a6a5f678bc0e
MD5 6e058ea2d52f8dd6b3bd62415ca92300
BLAKE2b-256 57621b99b507035887923d1a54c927b50116cfeeffdea973ef144ee46e8efa88

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 56.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ef08bc8af421e5991ff6c2e67124add008e73ed7fd4fb8767f44c07b789fe114
MD5 5c735ce79c91d5466b5879e3b3c00021
BLAKE2b-256 794fed061f342170892d503e08fc6eeee6e62a6e5b929593311891c4211ec9bc

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 54.8 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 73d66da4f1807cc673cf924c9fd83f9f61465af13693f5ef2b5b4b9c32faa0c7
MD5 c055a4e6b5634b6ea39c2768f457c0c4
BLAKE2b-256 a8857c97db852e4dc28bd97e12a408025a2503ddd9086105b3a007f3ef83ade8

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 15.3 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b9d0188488c55d947f71d48f47e7f8e4355d75a86afcc8932a500cd84e32e278
MD5 9d4a6201b303f7a54afb49ded6933d95
BLAKE2b-256 d38e1e29c4c7748b1988e6799b2a05163c57da1d3083eeadd35bb360eb773a2d

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 20.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9faa4adcdb0c74fb8350da8eee6f893dde5b9a0f817ee0b83607b8e0e4d12929
MD5 f75762ac7971a95922fba4dabee85b7d
BLAKE2b-256 416f57623552196e55e163837da7d9824b4a75c2c3d44a323c90cf3539b5289b

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp37-cp37m-win32.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 18.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ec9d57742804a975a75dc633ee3a0bb5bffe67dc897def6a3d84717805584dbd
MD5 9751575862947949a17efaad83715913
BLAKE2b-256 dc53cdca06ad421f4a6b22cf1376607446f3361891f3670a62d20bdd533eabfe

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 53.9 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5a7da558423d32064bb8cabe461824543c6072ecdf2d0c2adf521dc63b3f0073
MD5 b5607085d5f30a462b260225e059c84e
BLAKE2b-256 52d2932e3933e54f3a9e5da369dceef236087e26c7f05c122d4ded24eef112fe

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 52.5 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3bec2366e89de99c6ca8dcd1c92156d60efdbb47dc3a9cdb86d7064773c05d65
MD5 6868005a860fcaa91b706765de031cac
BLAKE2b-256 84c159b9196e91af904969bdc45731d3c87aa27adb6a3a1f75b5a6e149002660

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 53.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 53ec58c6478af6062e979a89fc11ec6ca1e4254e93f3305ac62da28809745185
MD5 e6074173384f887de569e937ba818ba5
BLAKE2b-256 c4464b29239ba43ce2e74bd4eca20da948ff5162fc9ad15ebbe6921437614297

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 52.5 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a85539ec3b879177eb1715bda5bd2bb9753d84569f8717684f07016efb92a5c7
MD5 8b6485a1571f02ae66888e6cf429939a
BLAKE2b-256 3841f2f40773e3f5cd4d8becf5b79f649fd90cd16d8a3b568005ff1f31c82bd1

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 15.2 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d8f8464656b48549d2a8ac776eed5c6f10906ee2dcc3767ef8228cc582857f6d
MD5 e5b1a1a333869704ec681f02494e8cbc
BLAKE2b-256 5d409ee3ec079d92d824230376f204964713603c2b29b97c2dc35afeaaea36ba

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 20.4 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d5a487c6981bf157b67f83514a754df5e6713a9090df71558a2625788c4a448a
MD5 ef84521682eb7a09b36aeb19b80db2d3
BLAKE2b-256 c5250960967d57d6a1736e6e7e92068d594622c787a3236c9c8741fdaa8d58cf

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp36-cp36m-win32.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 18.2 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d76c3b5078355e78ca3aa0fd06939a9793f5a9f9bf4522738fff90fb58b47429
MD5 1937ec56492cc169f97349c43ee53bd6
BLAKE2b-256 ea5bdef5d323cb4062016e042b06b9b9ba53c5d34d2545a140fa888dc01071b7

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 52.7 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ede2a05f88e3ddc4be22591fd5c5491e8a94f6e7fd3c93a3a06164f4ce8690d0
MD5 70b8855827c3ad2f29f00f38f9191b76
BLAKE2b-256 3c09e72ff1a5e7f4c470d4aa0c16e5b6d48d95e9f5b8f635826428d582d4ff7e

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 51.2 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3a93491f4cbe5fc821bae02ebcccfa5b9206f441fa3ef618dc6f62fdccde0f07
MD5 4ae778c980e80bd3530d9513b54d4a2b
BLAKE2b-256 1b7c37260aec85b4c995d48a260cf0f04863b1aad9172507b431158b48e47b80

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 52.7 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 77281cd94e6d582f3459e1535305cb3ad0afd3fbed0bacbe2e84b7e5cb3e9123
MD5 3e52bad27499748b83d2281a115a0879
BLAKE2b-256 d5d6551f972d753684e17669872db2efef1e587f7186b62a8f145b2a3d1e1fde

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 51.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ffb278e25d3ff9789dca99dcb666469a390ff226b181f846cc8736f1554ff085
MD5 56d996014e9f94017608b3c4fe85db14
BLAKE2b-256 43635523c293c5af4b10c5b9978ced1fd7f4ad481a86a6c11fe1debb3fc69e58

See more details on using hashes here.

File details

Details for the file cwcwidth-0.1.4-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: cwcwidth-0.1.4-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 15.2 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for cwcwidth-0.1.4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0614e892110401284fec5850ee45846d5ff163654574d3df040f86f02ec05399
MD5 b4c3a707ea28ff0f5d29fce1fdc6f280
BLAKE2b-256 d06893114ae55d5c7d76d70498de525342a9ed5335192a1a729f0de369f80115

See more details on using hashes here.

Supported by

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