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.3.tar.gz (10.2 kB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

cwcwidth-0.1.3-cp39-cp39-manylinux2010_x86_64.whl (55.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

cwcwidth-0.1.3-cp39-cp39-manylinux1_x86_64.whl (55.9 kB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.9

cwcwidth-0.1.3-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.3-cp38-cp38-win_amd64.whl (20.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

cwcwidth-0.1.3-cp38-cp38-manylinux1_x86_64.whl (56.2 kB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8

cwcwidth-0.1.3-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.3-cp37-cp37m-win_amd64.whl (20.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

cwcwidth-0.1.3-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.3-cp36-cp36m-win_amd64.whl (20.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

cwcwidth-0.1.3-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.3.tar.gz.

File metadata

  • Download URL: cwcwidth-0.1.3.tar.gz
  • Upload date:
  • Size: 10.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.3.tar.gz
Algorithm Hash digest
SHA256 c036888ba0010a071c938ddbe498fbbfc659bddc3fd2daaa1949ce8da37521d2
MD5 6ac577380c9dea242db7dc2ef80b7105
BLAKE2b-256 6c872d6c3246cffba2660dcfe2386e4f52e1531e5bfbb30344dc4fe57efce38a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cee16b62f4284a8e906e1db48a8f4c3520bd64cd0b9de986afacc73a67645dcc
MD5 e265f693695aeb414d0c53e949ab3c13
BLAKE2b-256 c85954651664fd708acd07469ce60b05c3c1beef066d12840a28dfed3f994946

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 15cd82f518239757b6ac607b2279a6082e35ccd414498b5c41c6f848f2772b77
MD5 d854cdea14ca31b6e48c5afe21395f8a
BLAKE2b-256 aecabcd2a6de145875c1b02e59dfe29c928d02bc1a96c467980ca95ebfb94e28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 55.9 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.3-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ca707062cada04b71830214c7a7a58f05efff96b6654f580d0d741f707647303
MD5 fde458b1747a8ed6b4cf517dd518dcb7
BLAKE2b-256 bbe2e92abeca70d1f87105242c38ebfb62554ebbec43ec846514b7c2fceeec53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2aba8dbd64c27dee567f3cb68364eb86bada73d2e5b41e6c053aae18eab071cd
MD5 42b9e69f3165f2459e4cb07bc3b7e98c
BLAKE2b-256 30587c7f064a80ba74eefb3dc43f265896ab9e1138001b71db29b7d8bd1ba2af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 55.9 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.3-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 aff3151b4a895400461db88c5d07413d08375d092eb2b1ee524ad5e6fb6a2d0d
MD5 a94d6255d964d81eac9b02b3166eca27
BLAKE2b-256 e2d4bf84df48d2105e0c3f3bce49d99de435b6351764900dfe37d2e3054747f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 433043af3b09450a297b6366f07b665f5662d772a673a87954c04646e6bdec0a
MD5 442ed061b8d190767b19441396c895b3
BLAKE2b-256 7edf7b443bf8105ff52cd0fef542e0934859c135fb25ef5fc52c9284a43d5357

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a56d9394f21b9cd58453bde819baaa3d58415298ccd4bf5db538edfd13935035
MD5 0aab7c96136bdfb42375cb709182408f
BLAKE2b-256 bcce8506561a095a4c5cb04b0d2f03a39128abb28df0dd3d3a29b3a7bce52bc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c5ca56c23076d12ee06b9c589f8726a34bec6c660788774f93bff1fd24623f0f
MD5 a6dee8cfce0ccdebd31746c85d5fef2d
BLAKE2b-256 1aa7faa1bdd8ab19e2f3cd64c5722f37c19144c702889ceeb8b694ced8262406

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 eaca697cfef8e3fdabaf0085f22be3347877dfb7e43345fc3146ed6f674fc507
MD5 4f6bfaaa3c69f3fc25a4e0ef8e117098
BLAKE2b-256 ff3646b978966098f9685e89f6be1d27bf59b7cfc689a840a55b4506684df8dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f0715ad43aa474f9eb2efdb0481d00e098b71a38b5e8b774b4168f4a4c553a76
MD5 b1c54b9e3126c621497f9632c3aa98a7
BLAKE2b-256 9407559699b709eecc4c1a1eed54b81379b301497f25b721535b05c7c74c9ec9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e58a4c7c99445bf6a15940b8a3de24f72c48ed470901788e15a8138c17064ee2
MD5 0023345992a6e53afd9f5bb6d78e6b6d
BLAKE2b-256 9cfb9a83ab4f8c89c6e0cbfc90e1ae565f1fed54f80a3e7ea672dab89335d651

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 56.2 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.3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a6fa517eddd918d8ef939a33cc0b7571eb84ffee1b07a225ef6fc902d36f7a67
MD5 0543851f98263948692c4473abe4b591
BLAKE2b-256 b348debbcaa0acd5caf6894076578885774cf282f6e8f73f9a19907101d0aab0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e4a82fc52307167068e63bfb5c42651adcdf033ba2388b9f67c3bcc6e8be5663
MD5 e3b127469a06e57ab5b00ec042e9192e
BLAKE2b-256 83b2d56bd12b8ea26d23a5bbc8a8d26002db90f5f2549573de68dbd28755775c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 45fdd8cb9f87fb9fc580f4aeef78902c89e69b2056fad8fea64fdf5933e48b9e
MD5 abbb5311521bf077873034dccede375b
BLAKE2b-256 811c71867730285138bc930f3f4a79f76a3b1259350af0f6f53bcdadeb3075e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d055a953b2950158c4c5a01787e8843c6bf2b7137270443c7bc21696bfca34e8
MD5 93ab774dca5ca62c63da37cfff48aae9
BLAKE2b-256 b502baec6694c5a99dfd9d8c08494b084329afd795d74fcb310793af7f9fca0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b2a8d94ff306401311dda5a09e5faef2c3d83daacdbcb591d72f0ed619b8c08e
MD5 2f5c0b1b8d6ad1e407c1d6dceed45ab5
BLAKE2b-256 d0048055760d471e4e7c121ff489b392d7ac139c2e9ad02ba71d57dab6687dc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cde50a68755ed390cf2968c1c2323a87bb2f17a0569c3ef5c9e67e940a254288
MD5 9c46f65a5f85e32128f1e6c2f9b23963
BLAKE2b-256 13e288a01399b25ad2e92c22418471493d3e349c7088799d2bb1e9b0544b80de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 190b96f66c17a1535f90b05541649590eb3288f7b9c544a0c6197dff73ca10b4
MD5 4674e7e70912b5baed71f48cf46ddcfe
BLAKE2b-256 31a58a24b117324c54ddf894f527dfbae931b6b879a529246bf58d45c97138ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 115c3673c9a2579858181c84416e9a253203a7f3eb83d049e4b04883d5da699b
MD5 32015d1e750fdc41cb302c0efa705835
BLAKE2b-256 6571e987f524631373ce75cd814aecbc0d759db7242d5edc4b94d79a4922f0db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1f8f48d344f4302a832e196b0f52edc557cb4f2cbf4d53f64b3faf03670779e7
MD5 847b836855d2cfc13c2e9a6b4145569c
BLAKE2b-256 5ce94d7bfd17d7403ac911086fe1afef3058f6fddfc72eceb27c1d5680ebf7f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c5efbb25d7467fc56fddab72433cffb730e7d2f117b1ca5590f4f4647a5cf5c5
MD5 7f4372d752dd2f4c633f57399777c695
BLAKE2b-256 9ef0365f35504a43edd390dc60016d0fc4eeb29594107149998b4e4d06e4d575

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9397fc8bdf14d16267f77fc07115235e0b8e2aa955f392481804b40d961618b6
MD5 3089c0a78c8f5dd309cbb465db932399
BLAKE2b-256 681cc98ce6c82ca5c699ce4af682739d1d1b54b8475744548e12a80711bd1100

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a8b154d8030a67b491213bce667f962a1feeae2d3241940e79dafc486abca985
MD5 3f5c8528e9cb453c27fd6768dee29a0a
BLAKE2b-256 fbf9d0abff039b7cc618dd11ceaf28458222a14cf77ca39639145eb79a992791

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9ab6c9fe0d682e76b4c3c9987a88e15cc2508758bf92d9417bb4459839550acb
MD5 caa2d90333fc7a84805689ef63062a50
BLAKE2b-256 572b198e18a9997b27cdb606e976a636450be4603a601d5e35c2e242a9573471

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9c2973af2ce195d65dfa93d395c17e419f59d816288b4fd6315e0afd369b6bd8
MD5 0894dc43e173efac18f9de3fc449825c
BLAKE2b-256 89f68c0256218a61fa8c658bf76f45a4a0765ab95233f6fe081b8ff994d3721a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 eb9e0df5df238cfadecebf2875fadb32fdd6c4d39cd27d042f419e5a94df255f
MD5 9b7abb8340e012aeedb76e299317f81d
BLAKE2b-256 b87a47befff9c9579d2848dbac0668b08ad5b5bedbacf9c8b0cd2bfece090403

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b0cb23aa887b9e1b82f4d645708cb41f1b2af83d80087f69cd8986765b6ff728
MD5 b1f01ae122b2e78722f092ceeb06d2c1
BLAKE2b-256 e938e258ab1e5d3c74b9111f5c7a16b63f9c884db7f86f4945f4d220c904b3d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwcwidth-0.1.3-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.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c357cd682785c51dc24678f0bdc1df8ad5e2607ad79de10c68df9e93a473830c
MD5 104483bc14c4f3538f97042e9b7b506e
BLAKE2b-256 5ab05c25967258f29decb9b282ad8cc5bee1d12ab647687c91056ad12e70f6a3

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