File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,13 @@ you have to write your extractor the normal way using [PyClowder](https://openso
1818
1919To write an extractor using the Simple Extractor, you need to have your Python program available. The main function of
2020this Python program is supposed to take an input file path as its parameter. It needs to return a Python dictionary that
21- can contain either metadata information ("metadata"), details about file previews ("previews") or both . For example:
21+ can contain either metadata information ("metadata"), details about file previews ("previews"), tags for the file ("tags) or all . For example:
2222
2323``` json
2424{
2525 "metadata" : dict(),
26- "previews" : array()
26+ "previews" : array(),
27+ "tags" : array()
2728}
2829```
2930
You can’t perform that action at this time.
0 commit comments