dissect.cstruct 3.7.dev1__tar.gz → 3.8__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.
- {dissect.cstruct-3.7.dev1/dissect.cstruct.egg-info → dissect.cstruct-3.8}/PKG-INFO +19 -3
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/README.md +8 -2
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8/dissect.cstruct.egg-info}/PKG-INFO +19 -3
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/pyproject.toml +10 -1
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/COPYRIGHT +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/LICENSE +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/MANIFEST.in +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/__init__.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/bitbuffer.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/compiler.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/cstruct.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/exceptions.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/expression.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/parser.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/types/__init__.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/types/base.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/types/bytesinteger.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/types/chartype.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/types/enum.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/types/flag.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/types/instance.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/types/packedtype.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/types/pointer.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/types/structure.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/types/voidtype.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/types/wchartype.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect/cstruct/utils.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect.cstruct.egg-info/SOURCES.txt +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect.cstruct.egg-info/dependency_links.txt +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect.cstruct.egg-info/top_level.txt +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/examples/disk.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/examples/mirai.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/examples/pe.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/examples/secdesc.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/setup.cfg +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/__init__.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/conftest.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/data/testdef.txt +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/docs/Makefile +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/docs/conf.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/docs/index.rst +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/test_align.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/test_basic.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/test_bitbuffer.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/test_bitfield.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/test_bytesinteger.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/test_ctypes_type.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/test_enum.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/test_expression.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/test_flag.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/test_packedtype.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/test_pointer.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/test_struct.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/test_union.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/test_util.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/test_utils.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tests/utils.py +0 -0
- {dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/tox.ini +0 -0
|
@@ -1,13 +1,23 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dissect.cstruct
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.8
|
|
4
4
|
Summary: A Dissect module implementing a parser for C-like structures: structure parsing in Python made easy
|
|
5
5
|
Author-email: Dissect Team <dissect@fox-it.com>
|
|
6
6
|
License: Apache License 2.0
|
|
7
7
|
Project-URL: homepage, https://dissect.tools
|
|
8
8
|
Project-URL: documentation, https://docs.dissect.tools/en/latest/projects/dissect.cstruct
|
|
9
9
|
Project-URL: repository, https://github.com/fox-it/dissect.cstruct
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Information Technology
|
|
14
|
+
Classifier: License :: OSI Approved
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
10
16
|
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Topic :: Internet :: Log Analysis
|
|
18
|
+
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
19
|
+
Classifier: Topic :: Security
|
|
20
|
+
Classifier: Topic :: Utilities
|
|
11
21
|
Requires-Python: ~=3.9
|
|
12
22
|
Description-Content-Type: text/markdown
|
|
13
23
|
License-File: LICENSE
|
|
@@ -28,6 +38,12 @@ structure as you go.
|
|
|
28
38
|
By design cstruct is incredibly simple. No complex syntax, filters, pre- or post-processing steps. Just structure
|
|
29
39
|
parsing. For more information, please see [the documentation](https://docs.dissect.tools/en/latest/projects/dissect.cstruct/index.html).
|
|
30
40
|
|
|
41
|
+
## Requirements
|
|
42
|
+
|
|
43
|
+
This project is part of the Dissect framework and requires Python.
|
|
44
|
+
|
|
45
|
+
Information on the supported Python versions can be found in the Getting Started section of [the documentation](https://docs.dissect.tools/en/latest/index.html#getting-started).
|
|
46
|
+
|
|
31
47
|
## Installation
|
|
32
48
|
|
|
33
49
|
`dissect.cstruct` is available on [PyPI](https://pypi.org/project/dissect.cstruct/).
|
|
@@ -57,12 +73,12 @@ tox
|
|
|
57
73
|
```
|
|
58
74
|
|
|
59
75
|
For a more elaborate explanation on how to build and test the project, please see [the
|
|
60
|
-
documentation](https://docs.dissect.tools/en/latest/contributing/
|
|
76
|
+
documentation](https://docs.dissect.tools/en/latest/contributing/tooling.html).
|
|
61
77
|
|
|
62
78
|
## Contributing
|
|
63
79
|
|
|
64
80
|
The Dissect project encourages any contribution to the codebase. To make your contribution fit into the project, please
|
|
65
|
-
refer to [the
|
|
81
|
+
refer to [the development guide](https://docs.dissect.tools/en/latest/contributing/developing.html).
|
|
66
82
|
|
|
67
83
|
## Usage
|
|
68
84
|
All you need to do is instantiate a new cstruct instance and load some structure definitions in there. After that you can start using them from your Python code.
|
|
@@ -13,6 +13,12 @@ structure as you go.
|
|
|
13
13
|
By design cstruct is incredibly simple. No complex syntax, filters, pre- or post-processing steps. Just structure
|
|
14
14
|
parsing. For more information, please see [the documentation](https://docs.dissect.tools/en/latest/projects/dissect.cstruct/index.html).
|
|
15
15
|
|
|
16
|
+
## Requirements
|
|
17
|
+
|
|
18
|
+
This project is part of the Dissect framework and requires Python.
|
|
19
|
+
|
|
20
|
+
Information on the supported Python versions can be found in the Getting Started section of [the documentation](https://docs.dissect.tools/en/latest/index.html#getting-started).
|
|
21
|
+
|
|
16
22
|
## Installation
|
|
17
23
|
|
|
18
24
|
`dissect.cstruct` is available on [PyPI](https://pypi.org/project/dissect.cstruct/).
|
|
@@ -42,12 +48,12 @@ tox
|
|
|
42
48
|
```
|
|
43
49
|
|
|
44
50
|
For a more elaborate explanation on how to build and test the project, please see [the
|
|
45
|
-
documentation](https://docs.dissect.tools/en/latest/contributing/
|
|
51
|
+
documentation](https://docs.dissect.tools/en/latest/contributing/tooling.html).
|
|
46
52
|
|
|
47
53
|
## Contributing
|
|
48
54
|
|
|
49
55
|
The Dissect project encourages any contribution to the codebase. To make your contribution fit into the project, please
|
|
50
|
-
refer to [the
|
|
56
|
+
refer to [the development guide](https://docs.dissect.tools/en/latest/contributing/developing.html).
|
|
51
57
|
|
|
52
58
|
## Usage
|
|
53
59
|
All you need to do is instantiate a new cstruct instance and load some structure definitions in there. After that you can start using them from your Python code.
|
|
@@ -1,13 +1,23 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dissect.cstruct
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.8
|
|
4
4
|
Summary: A Dissect module implementing a parser for C-like structures: structure parsing in Python made easy
|
|
5
5
|
Author-email: Dissect Team <dissect@fox-it.com>
|
|
6
6
|
License: Apache License 2.0
|
|
7
7
|
Project-URL: homepage, https://dissect.tools
|
|
8
8
|
Project-URL: documentation, https://docs.dissect.tools/en/latest/projects/dissect.cstruct
|
|
9
9
|
Project-URL: repository, https://github.com/fox-it/dissect.cstruct
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Information Technology
|
|
14
|
+
Classifier: License :: OSI Approved
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
10
16
|
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Topic :: Internet :: Log Analysis
|
|
18
|
+
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
19
|
+
Classifier: Topic :: Security
|
|
20
|
+
Classifier: Topic :: Utilities
|
|
11
21
|
Requires-Python: ~=3.9
|
|
12
22
|
Description-Content-Type: text/markdown
|
|
13
23
|
License-File: LICENSE
|
|
@@ -28,6 +38,12 @@ structure as you go.
|
|
|
28
38
|
By design cstruct is incredibly simple. No complex syntax, filters, pre- or post-processing steps. Just structure
|
|
29
39
|
parsing. For more information, please see [the documentation](https://docs.dissect.tools/en/latest/projects/dissect.cstruct/index.html).
|
|
30
40
|
|
|
41
|
+
## Requirements
|
|
42
|
+
|
|
43
|
+
This project is part of the Dissect framework and requires Python.
|
|
44
|
+
|
|
45
|
+
Information on the supported Python versions can be found in the Getting Started section of [the documentation](https://docs.dissect.tools/en/latest/index.html#getting-started).
|
|
46
|
+
|
|
31
47
|
## Installation
|
|
32
48
|
|
|
33
49
|
`dissect.cstruct` is available on [PyPI](https://pypi.org/project/dissect.cstruct/).
|
|
@@ -57,12 +73,12 @@ tox
|
|
|
57
73
|
```
|
|
58
74
|
|
|
59
75
|
For a more elaborate explanation on how to build and test the project, please see [the
|
|
60
|
-
documentation](https://docs.dissect.tools/en/latest/contributing/
|
|
76
|
+
documentation](https://docs.dissect.tools/en/latest/contributing/tooling.html).
|
|
61
77
|
|
|
62
78
|
## Contributing
|
|
63
79
|
|
|
64
80
|
The Dissect project encourages any contribution to the codebase. To make your contribution fit into the project, please
|
|
65
|
-
refer to [the
|
|
81
|
+
refer to [the development guide](https://docs.dissect.tools/en/latest/contributing/developing.html).
|
|
66
82
|
|
|
67
83
|
## Usage
|
|
68
84
|
All you need to do is instantiate a new cstruct instance and load some structure definitions in there. After that you can start using them from your Python code.
|
|
@@ -12,7 +12,17 @@ authors = [
|
|
|
12
12
|
{name = "Dissect Team", email = "dissect@fox-it.com"}
|
|
13
13
|
]
|
|
14
14
|
classifiers = [
|
|
15
|
+
"Development Status :: 5 - Production/Stable",
|
|
16
|
+
"Environment :: Console",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"Intended Audience :: Information Technology",
|
|
19
|
+
"License :: OSI Approved",
|
|
20
|
+
"Operating System :: OS Independent",
|
|
15
21
|
"Programming Language :: Python :: 3",
|
|
22
|
+
"Topic :: Internet :: Log Analysis",
|
|
23
|
+
"Topic :: Scientific/Engineering :: Information Analysis",
|
|
24
|
+
"Topic :: Security",
|
|
25
|
+
"Topic :: Utilities",
|
|
16
26
|
]
|
|
17
27
|
dynamic = ["version"]
|
|
18
28
|
|
|
@@ -36,4 +46,3 @@ license-files = ["LICENSE", "COPYRIGHT"]
|
|
|
36
46
|
include = ["dissect.*"]
|
|
37
47
|
|
|
38
48
|
[tool.setuptools_scm]
|
|
39
|
-
local_scheme = "no-local-version"
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dissect.cstruct-3.7.dev1 → dissect.cstruct-3.8}/dissect.cstruct.egg-info/dependency_links.txt
RENAMED
|
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
|
|
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
|