https://github.com/domdfcoding/pyunicodedata
Pure-python implementation of some unicodedata functions.
https://github.com/domdfcoding/pyunicodedata
python
Last synced: 6 months ago
JSON representation
Pure-python implementation of some unicodedata functions.
- Host: GitHub
- URL: https://github.com/domdfcoding/pyunicodedata
- Owner: domdfcoding
- License: other
- Created: 2021-05-17T19:11:49.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-05-22T15:47:04.000Z (7 months ago)
- Last Synced: 2025-05-22T17:12:10.694Z (7 months ago)
- Topics: python
- Language: Python
- Homepage:
- Size: 126 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
==============
pyunicodedata
==============
.. start short_desc
**Pure-python implementation of some unicodedata functions.**
.. end short_desc
.. start shields
.. list-table::
:stub-columns: 1
:widths: 10 90
* - Tests
- |actions_linux| |actions_windows| |actions_macos| |coveralls|
* - PyPI
- |pypi-version| |supported-versions| |supported-implementations| |wheel|
* - Activity
- |commits-latest| |commits-since| |maintained| |pypi-downloads|
* - QA
- |codefactor| |actions_flake8| |actions_mypy|
* - Other
- |license| |language| |requires|
.. |actions_linux| image:: https://github.com/domdfcoding/pyunicodedata/workflows/Linux/badge.svg
:target: https://github.com/domdfcoding/pyunicodedata/actions?query=workflow%3A%22Linux%22
:alt: Linux Test Status
.. |actions_windows| image:: https://github.com/domdfcoding/pyunicodedata/workflows/Windows/badge.svg
:target: https://github.com/domdfcoding/pyunicodedata/actions?query=workflow%3A%22Windows%22
:alt: Windows Test Status
.. |actions_macos| image:: https://github.com/domdfcoding/pyunicodedata/workflows/macOS/badge.svg
:target: https://github.com/domdfcoding/pyunicodedata/actions?query=workflow%3A%22macOS%22
:alt: macOS Test Status
.. |actions_flake8| image:: https://github.com/domdfcoding/pyunicodedata/workflows/Flake8/badge.svg
:target: https://github.com/domdfcoding/pyunicodedata/actions?query=workflow%3A%22Flake8%22
:alt: Flake8 Status
.. |actions_mypy| image:: https://github.com/domdfcoding/pyunicodedata/workflows/mypy/badge.svg
:target: https://github.com/domdfcoding/pyunicodedata/actions?query=workflow%3A%22mypy%22
:alt: mypy status
.. |requires| image:: https://dependency-dash.repo-helper.uk/github/domdfcoding/pyunicodedata/badge.svg
:target: https://dependency-dash.repo-helper.uk/github/domdfcoding/pyunicodedata/
:alt: Requirements Status
.. |coveralls| image:: https://img.shields.io/coveralls/github/domdfcoding/pyunicodedata/master?logo=coveralls
:target: https://coveralls.io/github/domdfcoding/pyunicodedata?branch=master
:alt: Coverage
.. |codefactor| image:: https://img.shields.io/codefactor/grade/github/domdfcoding/pyunicodedata?logo=codefactor
:target: https://www.codefactor.io/repository/github/domdfcoding/pyunicodedata
:alt: CodeFactor Grade
.. |pypi-version| image:: https://img.shields.io/pypi/v/pyunicodedata
:target: https://pypi.org/project/pyunicodedata/
:alt: PyPI - Package Version
.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/pyunicodedata?logo=python&logoColor=white
:target: https://pypi.org/project/pyunicodedata/
:alt: PyPI - Supported Python Versions
.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/pyunicodedata
:target: https://pypi.org/project/pyunicodedata/
:alt: PyPI - Supported Implementations
.. |wheel| image:: https://img.shields.io/pypi/wheel/pyunicodedata
:target: https://pypi.org/project/pyunicodedata/
:alt: PyPI - Wheel
.. |license| image:: https://img.shields.io/github/license/domdfcoding/pyunicodedata
:target: https://github.com/domdfcoding/pyunicodedata/blob/master/LICENSE
:alt: License
.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/pyunicodedata
:alt: GitHub top language
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/pyunicodedata/v0.0.0
:target: https://github.com/domdfcoding/pyunicodedata/pulse
:alt: GitHub commits since tagged version
.. |commits-latest| image:: https://img.shields.io/github/last-commit/domdfcoding/pyunicodedata
:target: https://github.com/domdfcoding/pyunicodedata/commit/master
:alt: GitHub last commit
.. |maintained| image:: https://img.shields.io/maintenance/yes/2025
:alt: Maintenance
.. |pypi-downloads| image:: https://img.shields.io/pypi/dm/pyunicodedata
:target: https://pypi.org/project/pyunicodedata/
:alt: PyPI - Downloads
.. end shields
Installation
--------------
.. start installation
``pyunicodedata`` can be installed from PyPI.
To install with ``pip``:
.. code-block:: bash
$ python -m pip install pyunicodedata
.. end installation