Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
pipeline_name: "import.filtered_table"
doc: |
  Import a table from a csv file, then filter it.

  Filtering is done by matching a 'filter_string' against all cells of a column, both specified by the user.
steps:
  - module_type: import.table.from.local_file_path
    step_id: import_table_step
  - module_type: filter.table_5
    step_id: filter_table_step
    input_links:
      table_input: import_table_step.table

input_aliases:
    import_table_step.path: csv_file_path
    filter_table_step.column_name: column_name
    filter_table_step.filter_string: filter_string
output_aliases:
    filter_table_step.table_output: filtered_table