scriptconv 0.0.2a2__tar.gz → 0.0.3a1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/PKG-INFO +18 -9
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/README.md +15 -6
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/pyproject.toml +6 -2
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv/version.py +2 -2
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv.egg-info/PKG-INFO +18 -9
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/LICENSE +0 -0
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/requirements.txt +0 -0
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv/__init__.py +0 -0
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv/__main__.py +0 -0
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv/notation.py +0 -0
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv/py.typed +0 -0
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv/scripts.py +0 -0
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv/translit.py +0 -0
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv.egg-info/SOURCES.txt +0 -0
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv.egg-info/dependency_links.txt +0 -0
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv.egg-info/requires.txt +0 -0
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/scriptconv.egg-info/top_level.txt +0 -0
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/setup.cfg +0 -0
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/tests/test_cli.py +0 -0
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/tests/test_examples.py +0 -0
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/tests/test_notation.py +0 -0
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/tests/test_scripts.py +0 -0
- {scriptconv-0.0.2a2 → scriptconv-0.0.3a1}/tests/test_translit.py +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: scriptconv
|
|
3
|
-
Version: 0.0.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.0.3a1
|
|
4
|
+
Summary: Zero-dependency script & phoneme-notation core — ISO-15924 detection & metadata, IPA↔ARPABET/X-SAMPA/Lexique/Kirshenbaum/Cotovía/RFE, Buckwalter↔Arabic, Hangul→jamo, kana
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://github.com/TigreGotico/scriptconv
|
|
7
7
|
Project-URL: Issues, https://github.com/TigreGotico/scriptconv/issues
|
|
8
|
-
Keywords: ipa,arpabet,x-sampa,lexique,buckwalter,hangul,script,iso15924,tts,g2p
|
|
8
|
+
Keywords: ipa,arpabet,x-sampa,kirshenbaum,cotovia,rfe,lexique,buckwalter,hangul,jamo,kana,transliteration,notation,phoneme,phonetic-alphabet,script,iso15924,unicode,tts,g2p
|
|
9
9
|
Classifier: Development Status :: 3 - Alpha
|
|
10
10
|
Classifier: Intended Audience :: Developers
|
|
11
11
|
Classifier: Intended Audience :: Science/Research
|
|
@@ -31,12 +31,21 @@ Dynamic: license-file
|
|
|
31
31
|
[](https://github.com/TigreGotico/scriptconv/actions/workflows/build-tests.yml)
|
|
32
32
|
[](https://pypi.org/project/scriptconv/)
|
|
33
33
|
|
|
34
|
-
**scriptconv** is a zero-dependency Python library for written-script
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
34
|
+
**scriptconv** is a zero-dependency Python library for written-script and
|
|
35
|
+
phoneme-notation operations:
|
|
36
|
+
|
|
37
|
+
- **Script identification & metadata** — ISO-15924 detection, character-range
|
|
38
|
+
lookup, typological `script_type`, base direction, mixed-script segmentation
|
|
39
|
+
(`script_runs`), and language ↔ script mapping.
|
|
40
|
+
- **Phoneme-notation transcoding** — IPA ↔ ARPABET, X-SAMPA, Lexique,
|
|
41
|
+
Kirshenbaum, Cotovía and RFE, routed through IPA, with queryable per-notation
|
|
42
|
+
fidelity metadata (`NOTATION_INFO`) and a `looks_like_ipa` detector.
|
|
43
|
+
- **Script transliteration & decomposition** — Buckwalter ↔ Arabic script,
|
|
44
|
+
Hangul → jamo (compatibility or conjoining), Hiragana ↔ Katakana.
|
|
45
|
+
|
|
46
|
+
Every conversion is a pure data table or arithmetic operation — **no
|
|
47
|
+
phonemization**, no linguistic rules, no external files, and no runtime
|
|
48
|
+
dependencies beyond the Python standard library.
|
|
40
49
|
|
|
41
50
|
Transcoding is reversible where the target inventory permits — see
|
|
42
51
|
[Fidelity guarantees](#fidelity-guarantees) for the exact per-notation guarantees.
|
|
@@ -4,12 +4,21 @@
|
|
|
4
4
|
[](https://github.com/TigreGotico/scriptconv/actions/workflows/build-tests.yml)
|
|
5
5
|
[](https://pypi.org/project/scriptconv/)
|
|
6
6
|
|
|
7
|
-
**scriptconv** is a zero-dependency Python library for written-script
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
7
|
+
**scriptconv** is a zero-dependency Python library for written-script and
|
|
8
|
+
phoneme-notation operations:
|
|
9
|
+
|
|
10
|
+
- **Script identification & metadata** — ISO-15924 detection, character-range
|
|
11
|
+
lookup, typological `script_type`, base direction, mixed-script segmentation
|
|
12
|
+
(`script_runs`), and language ↔ script mapping.
|
|
13
|
+
- **Phoneme-notation transcoding** — IPA ↔ ARPABET, X-SAMPA, Lexique,
|
|
14
|
+
Kirshenbaum, Cotovía and RFE, routed through IPA, with queryable per-notation
|
|
15
|
+
fidelity metadata (`NOTATION_INFO`) and a `looks_like_ipa` detector.
|
|
16
|
+
- **Script transliteration & decomposition** — Buckwalter ↔ Arabic script,
|
|
17
|
+
Hangul → jamo (compatibility or conjoining), Hiragana ↔ Katakana.
|
|
18
|
+
|
|
19
|
+
Every conversion is a pure data table or arithmetic operation — **no
|
|
20
|
+
phonemization**, no linguistic rules, no external files, and no runtime
|
|
21
|
+
dependencies beyond the Python standard library.
|
|
13
22
|
|
|
14
23
|
Transcoding is reversible where the target inventory permits — see
|
|
15
24
|
[Fidelity guarantees](#fidelity-guarantees) for the exact per-notation guarantees.
|
|
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "scriptconv"
|
|
7
7
|
dynamic = ["version", "dependencies"]
|
|
8
|
-
description = "
|
|
8
|
+
description = "Zero-dependency script & phoneme-notation core — ISO-15924 detection & metadata, IPA↔ARPABET/X-SAMPA/Lexique/Kirshenbaum/Cotovía/RFE, Buckwalter↔Arabic, Hangul→jamo, kana"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "Apache-2.0"}
|
|
11
11
|
requires-python = ">=3.10"
|
|
@@ -22,7 +22,11 @@ classifiers = [
|
|
|
22
22
|
"License :: OSI Approved :: Apache Software License",
|
|
23
23
|
"Operating System :: OS Independent",
|
|
24
24
|
]
|
|
25
|
-
keywords = [
|
|
25
|
+
keywords = [
|
|
26
|
+
"ipa", "arpabet", "x-sampa", "kirshenbaum", "cotovia", "rfe", "lexique",
|
|
27
|
+
"buckwalter", "hangul", "jamo", "kana", "transliteration", "notation",
|
|
28
|
+
"phoneme", "phonetic-alphabet", "script", "iso15924", "unicode", "tts", "g2p",
|
|
29
|
+
]
|
|
26
30
|
|
|
27
31
|
[tool.setuptools.dynamic]
|
|
28
32
|
version = {attr = "scriptconv.version.VERSION_STR"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: scriptconv
|
|
3
|
-
Version: 0.0.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.0.3a1
|
|
4
|
+
Summary: Zero-dependency script & phoneme-notation core — ISO-15924 detection & metadata, IPA↔ARPABET/X-SAMPA/Lexique/Kirshenbaum/Cotovía/RFE, Buckwalter↔Arabic, Hangul→jamo, kana
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://github.com/TigreGotico/scriptconv
|
|
7
7
|
Project-URL: Issues, https://github.com/TigreGotico/scriptconv/issues
|
|
8
|
-
Keywords: ipa,arpabet,x-sampa,lexique,buckwalter,hangul,script,iso15924,tts,g2p
|
|
8
|
+
Keywords: ipa,arpabet,x-sampa,kirshenbaum,cotovia,rfe,lexique,buckwalter,hangul,jamo,kana,transliteration,notation,phoneme,phonetic-alphabet,script,iso15924,unicode,tts,g2p
|
|
9
9
|
Classifier: Development Status :: 3 - Alpha
|
|
10
10
|
Classifier: Intended Audience :: Developers
|
|
11
11
|
Classifier: Intended Audience :: Science/Research
|
|
@@ -31,12 +31,21 @@ Dynamic: license-file
|
|
|
31
31
|
[](https://github.com/TigreGotico/scriptconv/actions/workflows/build-tests.yml)
|
|
32
32
|
[](https://pypi.org/project/scriptconv/)
|
|
33
33
|
|
|
34
|
-
**scriptconv** is a zero-dependency Python library for written-script
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
34
|
+
**scriptconv** is a zero-dependency Python library for written-script and
|
|
35
|
+
phoneme-notation operations:
|
|
36
|
+
|
|
37
|
+
- **Script identification & metadata** — ISO-15924 detection, character-range
|
|
38
|
+
lookup, typological `script_type`, base direction, mixed-script segmentation
|
|
39
|
+
(`script_runs`), and language ↔ script mapping.
|
|
40
|
+
- **Phoneme-notation transcoding** — IPA ↔ ARPABET, X-SAMPA, Lexique,
|
|
41
|
+
Kirshenbaum, Cotovía and RFE, routed through IPA, with queryable per-notation
|
|
42
|
+
fidelity metadata (`NOTATION_INFO`) and a `looks_like_ipa` detector.
|
|
43
|
+
- **Script transliteration & decomposition** — Buckwalter ↔ Arabic script,
|
|
44
|
+
Hangul → jamo (compatibility or conjoining), Hiragana ↔ Katakana.
|
|
45
|
+
|
|
46
|
+
Every conversion is a pure data table or arithmetic operation — **no
|
|
47
|
+
phonemization**, no linguistic rules, no external files, and no runtime
|
|
48
|
+
dependencies beyond the Python standard library.
|
|
40
49
|
|
|
41
50
|
Transcoding is reversible where the target inventory permits — see
|
|
42
51
|
[Fidelity guarantees](#fidelity-guarantees) for the exact per-notation guarantees.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|