├── .github └── workflows │ ├── ci.yml │ ├── docs.yml │ └── release.yml ├── .gitignore ├── CSVLibrary └── __init__.py ├── Examples ├── CSVExampleTest.robot ├── data.csv └── data_quoting.csv ├── LICENSE ├── MANIFEST.in ├── README.md ├── doc ├── CSVLibrary.html └── generate.py ├── requirements.txt ├── setup.py └── tests ├── AppendToCsvFile.robot ├── AppendToCsvString.robot ├── ReadCSVTest.robot ├── WriteCSVTest.robot ├── data.csv ├── data_quoting.csv └── testData.robot /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /CSVLibrary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/CSVLibrary/__init__.py -------------------------------------------------------------------------------- /Examples/CSVExampleTest.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/Examples/CSVExampleTest.robot -------------------------------------------------------------------------------- /Examples/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/Examples/data.csv -------------------------------------------------------------------------------- /Examples/data_quoting.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/Examples/data_quoting.csv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include requirements.txt README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/README.md -------------------------------------------------------------------------------- /doc/CSVLibrary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/doc/CSVLibrary.html -------------------------------------------------------------------------------- /doc/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/doc/generate.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | robotframework >= 2.6.0 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/setup.py -------------------------------------------------------------------------------- /tests/AppendToCsvFile.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/tests/AppendToCsvFile.robot -------------------------------------------------------------------------------- /tests/AppendToCsvString.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/tests/AppendToCsvString.robot -------------------------------------------------------------------------------- /tests/ReadCSVTest.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/tests/ReadCSVTest.robot -------------------------------------------------------------------------------- /tests/WriteCSVTest.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/tests/WriteCSVTest.robot -------------------------------------------------------------------------------- /tests/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/tests/data.csv -------------------------------------------------------------------------------- /tests/data_quoting.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/tests/data_quoting.csv -------------------------------------------------------------------------------- /tests/testData.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4int/robotframework-CSVLibrary/HEAD/tests/testData.robot --------------------------------------------------------------------------------