dotcode-decoder 1.0.0__py3-none-any.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.
dotcode/__init__.py ADDED
@@ -0,0 +1,9 @@
1
+ """
2
+ DotCode Decoder - Fast 2D barcode reader (Conveyor ready)
3
+ """
4
+
5
+ from .decoder import DotCodeDecoder, decode
6
+ from .utils import DecodeResult, DecodeStage
7
+
8
+ __version__ = "1.0.0"
9
+ __all__ = ['DotCodeDecoder', 'decode', 'DecodeResult', 'DecodeStage']