Metadata-Version: 2.1
Name: icupy
Version: 0.9.0
Summary: Python bindings for ICU4C
Home-page: https://github.com/miute/icupy
Author: Tetsuya Miura
Author-email: miute.dev@gmail.com
License: MIT
Keywords: icu4c,binding
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: C++
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Internationalization
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Localization
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: test
License-File: LICENSE

# icupy

Python bindings for [ICU4C](https://unicode-org.github.io/icu/userguide/icu4c/).

## Installation

### Prerequisites

- [Python](https://www.python.org/) >=3.8
- [ICU4C](https://icu.unicode.org/) (>=64 recommended)
- C++17 compatible compiler (depends on [pybind11](https://github.com/pybind/pybind11))
- [CMake](https://cmake.org/) >=3.7

### Building from source

1. If installing icupy on Windows or if ICU is located in a non-regular place, set the `ICU_ROOT` environment variable to the root of the ICU installation. (e.g., `set ICU_ROOT=C:\icu`)

2. Installing from PyPI:

    ```bash
    pip install icupy
    ```

    Alternatively, installing from the git repository:

    ```bash
    pip install git+https://github.com/miute/icupy.git
    ```
   
    Optionally, the CMake environment variables are available.
    e.g., Using the Ninja build system:

    ```bash
    CMAKE_GENERATOR=Ninja pip install icupy
    ```

## Changes

- **Naming Rules**
  - Renamed C functions and C++ class methods from mixed case to snake case. (e.g., `findAndReplace()` → `find_and_replace()`)
  - Renamed C++ enumerators to upper snake case without "k" prefix. (e.g., `kDateOffset` → `DATE_OFFSET`)

## Examples

- icu::UnicodeString with error callback

    ```python
    >>> import icupy as icu
    >>> cnv = icu.ucnv_open("utf-8")
    >>> action = icu.UCNV_TO_U_CALLBACK_ESCAPE
    >>> context = icu.ConstVoidPtr(icu.UCNV_ESCAPE_C)
    >>> icu.ucnv_set_to_u_call_back(cnv, action, context)
    >>> utf8 = b"\x61\xfe\x62"  # Impossible bytes
    >>> s = icu.UnicodeString(utf8, -1, cnv)
    >>> str(s)
    'a\\xFEb'
    ```

- icu::IDNA (UTS #46)

    ```python
    >>> import icupy as icu
    >>> uts46 = icu.IDNA.create_uts46_instance(icu.UIDNA_NONTRANSITIONAL_TO_ASCII)
    >>> dest = icu.UnicodeString()
    >>> info = icu.IDNAInfo()
    >>> uts46.name_to_ascii(icu.UnicodeString("faß.ExAmPlE"), dest, info)
    UnicodeString("xn--fa-hia.example")
    >>> str(dest)
    'xn--fa-hia.example'
    ```

- See also [tests](https://github.com/miute/icupy/tree/main/tests) directory.

## License

This project is licensed under the [MIT License](https://github.com/miute/icupy/blob/main/LICENSE).


