# Robot Framework CSVLibrary
## Introduction
CSVLibrary is a [Robot Framework](http://robotframework.org/) library for handling csv files.
More information about this library can be found in the [Keyword Documentation](https://rawgit.com/s4int/robotframework-CSVLibrary/master/doc/CSVLibrary.html).
## Installation
### Using pip
```bash
pip install -U robotframework-csvlibrary
```
### Manual installation
1. Make sure you have [Robot Framework installed](http://code.google.com/p/robotframework/wiki/Installation).
2. Download source distributions (`*.tar.gz`) for the library and its dependencies:
- https://pypi.python.org/pypi/robotframework-csvlibrary
3. Extract each source distribution to a temporary location.
4. Go each created directory from the command line and install each project using:
```bash
python setup.py install
```
## Example
Basic example:
```robotframework
*** 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]
```

挣扎的蓝藻
- 粉丝: 15w+
最新资源
- 基于MATLAB的数字通信系统仿真方案设计书.doc
- 大数据集群-hadoop的安全防护.docx
- 普通高中计算机信息安全实践教学研究.docx
- 计算机网络信息安全及对策.doc
- 简论信息化对社会经济的影响.docx
- 论大数据下企业财务会计向管理会计的转型.docx
- 中小型企业实施网络精准营销的方法研究-上下文推广.docx
- 虚拟化技术在计算机机房管理中的应用策略分析.docx
- 基于网络化的职业英语教学模式探索.docx
- 智能家居防盗报警系统设计方案-智建社区.docx
- PLC的花样喷泉控制系统设计方案PLC的花样喷泉控制.doc
- VB程序设计第四章-基本的控制结构.ppt
- SCLCD控制器控制TFT彩屏接口设计.ppt
- 单片机控制无刷直流电机驱动系统设计方案新.doc
- 实验室管理经验交流材料信息与通信工程科技专业资料.ppt
- 模糊层次分析法在计算机网络安全评价中的运用.doc
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈


