{"id":15144417,"url":"https://github.com/reharish/robotframework-pyserial","last_synced_at":"2025-08-02T23:05:56.314Z","repository":{"id":236082563,"uuid":"791305479","full_name":"reharish/robotframework-pyserial","owner":"reharish","description":"Implementation of beloved pyserial module in robotframework.","archived":false,"fork":false,"pushed_at":"2025-01-23T14:19:51.000Z","size":145,"stargazers_count":3,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T20:06:09.162Z","etag":null,"topics":["pyserial","robot-framework","robotframework","robotframework-library","serial","serial-communication"],"latest_commit_sha":null,"homepage":"https://reharish.github.io/robotframework-pyserial/","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/reharish.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-04-24T13:30:27.000Z","updated_at":"2025-01-23T14:19:19.000Z","dependencies_parsed_at":"2024-04-25T15:47:54.891Z","dependency_job_id":"c01a8553-f8b4-4f6c-9f2b-c33fa5ef4e75","html_url":"https://github.com/reharish/robotframework-pyserial","commit_stats":{"total_commits":37,"total_committers":5,"mean_commits":7.4,"dds":0.3783783783783784,"last_synced_commit":"0088333ecfcde4291e93872bc8e2772823bb8672"},"previous_names":["reharish/robotframework-pyserial"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/reharish/robotframework-pyserial","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reharish%2Frobotframework-pyserial","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reharish%2Frobotframework-pyserial/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reharish%2Frobotframework-pyserial/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reharish%2Frobotframework-pyserial/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/reharish","download_url":"https://codeload.github.com/reharish/robotframework-pyserial/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reharish%2Frobotframework-pyserial/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268470797,"owners_count":24255391,"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","status":"online","status_checked_at":"2025-08-02T02:00:12.353Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["pyserial","robot-framework","robotframework","robotframework-library","serial","serial-communication"],"created_at":"2024-09-26T10:41:12.970Z","updated_at":"2025-08-02T23:05:56.247Z","avatar_url":"https://github.com/reharish.png","language":"Python","funding_links":[],"categories":["Libraries"],"sub_categories":["Embedded"],"readme":"# Robot Framework - SerialLibrary\n\n## Overview\n\nPySerial Robot Framework Library is a Python library for interacting with serial devices using Robot Framework. This library provides keywords for connecting to serial devices, reading and writing data, setting timeouts, and more.\n\n## Installation\n\n![pypi workflow](https://github.com/reharish/robotframework-pyserial/actions/workflows/pypi-package.yml/badge.svg)\n\n```bash\npip install robotframework-pyserial\n```\n\n\n## Documentation\n\n![docs workflow](https://github.com/reharish/robotframework-pyserial/actions/workflows/docs-pages.yml/badge.svg)\n\nFor detailed documentation of each keyword and usage examples, refer to the documentation in the below link,\n\nhttps://reharish.github.io/robotframework-pyserial\n\n## Project Inspiration\n\n- [zilogic-systems/parrot](https://github.com/zilogic-systems/parrot) - Embedded Test Automation Framework, based on Robot Framework.\n\n- [pySerial](https://github.com/pyserial/pyserial) - Python serial port access library\n\n## Usage\n\nTo use the PySerial Robot Framework Library in your Robot Framework test suites, you need to import it at the beginning of your test suite file:\n\n```robot\n*** Settings ***\nLibrary    SerialLibrary\n\n*** Test Cases ***\nExample Test\n    Connect        COM1    9600\n    Set Timeout    5\n    Write          Hello, world!\n    ${data}=       Read\n    Should Be Equal    ${data}    Hello, world!\n    Disconnect from Serial\n```\n\n## Keywords\n\n| Keyword                  | Description                                    |\n|--------------------------|------------------------------------------------|\n| **Connect**              | Connects to a serial device.                   |\n| **Disconnect**           | Disconnects from the serial device.            |\n| **Set Timeout**          | Sets the read timeout for the serial device.   |\n| **Set Write Timeout**    | Sets the write timeout for the serial device.  |\n| **Set Unicode**          | Sets the Unicode encoding for data communication. |\n| **Read**                 | Reads data from the serial device.             |\n| **Write**                | Writes data to the serial device.              |\n| **Read until**           | Reads data from the serial device until a specified string is encountered. |\n| **Read All**             | Reads all the data from the input buffer.      |\n| **Reset Input Buffer**   | Clear the input buffer for the serial device.  |\n| **Reset Output Buffer**  | Clear the output buffer for the serial device. |\n| **Save buffer to file**  | Saves the data buffer into a file.             |\n\n\n## Contributors\n\n- Harishbabu Rengaraj([@reharish](https://github.com/reharish))\n- Abisheak Kumarasamy ([@abi-sheak](https://github.com/abi-sheak))\n- Karl Palsson ([@karlp](https://github.com/karlp))\n\n\n## License\n\n- See the `LICENSE` file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freharish%2Frobotframework-pyserial","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freharish%2Frobotframework-pyserial","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freharish%2Frobotframework-pyserial/lists"}