lokit-python 0.1.0__cp313-cp313-win32.whl

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.
Files changed (97) hide show
  1. 821d8b73c2a02cb7980f__mypyc.cp313-win32.pyd +0 -0
  2. lokit/__init__.cp313-win32.pyd +0 -0
  3. lokit/__init__.py +128 -0
  4. lokit/core/__init__.cp313-win32.pyd +0 -0
  5. lokit/core/__init__.py +0 -0
  6. lokit/core/logger.cp313-win32.pyd +0 -0
  7. lokit/core/logger.py +20 -0
  8. lokit/data/__init__.cp313-win32.pyd +0 -0
  9. lokit/data/__init__.py +0 -0
  10. lokit/data/lang_codes.cp313-win32.pyd +0 -0
  11. lokit/data/lang_codes.py +455 -0
  12. lokit/data/structure.cp313-win32.pyd +0 -0
  13. lokit/data/structure.py +118 -0
  14. lokit/data/tag_types.cp313-win32.pyd +0 -0
  15. lokit/data/tag_types.py +78 -0
  16. lokit/exporters/__init__.cp313-win32.pyd +0 -0
  17. lokit/exporters/__init__.py +34 -0
  18. lokit/exporters/csv.cp313-win32.pyd +0 -0
  19. lokit/exporters/csv.py +32 -0
  20. lokit/exporters/html.cp313-win32.pyd +0 -0
  21. lokit/exporters/html.py +217 -0
  22. lokit/exporters/idml.cp313-win32.pyd +0 -0
  23. lokit/exporters/idml.py +178 -0
  24. lokit/exporters/json_i18n.cp313-win32.pyd +0 -0
  25. lokit/exporters/json_i18n.py +47 -0
  26. lokit/exporters/po.cp313-win32.pyd +0 -0
  27. lokit/exporters/po.py +162 -0
  28. lokit/exporters/tmx.cp313-win32.pyd +0 -0
  29. lokit/exporters/tmx.py +247 -0
  30. lokit/exporters/xliff.cp313-win32.pyd +0 -0
  31. lokit/exporters/xliff.py +152 -0
  32. lokit/exporters/xlsx.cp313-win32.pyd +0 -0
  33. lokit/exporters/xlsx.py +39 -0
  34. lokit/format_detection.cp313-win32.pyd +0 -0
  35. lokit/format_detection.py +115 -0
  36. lokit/importers.py +321 -0
  37. lokit/io/__init__.cp313-win32.pyd +0 -0
  38. lokit/io/__init__.py +3 -0
  39. lokit/io/json.cp313-win32.pyd +0 -0
  40. lokit/io/json.py +194 -0
  41. lokit/logic.cp313-win32.pyd +0 -0
  42. lokit/logic.py +324 -0
  43. lokit/parsers/__init__.cp313-win32.pyd +0 -0
  44. lokit/parsers/__init__.py +1 -0
  45. lokit/parsers/csv/__init__.cp313-win32.pyd +0 -0
  46. lokit/parsers/csv/__init__.py +1 -0
  47. lokit/parsers/csv/extraction.cp313-win32.pyd +0 -0
  48. lokit/parsers/csv/extraction.py +164 -0
  49. lokit/parsers/html/__init__.cp313-win32.pyd +0 -0
  50. lokit/parsers/html/__init__.py +3 -0
  51. lokit/parsers/html/extraction.cp313-win32.pyd +0 -0
  52. lokit/parsers/html/extraction.py +365 -0
  53. lokit/parsers/idml/__init__.cp313-win32.pyd +0 -0
  54. lokit/parsers/idml/__init__.py +3 -0
  55. lokit/parsers/idml/extraction.cp313-win32.pyd +0 -0
  56. lokit/parsers/idml/extraction.py +264 -0
  57. lokit/parsers/json_i18n/__init__.cp313-win32.pyd +0 -0
  58. lokit/parsers/json_i18n/__init__.py +3 -0
  59. lokit/parsers/json_i18n/extraction.cp313-win32.pyd +0 -0
  60. lokit/parsers/json_i18n/extraction.py +163 -0
  61. lokit/parsers/po/__init__.cp313-win32.pyd +0 -0
  62. lokit/parsers/po/__init__.py +3 -0
  63. lokit/parsers/po/extraction.cp313-win32.pyd +0 -0
  64. lokit/parsers/po/extraction.py +236 -0
  65. lokit/parsers/tmx/__init__.cp313-win32.pyd +0 -0
  66. lokit/parsers/tmx/__init__.py +0 -0
  67. lokit/parsers/tmx/base.cp313-win32.pyd +0 -0
  68. lokit/parsers/tmx/base.py +145 -0
  69. lokit/parsers/tmx/extraction.cp313-win32.pyd +0 -0
  70. lokit/parsers/tmx/extraction.py +170 -0
  71. lokit/parsers/tmx/header.cp313-win32.pyd +0 -0
  72. lokit/parsers/tmx/header.py +55 -0
  73. lokit/parsers/tmx/helpers.cp313-win32.pyd +0 -0
  74. lokit/parsers/tmx/helpers.py +9 -0
  75. lokit/parsers/tmx/models.cp313-win32.pyd +0 -0
  76. lokit/parsers/tmx/models.py +10 -0
  77. lokit/parsers/tmx/props.cp313-win32.pyd +0 -0
  78. lokit/parsers/tmx/props.py +201 -0
  79. lokit/parsers/tmx/tags.cp313-win32.pyd +0 -0
  80. lokit/parsers/tmx/tags.py +59 -0
  81. lokit/parsers/tmx/xml_utils.cp313-win32.pyd +0 -0
  82. lokit/parsers/tmx/xml_utils.py +46 -0
  83. lokit/parsers/xliff/__init__.cp313-win32.pyd +0 -0
  84. lokit/parsers/xliff/__init__.py +3 -0
  85. lokit/parsers/xliff/extraction.cp313-win32.pyd +0 -0
  86. lokit/parsers/xliff/extraction.py +229 -0
  87. lokit/parsers/xliff/tags.cp313-win32.pyd +0 -0
  88. lokit/parsers/xliff/tags.py +128 -0
  89. lokit/parsers/xlsx/__init__.cp313-win32.pyd +0 -0
  90. lokit/parsers/xlsx/__init__.py +1 -0
  91. lokit/parsers/xlsx/extraction.cp313-win32.pyd +0 -0
  92. lokit/parsers/xlsx/extraction.py +198 -0
  93. lokit/py.typed +1 -0
  94. lokit_python-0.1.0.dist-info/METADATA +149 -0
  95. lokit_python-0.1.0.dist-info/RECORD +97 -0
  96. lokit_python-0.1.0.dist-info/WHEEL +5 -0
  97. lokit_python-0.1.0.dist-info/top_level.txt +2 -0
@@ -0,0 +1,149 @@
1
+ Metadata-Version: 2.4
2
+ Name: lokit-python
3
+ Version: 0.1.0
4
+ Summary: Add your description here
5
+ Requires-Python: >=3.12
6
+ Description-Content-Type: text/markdown
7
+ Requires-Dist: lxml>=6.1.1
8
+ Requires-Dist: openpyxl>=3.1.0
9
+ Requires-Dist: polib>=1.2.0
10
+
11
+ # lokit
12
+
13
+ > [!WARNING]
14
+ > **Beta Release:** lokit is currently in Beta. The API is volatile and subject to rapid, breaking changes prior to the official V1 release.
15
+
16
+ lokit is a high-performance, strictly type-safe, and highly memory-efficient localization toolkit for Python.
17
+ Supports Python 3.12+.
18
+
19
+ Unlike legacy tools that wrap around XML DOM element trees in-memory, lokit represents a shift away from XML-based localization interchange formats towards native language parsing. It ingests localization formats (TMX, XLIFF, PO, XLSX, CSV, JSON, HTML, IDML) and compiles them into a strict, unified structural data model. This enables not just parsing, but robust data manipulation, semantic extraction, and advanced translation memory features out-of-the-box. Lokit focuses on streaming and asynchronous processing rather than synchronous events using in-memory files.
20
+
21
+ This format type can be easily converted to JSON for interchange with other systems. I've made parsing and data transfers as native as possible by capturing all elements of traditional interchange formats in a common format structure. This allows for much better compatibility, especially in terms of segment matching and leveraging as it uses flattened strings as standard. Tags are preserved but as a common format, meaning the structure parsed from XLIFF will be the same as the structure parsed from HTML.
22
+
23
+ These legacy file formats have supported vendor-lock in for many year, making it difficult for any client to move to another system. Seeing that this is a major issue across the domain, something new is needed where vendors do not use hidden, legacy technology to lock in their clients. Localization deserves innovation.
24
+
25
+ Note: SDKs in other languages are coming soon.
26
+
27
+ ## Core Features
28
+
29
+ lokit provides a comprehensive suite of tools for managing localization data:
30
+
31
+ * **Native Structural Modeling:** Converts disjointed interchange formats into a strict, unified Python Data class, ensuring complete type safety across your entire localization pipeline.
32
+ * **Advanced Matching Engine:** Provides Exact Matching, Fuzzy Matching (via SequenceMatcher), and In-Context Exact (ICE) Matching leveraging previous and next segment context, as well as inline tag signatures.
33
+ * **Deep Sub-segment Extraction:** Automatically parses and isolates inline tags, properties, and formatting markers, allowing for safe manipulation of text without corrupting code.
34
+ * **Semantic Querying:** Easily traverse and filter translation units using complex predicates, exact ID lookups, or deep nested JSON path querying (`where()`).
35
+ * **Plural Support:** Native extraction and structuring of pluralized translation units.
36
+ * **Universal Format Conversion:** Instantly import and export between any supported format (e.g., TMX to JSON, HTML to XLIFF) with zero data loss.
37
+ * **Synchronous and Asynchronous Streaming:** Process massive enterprise files natively using Python async generators to keep memory overhead to an absolute minimum.
38
+
39
+ ## Parsing Performance vs Translate-Toolkit
40
+
41
+ When dealing with enterprise-scale localization environments, parsing performance and memory efficiency are paramount. lokit is designed to be significantly leaner and faster than the industry standard.
42
+
43
+ In a stress-test benchmark on a **612 MB TMX** file containing **557,058 segments**, parsing to XLIFF and back into TMX over 3 consecutive iterations, lokit yielded the following comparative averages:
44
+
45
+ | Library | Avg Duration (s) | Peak Memory (MB) | Memory Efficiency |
46
+ |---------|------------------|------------------|-------------------|
47
+ | **lokit (async)** | **57.5s** | **213.8 MB** | **~10.6x Less RAM** |
48
+ | **translate-toolkit** | 60.0s | 2,275.7 MB | ~2.3 GB |
49
+
50
+ Because translate-toolkit loads whole files into string buffers and C-level DOM trees synchronously, its memory spikes to over 2.2 Gigabytes. lokit leverages generator-based async streaming, allowing it to complete the exact same workload using **10.6x less RAM**, while operating slightly faster overall.
51
+
52
+ This memory safety allows for parallel processing of events, making it suitable for large-scale localization workflows and backend systems.
53
+
54
+ ## SDK Usage Reference
55
+
56
+ Lokit operates around a central `BaseStructure` dataclass model, which standardizes localization units and segments. This instructs better standardization and branching in a more language native way compared to XML based file formats. Parsing SDKs are added for both extraction and export tasks for localization interchange formats along with common file types.
57
+
58
+ ### Installation
59
+
60
+ Install lokit via pip:
61
+
62
+ ```bash
63
+ pip install lokit-python
64
+ ```
65
+
66
+ ### Basic Parsing and Conversion
67
+
68
+ Converting files synchronously is straightforward using the modular importers and exporters APIs.
69
+
70
+ ```python
71
+ from lokit.importers import import_tmx
72
+ from lokit.exporters import export_xliff
73
+
74
+ # Parse a localization file into a BaseStructure
75
+ document = import_tmx("path/to/source.tmx")
76
+
77
+ print(f"Loaded {len(document.data)} units")
78
+ print(f"Source Locale: {document.source_locale}")
79
+ print(f"Target Locale: {document.target_locale}")
80
+
81
+ # Export the BaseStructure out to a new format
82
+ export_xliff(document, "path/to/target.xliff")
83
+ ```
84
+
85
+ ### Asynchronous Streaming for Massive Files
86
+
87
+ For files spanning hundreds of megabytes, parsing the entire DOM structure into memory is inefficient. Lokit supports stream-parsing natively.
88
+
89
+ ```python
90
+ import asyncio
91
+ from lokit.importers import import_tmx_async
92
+ from lokit.exporters.xliff import export_xliff_async
93
+ from lokit.data.structure import BaseStructure
94
+
95
+ async def process_large_file():
96
+ units = {}
97
+
98
+ # Stream the file in an asynchronous generator
99
+ async for unit_id, unit_data in import_tmx_async("massive_file.tmx"):
100
+ units[unit_id] = unit_data
101
+
102
+ # Reconstruct the document safely
103
+ doc = BaseStructure(
104
+ source_locale="en_US",
105
+ target_locale="de_DE",
106
+ data=units
107
+ )
108
+
109
+ # Export asynchronously
110
+ await export_xliff_async(doc, "massive_output.xliff")
111
+
112
+ asyncio.run(process_large_file())
113
+ ```
114
+
115
+ ### Advanced Querying and Matching
116
+
117
+ The `Lokit` logic wrapper provides access to the powerful matching engine and data manipulation features.
118
+
119
+ ```python
120
+ from lokit.logic import Lokit
121
+
122
+ # Wrap a parsed document or path in the Lokit logic engine
123
+ engine = Lokit.parse("path/to/source.xliff")
124
+
125
+ # Query specific nested data structures
126
+ button_units = engine.where("extensions.component", "checkout_button")
127
+
128
+ # Perform fuzzy matching against translation memory
129
+ results = engine.fuzzy_find("Complete your purchase", limit=5, threshold=0.75)
130
+ for match in results:
131
+ print(f"Match found: {match.unit_id} (Score: {match.score})")
132
+
133
+ # Perform strict In-Context Exact (ICE) matching
134
+ ice_match = engine.match(
135
+ source="Submit",
136
+ target_unit_id="submit_btn_1",
137
+ previous_source="Enter your email",
138
+ require_context=True
139
+ )
140
+ ```
141
+
142
+ ## Supported Formats
143
+ * TMX (Translation Memory eXchange)
144
+ * XLIFF (XML Localization Interchange File Format)
145
+ * PO/POT (Gettext Portable Object)
146
+ * XLSX / CSV (Spreadsheets)
147
+ * JSON (Key-Value nested localization trees)
148
+ * HTML (Hypertext Markup)
149
+ * IDML (InDesign Markup Language)
@@ -0,0 +1,97 @@
1
+ 821d8b73c2a02cb7980f__mypyc.cp313-win32.pyd,sha256=85Igt_mc99QTM_2HW5u7WorEIwFHcFu5BS82jylzdhU,1282048
2
+ lokit/__init__.cp313-win32.pyd,sha256=Bq49lZ3p8Eh6makzmb4URMD2o-WKQcIuispkrXZ-yHI,9216
3
+ lokit/__init__.py,sha256=YhZSX5QrEkFxaogw0N7eLf0TZMdJp97kBjTXGIPrK68,3043
4
+ lokit/format_detection.cp313-win32.pyd,sha256=ejQGDdKUKj7WvJp6tPno-tYPBdszS-UZKSWlxOoiKQo,9728
5
+ lokit/format_detection.py,sha256=CqoAQf8_V5iZtMzoY5W_nQmWLYo8Ko3wIlVTM8RlKJg,3775
6
+ lokit/importers.py,sha256=w3CrT2F0USyfRC0natLV27ksyrhGpkK8a3qM717rpvE,10485
7
+ lokit/logic.cp313-win32.pyd,sha256=wUnRh_sDU4LqK7k9pRijZkz3x1ndb426R2A4D6vynCw,9216
8
+ lokit/logic.py,sha256=Mj5cIE2Dkc9geAFmd6EFwMJy-OWj_XQB1TIGjd04lXk,11705
9
+ lokit/py.typed,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
10
+ lokit/core/__init__.cp313-win32.pyd,sha256=5dv6kn4ocUS1LWFTfNckFZSHHQgNpoo825A4BzRjsxA,9216
11
+ lokit/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
+ lokit/core/logger.cp313-win32.pyd,sha256=USDuMgu3LK_bFRV8_SXE_lRmxgEHRb0OQ3rLdaRXAP4,9728
13
+ lokit/core/logger.py,sha256=yjbitZCKBW25pewWZ83YChNnKj4duWD9JAGjRrvE_xk,580
14
+ lokit/data/__init__.cp313-win32.pyd,sha256=Jbp-xUZzLAa56QPEQiQRVhgAiXPJ5J1yIHTSlFX-rco,9216
15
+ lokit/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ lokit/data/lang_codes.cp313-win32.pyd,sha256=smbKmyP8QYsNB87RaKtOZTFjYlVEedgrPEZ6EsI-Dig,9728
17
+ lokit/data/lang_codes.py,sha256=BY0MhUKeAd-P9IeoEJNi-dkUEklJVaWpQxVq-iAFfO0,10259
18
+ lokit/data/structure.cp313-win32.pyd,sha256=7YwKSzBPKJAcSrBWX9bO2XO3hqXsi8FfmTfq-B7nxik,9728
19
+ lokit/data/structure.py,sha256=bEnSWe8whhfUcqt9qTf9LVF9z-KQrS2hHNLERyWXhH8,3105
20
+ lokit/data/tag_types.cp313-win32.pyd,sha256=rgZZPncCUP1rBN4_Kb7tmmb09_YUERSx2fD2kC3NFnY,9728
21
+ lokit/data/tag_types.py,sha256=sjEQdsTzpJuXX3snq2m4o9wQXiNCS_dU0dtwgMHGfEQ,2116
22
+ lokit/exporters/__init__.cp313-win32.pyd,sha256=kb7I8r1eZiA2vJjiP6EOkI3_BIG1gFFNv7vsLgechpg,9216
23
+ lokit/exporters/__init__.py,sha256=dpPkL_ODO0XhqxhuExjvvuuGolSgGG66WNS0gpVPpGI,1072
24
+ lokit/exporters/csv.cp313-win32.pyd,sha256=Y5R3U3fyQuGW1s6h7lx0OJv-DZup_qwyRXkaBarWg5w,9216
25
+ lokit/exporters/csv.py,sha256=2_E3956eX8nRTDEZue07JdQSoIVgMkHq5hfXJyCWJPE,1122
26
+ lokit/exporters/html.cp313-win32.pyd,sha256=7LMkdPK6rfSjvF5NgzZPRk-wTLO9Zpn1-PrIFCqkeNw,9728
27
+ lokit/exporters/html.py,sha256=Og23iToijlGNEy3IvM7DCKlKJT_enOlzTlNveb_6diw,6981
28
+ lokit/exporters/idml.cp313-win32.pyd,sha256=IvGABcI4OwV1SM_slCljaii071Y_8wIWQvU3Bb_1dBQ,9728
29
+ lokit/exporters/idml.py,sha256=QhscjqyhKvBEUUl1iqBIPF7dKNbfN17mmuQN9BV7qRg,5619
30
+ lokit/exporters/json_i18n.cp313-win32.pyd,sha256=6b-n4ZY66-7yZ5hV6lq3lXoYw4mCeqokhydA0UFlio0,9728
31
+ lokit/exporters/json_i18n.py,sha256=UC3Osu6_uJMR497RtQr5DbGPvOmwy7BlFyPlU9wOO0k,1303
32
+ lokit/exporters/po.cp313-win32.pyd,sha256=smSf4jgHk2Xh-lODP0iZzmHXHTiTgF9-zKnrQsfqzcQ,9216
33
+ lokit/exporters/po.py,sha256=Leg6mcJITba6HQGXLuCQUVKfVX702r8ROxtpGsXWocs,5003
34
+ lokit/exporters/tmx.cp313-win32.pyd,sha256=1XX1y8-dwd1brBTxfqPIz8tRPEyTUb0lNazKMnR-C9M,9216
35
+ lokit/exporters/tmx.py,sha256=42qmdn3YKf4y3a7o4gZVrAt52hqmx8IWOSR6qv4N4_s,8531
36
+ lokit/exporters/xliff.cp313-win32.pyd,sha256=5RJDGD6HI4azCeOtAk-OG5WkL6VWcKKoMzGJjlENtnw,9728
37
+ lokit/exporters/xliff.py,sha256=kBvRZfQC7vn9QGdAwe2YdpY1yA-icQljGOZTb9zKicc,5404
38
+ lokit/exporters/xlsx.cp313-win32.pyd,sha256=eOtwxqVCS2mBJHAZR8c5GqLVc7Ae7Z-d5_Z2swfvCI0,9728
39
+ lokit/exporters/xlsx.py,sha256=gGrrdf6zKUK9zsqPSKVRzUeX2U8m2Ej2ZrlCaQjnHrM,1059
40
+ lokit/io/__init__.cp313-win32.pyd,sha256=9JFkNSLdvG7GXaCJHma5sLXaqhaf5F_D1W0sHvQLKoY,9216
41
+ lokit/io/__init__.py,sha256=-hkm8PkCM216sFF7X8f8F5wxSheGQ9iIaVn5K553ZYU,124
42
+ lokit/io/json.cp313-win32.pyd,sha256=2UunT8kdJtAM95n5gDUu99t3Hb3CCcoRFn6XyR9GUHs,9216
43
+ lokit/io/json.py,sha256=kQKIB04lZ-b4CfL6xgYQ9hGfR6F5DIMiQ5DOSVkBMYA,6484
44
+ lokit/parsers/__init__.cp313-win32.pyd,sha256=9SLJlwgq4ljvFKYGc-66Ceuehwr_rn6o67EJjcuR4rc,9216
45
+ lokit/parsers/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
46
+ lokit/parsers/csv/__init__.cp313-win32.pyd,sha256=YmY6kS11Z1x1BjjBn4ZVdvulZ76Z5jOWU5NN8x-PnhM,9728
47
+ lokit/parsers/csv/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
48
+ lokit/parsers/csv/extraction.cp313-win32.pyd,sha256=B8uaiE4eqNhu7YLupYnPHBTAf2D_5Z160RboqJMUh9c,9728
49
+ lokit/parsers/csv/extraction.py,sha256=k5M9JZde9I8gkviDx9A2iHScbzw_05onPJz1YkkS8bM,5611
50
+ lokit/parsers/html/__init__.cp313-win32.pyd,sha256=Eol-tK_m-Pj6LQ9L68aiFiMXLZhM4HM8t-2tTI9tje8,9728
51
+ lokit/parsers/html/__init__.py,sha256=dqUcjn2YJzMlwuQJaB5qXLu1PJpv_uDNEOcIK2jKxI0,88
52
+ lokit/parsers/html/extraction.cp313-win32.pyd,sha256=UbjHeypx7XEtkCUk3g-4ui0fB570NiizExO6GCfRUPk,9728
53
+ lokit/parsers/html/extraction.py,sha256=G9UQLqJP8i9iKzjc890TFgj3mccU4oi-zVUjFkbntqI,12671
54
+ lokit/parsers/idml/__init__.cp313-win32.pyd,sha256=UNMHUiwxl6srpLjBKuZWiI_EBJcUzhwCJEMQSJxH0gc,9728
55
+ lokit/parsers/idml/__init__.py,sha256=RSQMEfdXJdmSH3MhtiwyrcojOzxxftvK1AgnhvFgB0Y,88
56
+ lokit/parsers/idml/extraction.cp313-win32.pyd,sha256=_2IqH-D7A2f0_x-pvRpUcod_uALaVTl_YmSwH9pGFH4,9728
57
+ lokit/parsers/idml/extraction.py,sha256=SR9dKkg9p0rJe35ySl8s7IBFTMua5IiJwm8UO2xvpAc,8764
58
+ lokit/parsers/json_i18n/__init__.cp313-win32.pyd,sha256=NndrIx0OWcBo6v-Z4idj590rGNkpN1XHq90cxqFILW4,9728
59
+ lokit/parsers/json_i18n/__init__.py,sha256=FVMKVux9FZGZ6SXquULU42GM71K5cFlpHoP4Dte2LV0,101
60
+ lokit/parsers/json_i18n/extraction.cp313-win32.pyd,sha256=4vjdvuook9MTpzB93V8svIVU8plx-ZbyjLecwguZ7Yw,9728
61
+ lokit/parsers/json_i18n/extraction.py,sha256=bgAZJmCwb6tmiWwW5TxhuvWFQUUYjhWxE1NkEQTXtg8,5663
62
+ lokit/parsers/po/__init__.cp313-win32.pyd,sha256=2xaSBOzTpaA4hUkLNAFH-IALXY6QAxFb0KZfgq0knGw,9728
63
+ lokit/parsers/po/__init__.py,sha256=M5hdXd5VgGLDSJt7s3BT2IYZmGVm0zbB_BnHLGcnPtQ,82
64
+ lokit/parsers/po/extraction.cp313-win32.pyd,sha256=fBnNY0acH5hz1wljKb1U_11aYKYWDPzt839hqKN0EAY,9728
65
+ lokit/parsers/po/extraction.py,sha256=gt43zg1kdjE_x8PDEbHs1Ksimfxhnmi7I6pho5dpHVQ,7787
66
+ lokit/parsers/tmx/__init__.cp313-win32.pyd,sha256=2E64yKGWaaTZ3MXqqE3ySJrkL8y2eN1YfaFRa15POJs,9728
67
+ lokit/parsers/tmx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
+ lokit/parsers/tmx/base.cp313-win32.pyd,sha256=K114_CpGI8veJNZWtC6rUmfj3r-y6lXX7OE8YXIhkdg,9728
69
+ lokit/parsers/tmx/base.py,sha256=XYLX9hnj_DSrOXZRsGFzR1UD6NqsYtdxx6dTjW6uNNc,5443
70
+ lokit/parsers/tmx/extraction.cp313-win32.pyd,sha256=dAoX0UA-6mzlpG1ecGh78nkQ71cc4iXf-Gu8NTWIxrU,9728
71
+ lokit/parsers/tmx/extraction.py,sha256=l-9Begd82OeN9xRB-KewVpY4fCWjlyISZl8kIEGdRws,5916
72
+ lokit/parsers/tmx/header.cp313-win32.pyd,sha256=uDSih_CsRtrB75-nGbVMGLhchz6DKyOvdpqJQqOWrgY,9728
73
+ lokit/parsers/tmx/header.py,sha256=8vwBGDHDZSkaAz4qIWrW8KErO8nmmyt7NEtIKXqmA-s,2261
74
+ lokit/parsers/tmx/helpers.cp313-win32.pyd,sha256=9vev1sYmw9dCjYM6GPU8sDOKBzXd8ncvej6vTtbdQ38,9728
75
+ lokit/parsers/tmx/helpers.py,sha256=UZRd0a99-mYOwYEMVkRVuFnrp1yC6vmTHuJE95d1HnI,241
76
+ lokit/parsers/tmx/models.cp313-win32.pyd,sha256=cQVELC--etoD82eZZDjgd65QgbNaNyKeMaQwV331O5w,9728
77
+ lokit/parsers/tmx/models.py,sha256=h28n0JQtg-QwG9UswZVn3qwyFK1BKmnYUlk8V9DQjx8,175
78
+ lokit/parsers/tmx/props.cp313-win32.pyd,sha256=Yf270TwEpercZpw_ueG7PFTHTgrPGADuo5s3yVbJy-8,9728
79
+ lokit/parsers/tmx/props.py,sha256=OOVzZ0-A9uC8kH7lHuedDMNdiXcLJIdACu1Wa-lZqY4,7666
80
+ lokit/parsers/tmx/tags.cp313-win32.pyd,sha256=IQZgnXacTkiFJNaBPAmAhE0Y8_WuP--5iAvchzuGatg,9728
81
+ lokit/parsers/tmx/tags.py,sha256=cRen1mRokpL-qlb8A2zyNPm4f-nbNfHq6IuUfCB3IwA,1990
82
+ lokit/parsers/tmx/xml_utils.cp313-win32.pyd,sha256=ubsTQP2Q8fkq5-oSh5r3DmFC9CKVS9aSk2Qs8YexGmk,9728
83
+ lokit/parsers/tmx/xml_utils.py,sha256=iCpC8-giF_tzn6XzrbEgVue0cDxGWu2o5A-0V-_cw0g,1142
84
+ lokit/parsers/xliff/__init__.cp313-win32.pyd,sha256=ThEA0YZR5dvQ7BV3MqiJm_5meypHGYFMp5lQtz_w3yc,9728
85
+ lokit/parsers/xliff/__init__.py,sha256=IhYgtPIzVImD9PtPUR36TqD99riPoU0qFmy7ES08-lM,91
86
+ lokit/parsers/xliff/extraction.cp313-win32.pyd,sha256=m0FDD1MubAoMQPDujHjsPexbWwKLfBPhf-fDMUboGao,9728
87
+ lokit/parsers/xliff/extraction.py,sha256=bo0XHuVlq8GZSxj6On87ludih6uEhex4lzyZkSplpmk,8493
88
+ lokit/parsers/xliff/tags.cp313-win32.pyd,sha256=8BfnmAXpt068uljAMohvETkckID3HM1Tx4DwaZh_AFI,9728
89
+ lokit/parsers/xliff/tags.py,sha256=gKkcqcjOcLi3OiGOVOGyQvYKDORAkcW-u5cvhyxNkxo,4153
90
+ lokit/parsers/xlsx/__init__.cp313-win32.pyd,sha256=siZKUQcAXt0idx8NlmTyikYI-XFYztbHvvd48Ex-hXk,9728
91
+ lokit/parsers/xlsx/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
92
+ lokit/parsers/xlsx/extraction.cp313-win32.pyd,sha256=X7lIB2GtkknFTl6mmwDypDFIDjhd7EIdpHYxQHigE4c,9728
93
+ lokit/parsers/xlsx/extraction.py,sha256=rZZJmyu-vmpqfL5DDQJeIiRibh-Ga-L9SGpbk8Uj1tk,6582
94
+ lokit_python-0.1.0.dist-info/METADATA,sha256=HkbOnQeGAd8SQaM0snxdTAFw4AIQ4fOCIKSm-upA1KM,7541
95
+ lokit_python-0.1.0.dist-info/WHEEL,sha256=M_m4JyYnFcZb_fD3OEPeEyTjELqcTdRV9QW9CVEoHz4,97
96
+ lokit_python-0.1.0.dist-info/top_level.txt,sha256=4FQaCRBDbt-jLGbmkq51WX9Gesp7Y_RXcWontgzRQrE,34
97
+ lokit_python-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-win32
5
+
@@ -0,0 +1,2 @@
1
+ 821d8b73c2a02cb7980f__mypyc
2
+ lokit