├── .github └── workflows │ ├── python-app.yml │ └── python-publish.yml ├── .gitignore ├── ArchiveLibrary ├── __init__.py ├── keywords.py ├── utils.py └── version.py ├── CONTRIBUTING.md ├── README.md ├── atests ├── FilesToTar │ ├── file1.txt │ ├── file2.txt │ └── subdir │ │ └── file3.txt ├── newZipFile.zip ├── test-nofolders.zip ├── test-noroots.zip ├── test-with-unordered-folders.zip ├── test.tar ├── test.tar.bz2 ├── test.tar.gz ├── test.tgz ├── test.zip └── testcase.robot ├── dev_requirements.txt ├── doc └── generate_doc.sh ├── index.html ├── requirements.txt ├── setup.py └── utests ├── __init__.py └── test_keywords.py /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /ArchiveLibrary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/ArchiveLibrary/__init__.py -------------------------------------------------------------------------------- /ArchiveLibrary/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/ArchiveLibrary/keywords.py -------------------------------------------------------------------------------- /ArchiveLibrary/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/ArchiveLibrary/utils.py -------------------------------------------------------------------------------- /ArchiveLibrary/version.py: -------------------------------------------------------------------------------- 1 | VERSION = '0.4.3' 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/README.md -------------------------------------------------------------------------------- /atests/FilesToTar/file1.txt: -------------------------------------------------------------------------------- 1 | this is testfile 1 -------------------------------------------------------------------------------- /atests/FilesToTar/file2.txt: -------------------------------------------------------------------------------- 1 | this is testfile 2 -------------------------------------------------------------------------------- /atests/FilesToTar/subdir/file3.txt: -------------------------------------------------------------------------------- 1 | this is testfile 3 -------------------------------------------------------------------------------- /atests/newZipFile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/atests/newZipFile.zip -------------------------------------------------------------------------------- /atests/test-nofolders.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/atests/test-nofolders.zip -------------------------------------------------------------------------------- /atests/test-noroots.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/atests/test-noroots.zip -------------------------------------------------------------------------------- /atests/test-with-unordered-folders.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/atests/test-with-unordered-folders.zip -------------------------------------------------------------------------------- /atests/test.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/atests/test.tar -------------------------------------------------------------------------------- /atests/test.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/atests/test.tar.bz2 -------------------------------------------------------------------------------- /atests/test.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/atests/test.tar.gz -------------------------------------------------------------------------------- /atests/test.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/atests/test.tgz -------------------------------------------------------------------------------- /atests/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/atests/test.zip -------------------------------------------------------------------------------- /atests/testcase.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/atests/testcase.robot -------------------------------------------------------------------------------- /dev_requirements.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | -------------------------------------------------------------------------------- /doc/generate_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/doc/generate_doc.sh -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/index.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | robotframework 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/setup.py -------------------------------------------------------------------------------- /utests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/utests/__init__.py -------------------------------------------------------------------------------- /utests/test_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-archivelibrary/HEAD/utests/test_keywords.py --------------------------------------------------------------------------------