Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
CaosDB Crawler
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
CaosDB Crawler
Commits
4787b537
Commit
4787b537
authored
7 months ago
by
Florian Spreckelsen
Browse files
Options
Downloads
Patches
Plain Diff
DOC: Use comma-separated csv
parent
984b6987
No related branches found
No related tags found
1 merge request
!189
DOC: update the single structured file tutorial
Pipeline
#56541
passed with warnings
7 months ago
Stage: info
Stage: setup
Stage: cert
Stage: style
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/doc/tutorials/single_file.rst
+1
-2
1 addition, 2 deletions
src/doc/tutorials/single_file.rst
with
1 addition
and
2 deletions
src/doc/tutorials/single_file.rst
+
1
−
2
View file @
4787b537
...
@@ -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:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment