Skip to main content

A tiny utility to get the Unicode block of a character

Project description

tinyunicodeblock

A tiny utility to get the Unicode block of a character

Code style Pylint License PyPi Pipeline status

This module provides only one ability that is absent from the built-in module unicodedata.
It contains one function, block(), which returns the name of a Unicode block that a character belongs to.

You may also access basic Unicode block information by getting items from BLOCKS_BYNAME.

Table of contents


📦 Installation

tinyunicodeblock is available on PyPi. It requires a Python version of at least 3.7.0. and depends on no packages.

To install with pip:

python -m pip install tinyunicodeblock

To install through Git:

python -m pip install git+https://gitlab.com/whoatemybutter/tinyunicodeblock.git

🛠 Usage

Only one function is publicly available, block(character). It will return the name of a Unicode block that character belongs to.

Block ranges are also available in the BLOCKS_BYNAME dictionary.

>>> import tinyunicodeblock
>>> tinyunicodeblock.block("a")
'Basic Latin'
>>> tinyunicodeblock.block("\ufdfd")
'Arabic Presentation Forms-A'
>>> tinyunicodeblock.block("\ue845")
'Private Use Area'
>>> tinyunicodeblock.BLOCKS_BYNAME["Basic Latin"]
(0, 127)

CSUR Support

Since v1.2, tinyunicodeblocks contains support for the ConScript Unicode Registry (CSUR).

It is available through the variables CSUR and CSUR_BYNAME. The function block() will optionally include CSUR blocks in its results if the argument include_csur=True is passed to it.

>>> tinyunicodeblock.block("\ue845", include_csur=True)
'Dni'
>>> tinyunicodeblock.block("\ue400", include_csur=True)
'Niskloz'
>>> tinyunicodeblock.block("\uf800", include_csur=True)
'Private Use Area'

tinyunicodeblocks does not contain support for the Under-ConScript Unicode Registry (UCSUR).


📰 Changelog

The changelog is at CHANGELOG.md.


📜 License

tinyunicodeblock v1.2 and above is licensed under MIT.

tinyunicodeblock v1.1 and below is licensed under GNU General Public License 3.0 or later.

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

tinyunicodeblock-1.3.tar.gz (11.8 kB view details)

Uploaded Source

Built Distribution

tinyunicodeblock-1.3-py3-none-any.whl (10.9 kB view details)

Uploaded Python 3

File details

Details for the file tinyunicodeblock-1.3.tar.gz.

File metadata

  • Download URL: tinyunicodeblock-1.3.tar.gz
  • Upload date:
  • Size: 11.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.9

File hashes

Hashes for tinyunicodeblock-1.3.tar.gz
Algorithm Hash digest
SHA256 cc305f81e3bac4f97b5e3c034a65577ca5ed18be00fd3abb9b31b697c341c9cb
MD5 90660699e3272b7253e986c3eba77060
BLAKE2b-256 9818205ae2342d900ed5b99323323d06d99ff28067842a7fe1151fbd405cc237

See more details on using hashes here.

File details

Details for the file tinyunicodeblock-1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for tinyunicodeblock-1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 07edc5f9bdc9e8ee61080c28a453ada50a476caef139c83d0f0209b4f6384fe0
MD5 da5cae065f4b60c7a8db58414db805f5
BLAKE2b-256 dcc93e772f3d3dda90f2e6b69763b8a6325401de5c19aef2888a3d28ac5fa714

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