Skip to content

Commit a04717f

Browse files
author
toddn
committed
update readme
1 parent a43fc1f commit a04717f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

sample-extractors/simple-extractor/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,13 @@ you have to write your extractor the normal way using [PyClowder](https://openso
1818

1919
To write an extractor using the Simple Extractor, you need to have your Python program available. The main function of
2020
this 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

0 commit comments

Comments
 (0)