Skip to content
Snippets Groups Projects
Commit 4787b537 authored by Florian Spreckelsen's avatar Florian Spreckelsen
Browse files

DOC: Use comma-separated csv

parent 984b6987
No related branches found
No related tags found
1 merge request!189DOC: update the single structured file tutorial
Pipeline #56541 passed with warnings
...@@ -55,7 +55,6 @@ And we will use the following crawler configuration. ...@@ -55,7 +55,6 @@ And we will use the following crawler configuration.
fish_data_file: # Root file fish_data_file: # Root file
type: CSVTableConverter type: CSVTableConverter
match: "^fish_data_.*.csv$" # Match CSV file with a name that starts with "fish_data_" match: "^fish_data_.*.csv$" # Match CSV file with a name that starts with "fish_data_"
sep: ";"
subtree: subtree:
table_row: # One row in the CSV file table_row: # One row in the CSV file
type: DictElement type: DictElement
...@@ -69,7 +68,7 @@ And we will use the following crawler configuration. ...@@ -69,7 +68,7 @@ And we will use the following crawler configuration.
type: TextElement type: TextElement
match_name: date # Name of the column in the table file match_name: date # Name of the column in the table file
match_value: (?P<column_value>.*) # We match any value of the row in this match_value: (?P<column_value>.*) # We match any value of the row in this
# column and assign it to the ``column_value`` # column and assign it to the ``column_value``
# variable # variable
records: # Records edited for each cell records: # Records edited for each cell
Fish: Fish:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment