Socket
Socket
Sign inDemoInstall

robotframework-csvlibrary

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

robotframework-csvlibrary

CSV library for Robot Framework


Maintainers
1

Build Status Build Status

Robot Framework CSVLibrary

Introduction

CSVLibrary is a Robot Framework library for handling csv files.

More information about this library can be found in the Keyword Documentation.

Installation

Using pip

      pip install -U robotframework-csvlibrary

Manual installation

  1. Make sure you have Robot Framework installed.
  2. Download source distributions (*.tar.gz) for the library and its dependencies:
  3. Extract each source distribution to a temporary location.
  4. Go each created directory from the command line and install each project using:
      python setup.py install

Example

Basic example:

*** Settings ***
Library                     Collections
Library                     CSVLibrary
    
*** Test Cases ***
Read csv file to a list example test
  @{list}=  read csv file to list  data.csv
  Log  ${list[0]}
  Log  ${list[1]}

Read csv file to a dict example test
  @{dict}=    read csv file to associative  data.csv
  Log  &{dict[0]}[first_name]  &{dict[0]}[last_name]

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc