hexatess-code 0.3.1__tar.gz → 0.4.1__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.

Potentially problematic release.


This version of hexatess-code might be problematic. Click here for more details.

Files changed (33) hide show
  1. {hexatess_code-0.3.1/src/hexatess_code.egg-info → hexatess_code-0.4.1}/PKG-INFO +10 -2
  2. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/README.md +9 -1
  3. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/pyproject.toml +1 -1
  4. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/src/hexatess/__init__.py +1 -1
  5. {hexatess_code-0.3.1 → hexatess_code-0.4.1/src/hexatess_code.egg-info}/PKG-INFO +10 -2
  6. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/LICENSE +0 -0
  7. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/setup.cfg +0 -0
  8. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/src/hexatess/camera.py +0 -0
  9. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/src/hexatess/cli.py +0 -0
  10. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/src/hexatess/decoder.py +0 -0
  11. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/src/hexatess/encoder.py +0 -0
  12. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/src/hexatess/galois.py +0 -0
  13. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/src/hexatess/geometry.py +0 -0
  14. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/src/hexatess/header.py +0 -0
  15. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/src/hexatess/masks.py +0 -0
  16. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/src/hexatess/reedsolomon.py +0 -0
  17. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/src/hexatess/render.py +0 -0
  18. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/src/hexatess/resilience.py +0 -0
  19. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/src/hexatess_code.egg-info/SOURCES.txt +0 -0
  20. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/src/hexatess_code.egg-info/dependency_links.txt +0 -0
  21. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/src/hexatess_code.egg-info/entry_points.txt +0 -0
  22. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/src/hexatess_code.egg-info/requires.txt +0 -0
  23. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/src/hexatess_code.egg-info/top_level.txt +0 -0
  24. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/tests/test_camera.py +0 -0
  25. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/tests/test_codec.py +0 -0
  26. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/tests/test_conformance.py +0 -0
  27. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/tests/test_galois.py +0 -0
  28. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/tests/test_geometry.py +0 -0
  29. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/tests/test_header.py +0 -0
  30. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/tests/test_masks.py +0 -0
  31. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/tests/test_reedsolomon.py +0 -0
  32. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/tests/test_render.py +0 -0
  33. {hexatess_code-0.3.1 → hexatess_code-0.4.1}/tests/test_resilience.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hexatess-code
3
- Version: 0.3.1
3
+ Version: 0.4.1
4
4
  Summary: Hexatess Code - an experimental 2D barcode on a hexagonal grid with Reed-Solomon error correction
5
5
  Author: The Hexatess Code Authors
6
6
  License: MIT License
@@ -200,6 +200,12 @@ concentrate inside whole bytes.
200
200
 
201
201
  ## Implement it in your own language
202
202
 
203
+ A **pure-JavaScript encoder and decoder** already ship in this
204
+ repository — see [`javascript/`](javascript/) (zero dependencies,
205
+ byte-identical to the Python reference for uncompressed symbols) and
206
+ the browser playground [`demo.html`](demo.html) at the repository root
207
+ (encode + decode, including clean upright images).
208
+
203
209
  The format is deliberately **specification-first**: everything needed
204
210
  for an independent implementation is in
205
211
  [`SPECIFICATION.md`](SPECIFICATION.md), and
@@ -221,7 +227,9 @@ vectors, it speaks Hexatess Code.
221
227
  3. **Erasure decoding:** declare blob-occluded modules as
222
228
  erasures → doubles correctable symbol counts.
223
229
  4. **JavaScript/TypeScript SDK** + online playground (generate a code
224
- in the browser in 10 seconds).
230
+ in the browser in 10 seconds) — **encoder and decoder done:**
231
+ [`javascript/`](javascript/) + [`demo.html`](demo.html); hosted
232
+ playground (GitHub Pages) next.
225
233
  5. Larger radii / capacity beyond 329 stored bytes (breaking header
226
234
  change).
227
235
 
@@ -136,6 +136,12 @@ concentrate inside whole bytes.
136
136
 
137
137
  ## Implement it in your own language
138
138
 
139
+ A **pure-JavaScript encoder and decoder** already ship in this
140
+ repository — see [`javascript/`](javascript/) (zero dependencies,
141
+ byte-identical to the Python reference for uncompressed symbols) and
142
+ the browser playground [`demo.html`](demo.html) at the repository root
143
+ (encode + decode, including clean upright images).
144
+
139
145
  The format is deliberately **specification-first**: everything needed
140
146
  for an independent implementation is in
141
147
  [`SPECIFICATION.md`](SPECIFICATION.md), and
@@ -157,7 +163,9 @@ vectors, it speaks Hexatess Code.
157
163
  3. **Erasure decoding:** declare blob-occluded modules as
158
164
  erasures → doubles correctable symbol counts.
159
165
  4. **JavaScript/TypeScript SDK** + online playground (generate a code
160
- in the browser in 10 seconds).
166
+ in the browser in 10 seconds) — **encoder and decoder done:**
167
+ [`javascript/`](javascript/) + [`demo.html`](demo.html); hosted
168
+ playground (GitHub Pages) next.
161
169
  5. Larger radii / capacity beyond 329 stored bytes (breaking header
162
170
  change).
163
171
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "hexatess-code"
7
- version = "0.3.1"
7
+ version = "0.4.1"
8
8
  description = "Hexatess Code - an experimental 2D barcode on a hexagonal grid with Reed-Solomon error correction"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -61,7 +61,7 @@ from .reedsolomon import rs_correct_msg, rs_encode_msg
61
61
  from .render import render, sample_grid_from_image
62
62
  from .resilience import add_blob_damage, add_random_noise, run_tests
63
63
 
64
- __version__ = "0.3.1"
64
+ __version__ = "0.4.1"
65
65
  SPEC_VERSION = "0.3"
66
66
 
67
67
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hexatess-code
3
- Version: 0.3.1
3
+ Version: 0.4.1
4
4
  Summary: Hexatess Code - an experimental 2D barcode on a hexagonal grid with Reed-Solomon error correction
5
5
  Author: The Hexatess Code Authors
6
6
  License: MIT License
@@ -200,6 +200,12 @@ concentrate inside whole bytes.
200
200
 
201
201
  ## Implement it in your own language
202
202
 
203
+ A **pure-JavaScript encoder and decoder** already ship in this
204
+ repository — see [`javascript/`](javascript/) (zero dependencies,
205
+ byte-identical to the Python reference for uncompressed symbols) and
206
+ the browser playground [`demo.html`](demo.html) at the repository root
207
+ (encode + decode, including clean upright images).
208
+
203
209
  The format is deliberately **specification-first**: everything needed
204
210
  for an independent implementation is in
205
211
  [`SPECIFICATION.md`](SPECIFICATION.md), and
@@ -221,7 +227,9 @@ vectors, it speaks Hexatess Code.
221
227
  3. **Erasure decoding:** declare blob-occluded modules as
222
228
  erasures → doubles correctable symbol counts.
223
229
  4. **JavaScript/TypeScript SDK** + online playground (generate a code
224
- in the browser in 10 seconds).
230
+ in the browser in 10 seconds) — **encoder and decoder done:**
231
+ [`javascript/`](javascript/) + [`demo.html`](demo.html); hosted
232
+ playground (GitHub Pages) next.
225
233
  5. Larger radii / capacity beyond 329 stored bytes (breaking header
226
234
  change).
227
235
 
File without changes
File without changes