{"id":15144503,"url":"https://github.com/zero88/robotframework-excel","last_synced_at":"2025-10-23T22:30:40.700Z","repository":{"id":48825932,"uuid":"125800259","full_name":"zero88/robotframework-excel","owner":"zero88","description":"Robot-framework auto-test excel","archived":false,"fork":false,"pushed_at":"2021-05-26T07:37:20.000Z","size":166,"stargazers_count":19,"open_issues_count":5,"forks_count":12,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-09-27T10:41:39.340Z","etag":null,"topics":["excel","robotframework","test-automation"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zero88.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-03-19T04:12:16.000Z","updated_at":"2024-08-09T17:13:20.000Z","dependencies_parsed_at":"2022-08-31T13:02:28.586Z","dependency_job_id":null,"html_url":"https://github.com/zero88/robotframework-excel","commit_stats":null,"previous_names":["zero-88/robotframework-excel"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zero88%2Frobotframework-excel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zero88%2Frobotframework-excel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zero88%2Frobotframework-excel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zero88%2Frobotframework-excel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zero88","download_url":"https://codeload.github.com/zero88/robotframework-excel/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219867717,"owners_count":16555814,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["excel","robotframework","test-automation"],"created_at":"2024-09-26T10:41:49.419Z","updated_at":"2025-10-23T22:30:40.227Z","avatar_url":"https://github.com/zero88.png","language":"Python","readme":"# Robotframework-excel for Robot Framework\n\n[![Version](https://img.shields.io/pypi/v/robotframework-excel.svg)](https://img.shields.io/pypi/v/robotframework-excel.svg)\n[![License](https://img.shields.io/pypi/l/robotframework-excel.svg)](https://img.shields.io/pypi/l/robotframework-excel.svg)\n[![Status](https://img.shields.io/pypi/status/robotframework-excel.svg)](https://img.shields.io/pypi/status/robotframework-excel.svg)\n[![PyVersion](https://img.shields.io/pypi/pyversions/robotframework-excel.svg)](https://img.shields.io/pypi/pyversions/robotframework-excel.svg)\n\n[![Build Status](https://travis-ci.org/zero-88/robotframework-excel.svg?branch=master)](https://travis-ci.org/zero-88/robotframework-excel)\n[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=robotframework-excel\u0026metric=coverage)](https://sonarcloud.io/component_measures?id=robotframework-excel\u0026metric=coverage)\n[![Quality Status](https://sonarcloud.io/api/project_badges/measure?project=robotframework-excel\u0026metric=alert_status)](https://sonarcloud.io/dashboard?id=robotframework-excel)\n\n## Introduction\n\nRobotframework-excel is a Robot Framework Library that provides keywords to allow opening, reading, writing and saving Excel files.\n\n- Information about Robotframework-excel keywords can be found on the [ExcelRobot-Keyword Documentation](https://zero88.github.io/robotframework-excel/docs/ExcelRobot.html) page.\n- Information about working with Excel files in Python can be found on the [Python Excel](http://www.python-excel.org/) page.\n\n## Requirements\n\n- Python \u003e= 2.7 | Python \u003e= 3.3\n- Robot Framework \u003e= 3.0\n- xlutils 2.0.0. Access the downloads [here](https://pypi.python.org/pypi/xlutils/1.7.1), or use pip install xlutils.\n  - [xlrd](https://pypi.python.org/pypi/xlrd) that reads data from an Excel file\n  - [xlwt](https://pypi.python.org/pypi/xlwt) that can write to an Excel file.\n- openpyxl 1.0.2\n- natsort 5.2.0. Access the downloads [here](https://pypi.python.org/pypi/natsort/5.2.0), or use pip install natsort.\n- enum34 1.1.6\n\n## Installation\n\nThe recommended installation tool is [pip](http://pip-installer.org).\n\nInstall pip. Enter the following (Append `--upgrade` to update both the library and all its dependencies to the latest version):\n\n```bash\npip install robotframework-excel --upgrade\n```\n\nTo install a specific version enter:\n\n```bash\npip install robotframework-excel==(version)\n```\n\n### Uninstall\n\nTo uninstall Robotframework-excel use the following pip command:\n\n```bash\npip uninstall robotframework-excel\n```\n\n## Project structure\n\n- `ExcelRobot/base.py`: The Robot Python Library defines excel operation keyword.\n- `tests/unit/*.py`: Unit test\n- `tests/acceptance/ExcelRobotTest.robot`: Example robot test file to display what various keywords from Robotframework-excel accomplish\n- `docs/ExcelRobot.html`: Keyword documentation for the Robotframework-excel.\n\n## Usage\n\nTo write tests with Robot Framework and Robotframework-excel, `ExcelRobot` must be imported into your Robot test suite.\nSee [Robot Framework User Guide](http://code.google.com/p/robotframework/wiki/UserGuide) for more information.\n\n## Running the Demo\n\nThe test file `ExcelRobotTest.robot`, is an easily executable test for Robot Framework using Robotframework-excel.\n\nFor in depth detail on how the keywords function, read the Keyword documentation found here : [Keyword Documentation](https://zero88.github.io/robotframework-excel/docs/ExcelRobot.html)\n\nOpen a command prompt within the `tests/acceptance` folder and run:\n\n```bash\npybot ExcelRobotTest.robot -d \"./out\"\n```\n\n## Release Note\n\n[Release Note Documentation](https://zero88.github.io/robotframework-excel/docs/release-notes.md)\n\n## Limitation\n\n- Lack `DataType` is `CURRENCY` and `PERCENTAGE`\n- Not yet optimize performance when saving Excel file after modifying itself\n\n## Contribution\n\nThe [user group for Robot Framework](http://groups.google.com/group/robotframework-users) is the best place to get help. Include in the post:\n\n- Contact the [Python-Excel google group](https://groups.google.com/forum/#!forum/python-excel)\n- Full description of what you are trying to do and expected outcome\n- Version number of Robotframework-excel and Robot Framework\n- Traceback or other debug output containing error information\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzero88%2Frobotframework-excel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzero88%2Frobotframework-excel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzero88%2Frobotframework-excel/lists"}