constrata 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.
constrata/__init__.py ADDED
@@ -0,0 +1,47 @@
1
+ __all__ = [
2
+ "BinaryStruct",
3
+ "ByteOrder",
4
+ "BinaryFieldTypeError",
5
+ "BinaryFieldValueError",
6
+ "BinaryReader",
7
+ "BinaryWriter",
8
+
9
+ "Binary",
10
+ "binary",
11
+ "BinaryString",
12
+ "binary_string",
13
+ "BinaryArray",
14
+ "binary_array",
15
+ "BinaryPad",
16
+ "binary_pad",
17
+
18
+ "byte",
19
+ "uint8",
20
+ "sbyte",
21
+ "int8",
22
+ "ushort",
23
+ "uint16",
24
+ "short",
25
+ "int16",
26
+ "uint",
27
+ "uint32",
28
+ "int32",
29
+ "ulong",
30
+ "uint64",
31
+ "long",
32
+ "int64",
33
+ "single",
34
+ "float32",
35
+ "double",
36
+ "float64",
37
+ "varint",
38
+ "varuint",
39
+ "RESERVED",
40
+ ]
41
+
42
+ from .binary_struct import BinaryStruct
43
+ from .byte_order import ByteOrder
44
+ from .exceptions import *
45
+ from .field_types import *
46
+ from .fields import *
47
+ from .streams import BinaryReader, BinaryWriter