{"id":36613584,"url":"https://github.com/exactpro/tabbyset","last_synced_at":"2026-01-12T09:03:47.676Z","repository":{"id":299817912,"uuid":"1004285872","full_name":"exactpro/tabbyset","owner":"exactpro","description":"🧬 Exactpro basic tooling for working with tests proprietary files","archived":false,"fork":false,"pushed_at":"2025-10-05T08:27:28.000Z","size":111,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-05T10:20:51.562Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://github.com/exactpro/tabbyset/wiki","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/exactpro.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"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,"zenodo":null}},"created_at":"2025-06-18T11:51:05.000Z","updated_at":"2025-10-05T08:27:12.000Z","dependencies_parsed_at":"2025-06-18T13:33:02.979Z","dependency_job_id":"2fad52a8-9e4c-4814-9d00-37efad958d6c","html_url":"https://github.com/exactpro/tabbyset","commit_stats":null,"previous_names":["exactpro/tabbyset"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/exactpro/tabbyset","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exactpro%2Ftabbyset","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exactpro%2Ftabbyset/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exactpro%2Ftabbyset/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exactpro%2Ftabbyset/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/exactpro","download_url":"https://codeload.github.com/exactpro/tabbyset/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exactpro%2Ftabbyset/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28337616,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T06:09:07.588Z","status":"ssl_error","status_checked_at":"2026-01-12T06:05:18.301Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-01-12T09:03:46.976Z","updated_at":"2026-01-12T09:03:47.668Z","avatar_url":"https://github.com/exactpro.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TabbySet\n\nTabbySet is a kit of simple tools for working with all business processes around the exactpro model.\n\n## Installation\n\nYou can install TabbySet using pip:\n\n```bash\npip install tabbyset\n```\n\n\n## Usage\n\nIn general, when you want to write a new script, you should start with the following code:\n\n```python\nimport tabbyset as tbs\n```\n\n`tbs` variable will provide you with all the necessary tools for working with the proprietary tests.\n\nHere are some utilities:\n1. `tbs.Folder` - a class for working with folders\n2. `tbs.TestCase` - model representing the Exactpro proprietary test case\n3. `tbs.Csv1Reader`, `tbs.Csv1Writer` - classes for reading and writing test cases from/to CSV1 files\n4. `tbs.Csv2Reader`, `tbs.Csv2Writer` - classes for reading and writing test cases from/to CSV2 files\n5. `tbs.floor_to_tick`, `tbs.ceil_to_tick`, `tbs.round_to_tick` - functions for rounding prices to the nearest tick\n\n### Example of filtering the CSV file\n\n```python\nimport tabbyset as tbs\nsrc_folder = tbs.Folder.mount_from_current_module('./path/to/folder')\noutput_folder = tbs.Folder.mount_from_current_module('./path/to/output/folder')\n# Get list of all files in the folder\nfiles = src_folder.listdir()\n# You might want to sort the files\nfiles.sort()\nfor file in files:\n    test_script_path = src_folder.get_file_path(file)\n    csv1_reader = tbs.Csv1Reader(test_script_path)\n    csv1_writer = tbs.Csv1Writer(output_folder.get_file_path(file))\n    for test_case in csv1_reader:\n        if {\"Action\": \"Quote\"} not in test_case.steps:\n            csv1_writer.write(test_case)\n    csv1_reader.close()\n    csv1_writer.close()\n```\n\n## Good old instruments\n\nTabbySet provides a set of instruments with the same interface as the ones already present in the business processes,\nbut with tested functionality under the hood and/or faster.\n\n## Testing\n\nTabbySet provides utilities for testing compatible with the `unittest` module.\n\n```python\nfrom tabbyset.testing import TestCaseAssertions #, ... other utilities\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexactpro%2Ftabbyset","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fexactpro%2Ftabbyset","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexactpro%2Ftabbyset/lists"}