Skip to content

Serialization and Deserialization

nh916 edited this page Jun 20, 2023 · 2 revisions

Serializing Python Node Object to JSON

Python node objects are transformed to their JSON equivalent to easily send it to the API to be saved via HTTP Post request.

more specific documentation coming soon...

Deserialize JSON to Python Node Object

A node or list or nodes (JSON) are sent from API to the SDK via a HTTP GET request, and the SDK then deserializes the JSON to Python node objects for easier use for the user.

more specific documentation coming soon...

Resources