ducpy.parse¶
Parse .duc files using the Rust native extension (ducpy_native).
Returns plain dicts with snake_case keys. Attribute-style access is available via DucData wrapper.
Attributes¶
Classes¶
Dict subclass allowing attribute-style access ( |
Functions¶
|
Recursively wrap dicts as DucData for attribute access. |
|
|
|
Parse a |
|
List metadata for all external files (without data blobs). |
Stream an external file revision from a |
|
Stream checkpoint data from a |
|
Stream delta changeset data from a |
Module Contents¶
- ducpy.parse.logger¶
- class ducpy.parse.DucData¶
Bases:
dictDict subclass allowing attribute-style access (
data.elements).Initialize self. See help(type(self)) for accurate signature.
- __getattr__(key: str) Any¶
- __setattr__(key: str, value: Any) None¶
Implement setattr(self, name, value).
- __delattr__(key: str) None¶
Implement delattr(self, name).
- ducpy.parse._wrap(obj: Any) Any¶
Recursively wrap dicts as DucData for attribute access.
- ducpy.parse.PathInput¶
- ducpy.parse._path(source: PathInput) str¶
- ducpy.parse.parse_duc(source: PathInput) DucData¶
Parse a
.ducfile into aDucDatadict.This function streams a .duc file path through the Rust native extension. It returns a specialized dictionary (DucData) that allows attribute-style access to the parsed properties (e.g. data.elements[0].id), using snake_case keys instead of the internal camelCase format.
Parameters¶
- sourcestr | PathLike
Path to a
.ducfile.
Returns¶
- DucData
An attribute-accessible dictionary matching the internal ExportedDataState schema with snake_case keys. Common keys include elements, duc_global_state, duc_local_state, and version_graph.
Examples¶
>>> data = duc.parse_duc("path/to/file.duc") >>> print(f"Found {len(data.elements)} elements") >>> print(f"First element type: {data.elements[0].type}")
- ducpy.parse.list_external_files(source: PathInput) List[DucData]¶
List metadata for all external files (without data blobs).
- ducpy.parse.stream_external_file_revision_to_path(source: PathInput, revision_id: str, output_path: PathInput) int¶
Stream an external file revision from a
.ducfile intooutput_path.
- ducpy.parse.stream_checkpoint_data_to_path(source: PathInput, checkpoint_id: str, output_path: PathInput) int¶
Stream checkpoint data from a
.ducfile intooutput_path.
- ducpy.parse.stream_delta_changeset_to_path(source: PathInput, delta_id: str, output_path: PathInput) int¶
Stream delta changeset data from a
.ducfile intooutput_path.