Skip to content
Snippets Groups Projects
Commit f9e82273 authored by Jameson Graef Rollins's avatar Jameson Graef Rollins
Browse files

struct: Struct.from_yaml class method to load from yaml string

parent 2409a205
No related branches found
No related tags found
No related merge requests found
......@@ -202,6 +202,15 @@ class Struct(object):
return c
@classmethod
def from_yaml(cls, y):
"""Create Struct from YAML string.
"""
d = yaml.load(y)
return cls.from_dict(d)
@classmethod
def from_matstruct(cls, s):
"""Create Struct from scipy.io.matlab mat_struct object.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment