17
17
import os
18
18
import json
19
19
import datetime
20
- from typing import NoReturn , Union , List , Dict , Any
20
+ from typing import NoReturn , Union , Dict , Any
21
21
from json import JSONEncoder
22
+ import deepdiff
22
23
23
24
import yaml
24
25
import numpy as np
25
26
26
- from . import Meta
27
+ from . import MetaFromFile
27
28
28
- supported_meta_formats = ('.json' , '.yml' )
29
+ supported_meta_formats = ('.json' , '.yml' , '.yaml' )
29
30
30
31
31
32
class CustomEncoder (JSONEncoder ):
@@ -59,14 +60,17 @@ def default(self, obj: Any) -> Any:
59
60
elif isinstance (obj , np .void ):
60
61
return None
61
62
63
+ elif isinstance (obj , deepdiff .model .PrettyOrderedSet ):
64
+ return list (obj )
65
+
62
66
return super (CustomEncoder , self ).default (obj )
63
67
64
- def obj_to_dict (self , obj : Any ) -> Dict :
68
+ def obj_to_dict (self , obj : Any ) -> Any :
65
69
return json .loads (self .encode (obj ))
66
70
67
71
68
72
class BaseHandler :
69
- def read (self , path : str ) -> Union [ List [ Any ], Dict [ Any , Any ]] :
73
+ def read (self , path : str ) -> MetaFromFile :
70
74
raise NotImplementedError ()
71
75
72
76
def write (self , path : str , obj : Any , overwrite : bool = True ) -> None :
@@ -83,7 +87,7 @@ def _raise_io_error(self, path: str, exc: Union[Exception, None] = None) -> NoRe
83
87
84
88
85
89
class JSONHandler (BaseHandler ):
86
- def read (self , path : str ) -> Union [ List [ Any ], Dict [ Any , Any ]] :
90
+ def read (self , path : str ) -> MetaFromFile :
87
91
_ , ext = os .path .splitext (path )
88
92
if ext == '' :
89
93
path += '.json'
@@ -97,7 +101,7 @@ def read(self, path: str) -> Union[List[Any], Dict[Any, Any]]:
97
101
self ._raise_io_error (path , e )
98
102
return meta
99
103
100
- def write (self , path : str , obj : List [ Dict ] , overwrite : bool = True ) -> None :
104
+ def write (self , path : str , obj : Any , overwrite : bool = True ) -> None :
101
105
if not overwrite and os .path .exists (path ):
102
106
return
103
107
@@ -106,7 +110,7 @@ def write(self, path: str, obj: List[Dict], overwrite: bool = True) -> None:
106
110
107
111
108
112
class YAMLHandler (BaseHandler ):
109
- def read (self , path : str ) -> Union [ List [ Any ], Dict [ Any , Any ]] :
113
+ def read (self , path : str ) -> MetaFromFile :
110
114
_ , ext = os .path .splitext (path )
111
115
if ext == '' :
112
116
path += '.yml'
@@ -156,7 +160,7 @@ class MetaHandler:
156
160
"""
157
161
Encapsulates the logic of reading and writing metadata to disk.
158
162
159
- Supported read-write formats are `json` and `yml`. Other formats
163
+ Supported read-write formats are `. json` and `. yml` or `.yaml `. Other formats
160
164
are supported as read-only. For example one can read meta from txt or md file.
161
165
162
166
Examples
@@ -168,7 +172,7 @@ class MetaHandler:
168
172
>>> mh.write('meta.yml', {'hello': 'world'})
169
173
>>> obj = mh.read('meta.yml')
170
174
"""
171
- def read (self , path : str ) -> Union [ List [ Any ], Dict [ Any , Any ]] :
175
+ def read (self , path : str ) -> MetaFromFile :
172
176
"""
173
177
Reads object from path.
174
178
@@ -179,7 +183,7 @@ def read(self, path: str) -> Union[List[Any], Dict[Any, Any]]:
179
183
180
184
Returns
181
185
-------
182
- obj: Union[List[Any], Dict[Any, Any]]
186
+ obj: MetaFromFile
183
187
184
188
Raises
185
189
------
@@ -215,7 +219,7 @@ def _get_handler(self, path: str) -> BaseHandler:
215
219
ext = os .path .splitext (path )[- 1 ]
216
220
if ext == '.json' :
217
221
return JSONHandler ()
218
- elif ext == '.yml' :
222
+ elif ext in ( '.yml' , '.yaml' ) :
219
223
return YAMLHandler ()
220
224
else :
221
225
return TextHandler ()
0 commit comments