canto-hk-g2p
Fast Cantonese text-to-phoneme (G2P) converter — converts Cantonese (and English code-switched) text to Jyutping with tone numbers (LSHK standard, all-ASCII) or IPA. Rust core with Python bindings via PyO3/maturin.
from canto_hk_g2p import Pipeline
p = Pipeline()
p.convert("你好嘅,I love Hong Kong")
# → "nei5 hou2 ge3 , I love Hong Kong"
Why this exists
Cantonese TTS systems struggle with two fundamental problems. First, colloquial Cantonese characters (嘅, 喺, 噉, 㗎, …) are rare or absent from standard Chinese vocabulary tables, causing tokenizers to split them into byte fragments that the model never learns to pronounce reliably. Second, Hong Kong Cantonese freely mixes English — a sentence like 佢 send 咗 email 俾我 is everyday speech — and no existing Cantonese G2P tool handles this cleanly.
canto-hk-g2p solves both: it converts the entire input, including colloquial particles, numbers, dates, and inline English, to all-ASCII Jyutping before the text ever reaches a TTS encoder. The result is stable, tone-accurate phoneme sequences with 100% coverage.
The library is a standalone open-source deliverable — Cantonese TTS pre-processing is the primary motivation, but the tool is useful anywhere Cantonese phonemization is needed.
Features
- All-ASCII Jyutping output with LSHK tone numbers (
nei5 hou2 ge3) - IPA output —
convert_ipa()with tone diacritics (nei̯˩˧ hou̯˧˥ kɛː˧) or tone numbers (nei̯5 hou̯2 kɛː3); English tokens converted via CMU Pronouncing Dictionary - English code-switching — the only Cantonese G2P tool that handles mixed HK text; English tokens pass through unchanged in Jyutping mode (
佢 send 咗 email 俾我→keoi5 send zo2 email bei2 ngo5), or converted to IPA in IPA mode - Punctuation normalisation (
punc_norm=Trueby default) — converts exotic punctuation to TTS-friendly equivalents before G2P:「」《》removed,…→。,——→,,·→ space,、→, - Text normalization — Arabic and full-width digits expanded to Cantonese spoken form:
- Year:
2026年→ji6 ling4 ji6 luk6 nin4 - Date:
6月13日→luk6 jyut6 sap6 saam1 jat6 - Percentage:
50%→baak3 fan6 zi1 ng5 sap6; decimal50.5%→baak3 fan6 zi1 ng5 sap6 dim2 ng5 - Currency symbols:
HK$100→jat1 baak3 jyun4;¥500→ng5 baak3 jat6 jyun4;€200→ji6 baak3 au1 jyun4 - Currency codes:
USD100→jat1 baak3 mei5 jyun4;EUR 200→ji6 baak3 au1 jyun4 - Measurement units:
120km/h→ 一百二十公里每小時;36.5°C→ 三十六點五攝氏度;75kg→ 七十五公斤 - Fractions:
1/2→ 二分之一;3/4→ 四分之三 - Scores:
3:1→ 三比一;10:0→ 十比零 - Ordinal/floor/episode:
第3名→ 第三名;3樓→ 三樓;第3集→ 第三集 - Time:
下午3時15分→ Cantonese spoken time - Phone numbers: digit-by-digit expansion
- Year:
- Polyphone disambiguation via longest-match word-level segmentation (~85% accuracy)
user_dictruntime overrides —Pipeline(user_dict={"行": "hong4"})locks a pronunciation above every bundled dictionary, and participates in segmentation so multi-char overrides aren't split apartconvert_candidates()/convert_candidates_batch()— Candidates API: rank-ordered alternate readings for polyphones (正經→["zing3 ging1", "zing1 ging1"]), instead of committing to a single one- Confidence + source tags — every structured result carries a categorical confidence tag (
"certain"/"ranked"/"tied") and a data-layer source tag ("rime"/"tojyutping"/"oral_hk"/"variant_alias"/"unihan"/"user_dict"/ ...) per token - 借音字 (phonetic-loan) correction — common miswritings that borrow a homophone's sound (
訓覺for瞓覺,岩岩for啱啱) resolve to the correctly-spelled word's reading instead of the variant character's own native reading (data/variant_words.tsv) - Rayon parallel batch processing — scales to large corpora
- Zero runtime Python dependencies — pronunciation dictionaries bundled in the wheel
convert_detailed()/convert_detailed_batch()— structured(token, jyutping, lang, confidence, source)output- Apache-2.0 license, permissive data sources only — safe to redistribute
Installation
# pip
pip install canto-hk-g2p
# uv (recommended — faster resolver)
uv pip install canto-hk-g2p
# uv project
uv add canto-hk-g2p
Pre-built wheels are available for Linux (x86_64, aarch64), macOS (x86_64, Apple Silicon), and Windows (x86_64) for Python 3.8+. No Rust toolchain required for end users.
Quick start
from canto_hk_g2p import Pipeline
p = Pipeline()
# Basic Cantonese
p.convert("你好嘅")
# → "nei5 hou2 ge3"
# Full sentence with punctuation and English
p.convert("你好嘅,I love Hong Kong")
# → "nei5 hou2 ge3 , I love Hong Kong"
# Punctuation normalisation (default on)
p.convert("《天氣之子》——一個故事")
# → "tin1 hei3 zi1 zi2 , jat1 go3 gu3 si6"
# Number and date normalization
p.convert("2026年6月13日")
# → "ji6 ling4 ji6 luk6 nin4 luk6 jyut6 sap6 saam1 jat6"
p.convert("50%")
# → "baak3 fan6 zi1 ng5 sap6"
# English code-switching — Latin tokens pass through unchanged
p.convert("佢send咗email俾我")
# → "keoi5 send zo2 email bei2 ngo5"
# Batch conversion (Rayon parallel)
p.convert_batch(["香港", "銀行", "你好嘅"])
# → ["hoeng1 gong2", "ngan4 hong4", "nei5 hou2 ge3"]
# Structured output with language, confidence, and source tags
p.convert_detailed("香港 hello")
# → [("香港", "hoeng1 gong2", "yue", "certain", "rime"),
# ("hello", "hello", "en", "certain", "passthrough")]
IPA output
from canto_hk_g2p import Pipeline, jyutping_to_ipa
p = Pipeline()
# Cantonese → IPA with tone diacritics (default)
p.convert_ipa("你好嘅")
# → "nei̯˩˧ hou̯˧˥ kɛː˧"
# IPA with tone numbers
p.convert_ipa("你好嘅", tone="number")
# → "nei̯5 hou̯2 kɛː3"
# English code-switching → English tokens converted via CMU Pronouncing Dictionary
p.convert_ipa("佢 send 咗 email 俾我")
# → "kʰœːy̯˩˧ sɛnd tsɔː˧˥ iːmeɪl pei̯˧˥ ŋɔː˩˧"
# Unknown English words (OOV) pass through unchanged
p.convert_ipa("佢去MTR站")
# → "kʰœːy̯˩˧ hœːy̯˧˥ MTR tsaam6˨"
# Standalone utility — convert existing Jyutping strings to IPA
jyutping_to_ipa("hoeng1 gong2")
# → "hœːŋ˥ kɔːŋ˧˥"
jyutping_to_ipa("nei5 hou2 ge3", tone="number")
# → "nei̯5 hou̯2 kɛː3"
IPA tone marks: ˥ high level (1), ˧˥ high rising (2), ˧ mid level (3), ˨˩ low falling (4), ˩˧ low rising (5), ˨ low level (6).
jyutping_to_ipa is also importable directly from canto_hk_g2p as shown above, or from canto_hk_g2p.ipa.
API reference
Pipeline(*, punc_norm=True, user_dict=None)
Loads the binary pronunciation dictionaries from the bundled data/ directory. The pipeline object is reusable and thread-safe for batch calls.
| Parameter | Type | Default | Description |
|---|---|---|---|
punc_norm |
bool |
True |
Enable punctuation normalisation. Converts 「」《》 (removed), …→。, ——→,, ·→space, 、→, before G2P lookup. Set to False to disable. |
user_dict |
dict[str, str] | None |
None |
Runtime override: word/char → space-separated Jyutping reading. Highest priority over every bundled dictionary; also participates in segmentation. Validated at construction time (raises ValueError on a malformed entry). |
p = Pipeline() # punc_norm on (default)
p2 = Pipeline(punc_norm=False) # raw punctuation passthrough
user_dict — runtime pronunciation override
p3 = Pipeline(user_dict={"行為": "hang4 wai4", "老世": "lou5 sai3"})
p3.convert("行為") # → "hang4 wai4" (overrides the bundled dict)
p3.convert("老世") # → "lou5 sai3" (not in any bundled dict at all)
Each value must have exactly as many space-separated syllables as the key has characters, and every syllable must be valid Jyutping:
Pipeline(user_dict={"老世": "lou5"}) # ValueError — 2 chars, 1 syllable
Pipeline(user_dict={"行": "xyz9"}) # ValueError — not a valid syllable
Known limitation: an override only competes with the bundled word_dict at its own starting position during segmentation. If a longer dictionary word starts one character earlier and contains the override's key as a substring, that longer word wins and the override is shadowed:
p = Pipeline(user_dict={"正經": "zing1 ging1"})
p.convert("正經嚟講") # → "zing1 ging1 lai4 gong2" (override applied)
p.convert("佢好正經") # → "keoi5 hou2 zing3 ging1" (shadowed — "好正經" is itself
# a 3-char dictionary entry starting one char earlier)
convert(text: str) -> str
Converts a string of Cantonese (or mixed Cantonese/English) text to space-separated Jyutping syllables.
| Parameter | Type | Description |
|---|---|---|
text |
str |
Input text (UTF-8). May contain Cantonese characters, English words, digits, punctuation. |
Returns: str — space-separated Jyutping syllables. Punctuation tokens are preserved as-is. Latin tokens (English words, acronyms) are passed through unchanged.
p.convert("銀行") # → "ngan4 hong4"
p.convert("2026年") # → "ji6 ling4 ji6 luk6 nin4"
p.convert("I love you") # → "I love you"
p.convert("send") # → "send"
p.convert("") # → ""
convert_batch(texts: list[str]) -> list[str]
Converts a list of strings in parallel using Rayon. Output order matches input order.
| Parameter | Type | Description |
|---|---|---|
texts |
list[str] |
List of input strings. |
Returns: list[str] — one Jyutping string per input, in the same order.
p.convert_batch(["香港", "銀行", "你好嘅"])
# → ["hoeng1 gong2", "ngan4 hong4", "nei5 hou2 ge3"]
p.convert_batch([]) # → []
convert_ipa(text: str, tone: str = "diacritic") -> str
Converts text to IPA. Cantonese tokens use the Jyutping→IPA mapping table; English tokens are converted via the bundled CMU Pronouncing Dictionary (OOV words pass through unchanged).
| Parameter | Type | Default | Description |
|---|---|---|---|
text |
str |
— | Input text (Cantonese, English, or mixed). |
tone |
str |
"diacritic" |
"diacritic" — IPA suprasegmental tone marks (˥˧˥˧˨˩˩˧˨). "number" — IPA phonemes with Jyutping tone digit as suffix. |
Returns: str — space-separated IPA string.
p.convert_ipa("香港")
# → "hœːŋ˥ kɔːŋ˧˥"
p.convert_ipa("香港", tone="number")
# → "hœːŋ1 kɔːŋ2"
p.convert_ipa("send") # English → CMU dict
# → "sɛnd"
p.convert_ipa("MTR") # OOV → passthrough
# → "MTR"
jyutping_to_ipa(jyutping: str, tone: str = "diacritic") -> str
Standalone utility — converts an existing space-separated Jyutping string to IPA. Non-Jyutping tokens (English, punctuation) pass through unchanged. Importable from canto_hk_g2p or canto_hk_g2p.ipa.
from canto_hk_g2p import jyutping_to_ipa
jyutping_to_ipa("nei5 hou2 ge3")
# → "nei̯˩˧ hou̯˧˥ kɛː˧"
jyutping_to_ipa("hoeng1 gong2", tone="number")
# → "hœːŋ1 kɔːŋ2"
confidence and source — shared across convert_detailed() / convert_candidates()
Every structured result (convert_detailed(), convert_candidates(), and
their batch siblings) carries two trailing fields:
| Field | Type | Values |
|---|---|---|
confidence |
str |
"certain" (no ambiguity), "ranked" (2+ candidates ordered by ToJyutping's own context-aware ranking — a real preference signal), "tied" (2+ candidates, but the order is rime-cantonese's raw arbitrary tie-break — no real preference signal; also the default when an ambiguous token has no entry in the bundled confidence data) |
source |
str |
Which data layer produced the rank-0 reading: "rime", "tojyutping" (exact trie hit), "tojyutping_tiebreak" (rime tie resolved via ToJyutping's context segmentation, v1.7.1), "oral_hk" (hand-curated override), "variant_alias" (借音字 phonetic-loan miswriting resolved to its canonical word's reading, v2.1.0), "hkcancor_verified" (變調 changed-tone word-level correction found by diffing the HKCanCor corpus against citation-tone output, v2.2.0), "unihan" (char-only fallback), "user_dict" (caller override), "passthrough" (non-CJK), "char_fallback" (OOV multi-char token — architecturally unreachable via real segmenter output), "unresolved" (truly unknown char), or "unknown" (source sidecar missing/no entry) |
No numeric probability is exposed, by design. Neither ToJyutping's trie nor rime-cantonese's tied readings carry real frequency data — a float score per candidate would be fabricated, not measured. See CHANGELOG (v2.0.0) for the research behind this categorical-only design.
convert_detailed(text: str) -> list[tuple[str, str, str, str, str]]
Returns a structured token-level breakdown. Each element is a 5-tuple
(token, jyutping, lang, confidence, source).
| Field | Type | Values |
|---|---|---|
token |
str |
The original text span for this token |
jyutping |
str |
Space-separated Jyutping syllables for the token (rank-0 reading); equals token for Latin passthrough |
lang |
str |
"yue" (Cantonese), "en" (English / Latin), "punct" (punctuation) |
confidence |
str |
See above |
source |
str |
See above |
The joined jyutping from convert_detailed() is identical to the output of convert() for the same input.
p.convert_detailed("香港 hello")
# → [("香港", "hoeng1 gong2", "yue", "certain", "rime"),
# ("hello", "hello", "en", "certain", "passthrough")]
p.convert_detailed("你好,")
# → [("你", "nei5", "yue", "ranked", "tojyutping"), ("好", "hou2", "yue", "ranked", "tojyutping"),
# (",", ",", "punct", "certain", "passthrough")]
p.convert_detailed("2026年")
# → all tokens tagged "yue" (normalizer expands digits to Chinese characters first)
p.convert_detailed("")
# → []
convert_detailed_batch(texts: list[str]) -> list[list[tuple[str, str, str, str, str]]]
Rayon-parallel batch sibling of convert_detailed() — same per-text output
shape, one list per input text.
convert_candidates(text: str) -> list[tuple[str, list[str], str, str, str]]
The Candidates API — the text-level sibling of convert_detailed(). Returns
(token, candidate_readings, lang, confidence, source) tuples, where
candidate_readings is a rank-ordered list (most-likely first) instead of a
single committed string.
| Field | Type | Values |
|---|---|---|
token |
str |
The original text span for this token |
candidate_readings |
list[str] |
Rank-ordered known readings for this token; length 1 unless ambiguous |
lang |
str |
"yue" (Cantonese), "en" (English / Latin), "punct" (punctuation) |
confidence |
str |
See above |
source |
str |
Which layer produced candidate_readings[0] — see above |
candidate_readings[0] always equals the reading convert()/convert_detailed()
commits to for that token. A list of length 1 means the bundled data has no
known alternate reading for that exact token (this is the common case — most
words and characters are unambiguous). Ambiguity is only reported at the
granularity the bundled dictionaries track it: a whole multi-char word, or a
single character. A user_dict override (see above) always collapses to a
single candidate — an override is a final decision, not ambiguity to report.
p.convert_candidates("正經")
# → [("正經", ["zing3 ging1", "zing1 ging1"], "yue", "tied", "tojyutping_tiebreak")]
p.convert_candidates("香港")
# → [("香港", ["hoeng1 gong2"], "yue", "certain", "rime")] (no known ambiguity)
p.convert_candidates("行")
# → [("行", ["haang4", "hang4", "hong4", ...], "yue", "ranked", "tojyutping")]
p2 = Pipeline(user_dict={"正經": "zing1 ging1"})
p2.convert_candidates("正經")
# → [("正經", ["zing1 ging1"], "yue", "certain", "user_dict")] (override collapses ambiguity)
Known limitation: ambiguity is not surfaced across an out-of-vocabulary
multi-char token's individual characters — such a token falls back to
convert_detailed()'s single resolved reading (tagged "char_fallback"). In
practice this case cannot actually be reached through convert_candidates():
the segmenter only ever emits a multi-char token when it's an exact
word_dict/user_dict hit, so every multi-char token already has a definite
reading by construction.
convert_candidates_batch(texts: list[str]) -> list[list[tuple[str, list[str], str, str, str]]]
Rayon-parallel batch sibling of convert_candidates() — same per-text output
shape, one list per input text:
p.convert_candidates_batch(["正經", "香港銀行"])
# → [
# [("正經", ["zing3 ging1", "zing1 ging1"], "yue", "tied", "tojyutping_tiebreak")],
# [("香港", ["hoeng1 gong2"], "yue", "certain", "rime"),
# ("銀行", ["ngan4 hong4"], "yue", "certain", "tojyutping")],
# ]
Accuracy
Verified examples
| Input | Output | Notes |
|---|---|---|
你好嘅 |
nei5 hou2 ge3 |
Oral particle 嘅 from hand-curated list |
香港 |
hoeng1 gong2 |
Word-level dict lookup |
銀行 |
ngan4 hong4 |
Polyphone resolved by word context (not haang4) |
唔 |
m4 |
Cantonese negation particle |
喺 |
hai2 |
Locative particle |
2026年 |
ji6 ling4 ji6 luk6 nin4 |
Year normalizer |
6月13日 |
luk6 jyut6 sap6 saam1 jat6 |
Date normalizer |
50% |
baak3 fan6 zi1 ng5 sap6 |
Percentage normalizer |
HK$100 |
jat1 baak3 jyun4 |
Currency normalizer |
USD100 |
jat1 baak3 mei5 jyun4 |
Currency code normalizer |
¥500 |
ng5 baak3 jat6 jyun4 |
Currency symbol normalizer (¥ → 日圓) |
120km/h |
jat1 baak3 ji6 sap6 gung1 lei5 mui5 siu2 si4 |
Unit normalizer |
36.5°C |
saam1 sap6 luk6 dim2 ng5 sip3 si6 dou6 |
Decimal + unit normalizer |
hello |
hello |
Latin passthrough — not in Cantonese phoneme space |
send |
send |
Latin passthrough — English token in HK code-switching |
佢send咗email俾我 |
keoi5 send zo2 email bei2 ngo5 |
Full code-switch sentence |
Known limitations
- Residual polyphones: Word-boundary segmentation resolves approximately 85% of polyphone cases. Single-character polyphones that cannot be disambiguated by context (e.g. 好 as
hou2greeting vs.hou3adverb) fall back to the most-frequent reading in the dictionary. - 借音字 (phonetic-loan miswritings): a variant character borrowed purely for its sound (e.g.
訓in訓覺, standing in for瞓) falls back to the variant character's own native reading unless the exact word is listed indata/variant_words.tsv. This is a curated, growing seed list (seeCONTRIBUTING.md), not exhaustive — the set of such miswritings is open-ended and new ones surface over time. - Fraction
十分之: Fractions with denominator 十 (e.g.1/10) outputfan1instead offan6because十分之is also a common adverb (十分之好 = "extremely good") — the adverb entry in rime-cantonese takes longest-match priority. Other denominators (1/2, 1/3, 3/4, 1/12 …) produce the correctfan6reading. - Tone sandhi (變調): Citation tones only — tone sandhi is deferred to a future release.
- No neural polyphone tier: The current segmentation-based approach covers most cases. A BERT-based polyphone layer (trainable on HKCanCor CC-BY) is on the roadmap but not included in v1.
Comparison with other tools
| Tool | Implementation | English code-switch | License | Notes |
|---|---|---|---|---|
| Tool | Implementation | English code-switch | IPA output | License |
| --- | --- | --- | --- | --- |
| canto-hk-g2p | Rust + Python | Yes | Yes (CMU dict) | Apache-2.0 |
| ToJyutping (CanCLID) | Python / JS | No (letter-by-letter) | Yes | BSD-2 |
| PyCantonese | Python (Rust internal) | No | No | MIT |
| g2pW-Cantonese | Python (BERT) | No | No | mixed |
canto-hk-g2p is the only tool that handles English code-switching cleanly — standard in Hong Kong Cantonese (e.g. 佢 send 咗 email 俾我) — and the only one with a Cantonese text normalizer for numbers, dates, and currency. It now also provides full IPA output with English tokens converted via the CMU Pronouncing Dictionary.
Data sources
Bundled in the wheel (all permissive)
| Source | License | Usage |
|---|---|---|
rime-cantonese jyut6ping3.dict/.chars/.words |
CC-BY-4.0 | Primary lexicon (~100k entries); attribution required — see NOTICE |
Unihan kCantonese |
Unicode License v3 (MIT-equivalent) | Rare-character fallback (~20k chars) |
data/oral_hk.tsv (hand-curated) |
Apache-2.0 | ~60 HK colloquial characters (嘅 喺 咗 哋 噉 㗎 囉 喎 …) plus a few existing-entry tone fixes: 麻雀, 老豆, 雀仔 |
data/variant_words.tsv (hand-curated) |
Apache-2.0 | 借音字 phonetic-loan aliases (17 entries): 訓覺→瞓覺, 岩岩→啱啱, 果度→嗰度, 緊係→梗係, 吾該→唔該 … |
data/tone_sandhi_words.tsv (hand-curated) |
Apache-2.0 | 變調 (changed-tone) word-level corrections (13 entries), found via HKCanCor corpus-diff mining: 今年→gam1 nin2, 碟→dip2, 相→soeng2 … |
| CMU Pronouncing Dictionary | BSD-2-Clause | English → IPA via ARPAbet mapping (~134k entries); used by convert_ipa() |
Excluded (license-incompatible)
| Source | Reason |
|---|---|
rime-cantonese jyut6ping3.maps.dict.yaml |
ODbL v1.0 (share-alike — would infect data files) |
| CC-Canto | CC-BY-SA 3.0 (copyleft — same problem) |
| words.hk | Proprietary — no redistribution |
| CantoDict | Proprietary |
Build from source
Prerequisites
- Rust stable toolchain — install via rustup
- Python >= 3.8
- maturin >= 1.4
pip install maturin
Steps
# 1. Clone the repository
git clone https://github.com/typangaa/canto-hk-g2p.git
cd canto-hk-g2p
# 2. Fetch data sources (downloads ~20 MB: rime-cantonese, Unicode, CMU dict)
python3 scripts/fetch_data.py
# 3. Build binary pronunciation dictionaries
python3 scripts/build_dict.py
# 4. Build the Rust extension and install into the current environment
maturin develop --release
# Or build a wheel:
maturin build --release
pip install target/wheels/*.whl
Run tests
# Rust unit tests
cargo test
# Python integration tests (requires built extension + data/)
python3 -m pytest tests/ -v
All 159 Rust unit tests + 345 Python integration tests (504 total) should pass. The test suite covers basic G2P correctness, polyphone disambiguation, English passthrough, code-switching, punctuation normalisation, number/date/unit/currency/fraction/score normalization, batch processing, convert_detailed() / convert_detailed_batch() output structure, IPA conversion (all initials, finals, tones, syllabic consonants, CMU English lookup), user_dict runtime overrides, and the Candidates API (convert_candidates() / convert_candidates_batch()) including its confidence and source tags.
Contributing
Contributions are welcome. Please open an issue before starting significant work so we can align on direction. See CONTRIBUTING.md for coding guidelines, how to add entries to the hand-curated oral list, and the pull-request process.
A few areas where help is particularly valuable:
- Expanding
data/oral_hk.tsvwith additional colloquial characters - Expanding
data/variant_words.tsvwith additional 借音字 (phonetic-loan) aliases - Unit abbreviation expansion (
km,°C,kg→ Cantonese spoken form) - Improving number normalization edge cases
- Adding tone sandhi rules (future release)
- Packaging and PyPI release CI
License
Apache-2.0 — see LICENSE.
Attribution (CC-BY-4.0 requirement)
This library bundles data derived from rime-cantonese (© CanCLID contributors), licensed under Creative Commons Attribution 4.0 International. See NOTICE for full attribution details.
Related projects
- SEA-G2P — upstream inspiration (Rust G2P for Vietnamese)
- ToJyutping — de-facto Python/JS Cantonese G2P front-end
- PyCantonese — comprehensive Cantonese NLP toolkit
- rime-cantonese — primary lexicon data source
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file canto_hk_g2p-2.3.0.tar.gz.
File metadata
- Download URL: canto_hk_g2p-2.3.0.tar.gz
- Upload date:
- Size: 3.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96774a848702e2d3cdd5ccce63a31e9faa17394fbc559820437090f91cd10e56
|
|
| MD5 |
c5bc53d7fb9487a45bf7d842dfd7f3e1
|
|
| BLAKE2b-256 |
f09297bf6ed94625eb7fa422a606da416f396e57864150532191c9ddd57b468f
|
Provenance
The following attestation bundles were made for canto_hk_g2p-2.3.0.tar.gz:
Publisher:
release.yml on typangaa/canto-hk-g2p
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
canto_hk_g2p-2.3.0.tar.gz -
Subject digest:
96774a848702e2d3cdd5ccce63a31e9faa17394fbc559820437090f91cd10e56 - Sigstore transparency entry: 2211351912
- Sigstore integration time:
-
Permalink:
typangaa/canto-hk-g2p@d006b751a07c42b5c06eaf7e4ae035d2725c5b7e -
Branch / Tag:
refs/tags/v2.3.0 - Owner: https://github.com/typangaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d006b751a07c42b5c06eaf7e4ae035d2725c5b7e -
Trigger Event:
push
-
Statement type:
File details
Details for the file canto_hk_g2p-2.3.0-cp38-abi3-win_amd64.whl.
File metadata
- Download URL: canto_hk_g2p-2.3.0-cp38-abi3-win_amd64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.8+, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1538d6828fb4bd6bc7f81c35a26047635fef66bd6e99f6f8dc6b45e5f479ba50
|
|
| MD5 |
6f8129d600c5209b9b29d2b443548155
|
|
| BLAKE2b-256 |
78252883892d28a40da5a78283f1723d89d2d2d9bb1210ebe1b6a78779cc2f49
|
Provenance
The following attestation bundles were made for canto_hk_g2p-2.3.0-cp38-abi3-win_amd64.whl:
Publisher:
release.yml on typangaa/canto-hk-g2p
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
canto_hk_g2p-2.3.0-cp38-abi3-win_amd64.whl -
Subject digest:
1538d6828fb4bd6bc7f81c35a26047635fef66bd6e99f6f8dc6b45e5f479ba50 - Sigstore transparency entry: 2211352006
- Sigstore integration time:
-
Permalink:
typangaa/canto-hk-g2p@d006b751a07c42b5c06eaf7e4ae035d2725c5b7e -
Branch / Tag:
refs/tags/v2.3.0 - Owner: https://github.com/typangaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d006b751a07c42b5c06eaf7e4ae035d2725c5b7e -
Trigger Event:
push
-
Statement type:
File details
Details for the file canto_hk_g2p-2.3.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: canto_hk_g2p-2.3.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.8+, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cba664922ae2967f2319732f71872a76414fdd39ddbfb37a6c559ea862508a89
|
|
| MD5 |
0c03031826f78c8fc83e361a8a3e7c55
|
|
| BLAKE2b-256 |
908cec641a1ad194c76b4071bfcd7278ab05480b5694566f424b9e9ddd1946fa
|
Provenance
The following attestation bundles were made for canto_hk_g2p-2.3.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on typangaa/canto-hk-g2p
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
canto_hk_g2p-2.3.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
cba664922ae2967f2319732f71872a76414fdd39ddbfb37a6c559ea862508a89 - Sigstore transparency entry: 2211351981
- Sigstore integration time:
-
Permalink:
typangaa/canto-hk-g2p@d006b751a07c42b5c06eaf7e4ae035d2725c5b7e -
Branch / Tag:
refs/tags/v2.3.0 - Owner: https://github.com/typangaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d006b751a07c42b5c06eaf7e4ae035d2725c5b7e -
Trigger Event:
push
-
Statement type:
File details
Details for the file canto_hk_g2p-2.3.0-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: canto_hk_g2p-2.3.0-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.8+, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
577384450af2c5be3ed1e4846f8e08022f8183dc039579ee0e097dd5f904f186
|
|
| MD5 |
eed447691216aea7f547793b00a6f0fd
|
|
| BLAKE2b-256 |
aa8a925ba5c8ee3f4ef33e1a1da4cf64f8773aefa1350e845bd80988a8194da5
|
Provenance
The following attestation bundles were made for canto_hk_g2p-2.3.0-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on typangaa/canto-hk-g2p
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
canto_hk_g2p-2.3.0-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
577384450af2c5be3ed1e4846f8e08022f8183dc039579ee0e097dd5f904f186 - Sigstore transparency entry: 2211351956
- Sigstore integration time:
-
Permalink:
typangaa/canto-hk-g2p@d006b751a07c42b5c06eaf7e4ae035d2725c5b7e -
Branch / Tag:
refs/tags/v2.3.0 - Owner: https://github.com/typangaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d006b751a07c42b5c06eaf7e4ae035d2725c5b7e -
Trigger Event:
push
-
Statement type:
File details
Details for the file canto_hk_g2p-2.3.0-cp38-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: canto_hk_g2p-2.3.0-cp38-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.8+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7301e85bfe1f73d41d7656a3508c37154541990eeba6335c021427fcff7b8e07
|
|
| MD5 |
d10685abfaccb090fc2be7a3b201bb3d
|
|
| BLAKE2b-256 |
1d8643be67b853f0ae203a22cec42c39c9a37f99a0da7e39817f20a0967b49fa
|
Provenance
The following attestation bundles were made for canto_hk_g2p-2.3.0-cp38-abi3-macosx_11_0_arm64.whl:
Publisher:
release.yml on typangaa/canto-hk-g2p
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
canto_hk_g2p-2.3.0-cp38-abi3-macosx_11_0_arm64.whl -
Subject digest:
7301e85bfe1f73d41d7656a3508c37154541990eeba6335c021427fcff7b8e07 - Sigstore transparency entry: 2211351934
- Sigstore integration time:
-
Permalink:
typangaa/canto-hk-g2p@d006b751a07c42b5c06eaf7e4ae035d2725c5b7e -
Branch / Tag:
refs/tags/v2.3.0 - Owner: https://github.com/typangaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d006b751a07c42b5c06eaf7e4ae035d2725c5b7e -
Trigger Event:
push
-
Statement type:
File details
Details for the file canto_hk_g2p-2.3.0-cp38-abi3-macosx_10_12_x86_64.whl.
File metadata
- Download URL: canto_hk_g2p-2.3.0-cp38-abi3-macosx_10_12_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.8+, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c481cac8f2b87fce04767dcce9b2dc1203c35fa377bc81ee3b146477f8d6a866
|
|
| MD5 |
ecf01b059d77e6a21518fe735365bc25
|
|
| BLAKE2b-256 |
2cc4f5741329b0f0ebcf8b3d19e56f52120ea230a9a7005a655dad5b20463d6e
|
Provenance
The following attestation bundles were made for canto_hk_g2p-2.3.0-cp38-abi3-macosx_10_12_x86_64.whl:
Publisher:
release.yml on typangaa/canto-hk-g2p
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
canto_hk_g2p-2.3.0-cp38-abi3-macosx_10_12_x86_64.whl -
Subject digest:
c481cac8f2b87fce04767dcce9b2dc1203c35fa377bc81ee3b146477f8d6a866 - Sigstore transparency entry: 2211352032
- Sigstore integration time:
-
Permalink:
typangaa/canto-hk-g2p@d006b751a07c42b5c06eaf7e4ae035d2725c5b7e -
Branch / Tag:
refs/tags/v2.3.0 - Owner: https://github.com/typangaa
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d006b751a07c42b5c06eaf7e4ae035d2725c5b7e -
Trigger Event:
push
-
Statement type: