{"id":41249661,"url":"https://github.com/ga4gh/ga4gh-testbed-lib","last_synced_at":"2026-01-23T01:33:47.635Z","repository":{"id":41828138,"uuid":"419411711","full_name":"ga4gh/ga4gh-testbed-lib","owner":"ga4gh","description":"Python library for creating GA4GH testbed reports according to a harmonized, cross-workstream schema","archived":false,"fork":false,"pushed_at":"2024-09-30T20:10:15.000Z","size":73,"stargazers_count":1,"open_issues_count":3,"forks_count":1,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-09-29T08:49:44.773Z","etag":null,"topics":["testbed"],"latest_commit_sha":null,"homepage":"","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/ga4gh.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":"2021-10-20T16:39:59.000Z","updated_at":"2023-04-28T19:48:21.000Z","dependencies_parsed_at":"2024-09-06T16:35:27.437Z","dependency_job_id":null,"html_url":"https://github.com/ga4gh/ga4gh-testbed-lib","commit_stats":{"total_commits":41,"total_committers":4,"mean_commits":10.25,"dds":0.2195121951219512,"last_synced_commit":"599bb28e58c82e30058239e04525fba313a4bae4"},"previous_names":["jb-adams/ga4gh-testbed-lib"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/ga4gh/ga4gh-testbed-lib","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ga4gh%2Fga4gh-testbed-lib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ga4gh%2Fga4gh-testbed-lib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ga4gh%2Fga4gh-testbed-lib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ga4gh%2Fga4gh-testbed-lib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ga4gh","download_url":"https://codeload.github.com/ga4gh/ga4gh-testbed-lib/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ga4gh%2Fga4gh-testbed-lib/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28677710,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T01:00:35.747Z","status":"ssl_error","status_checked_at":"2026-01-23T01:00:19.529Z","response_time":144,"last_error":"SSL_read: 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":["testbed"],"created_at":"2026-01-23T01:33:46.979Z","updated_at":"2026-01-23T01:33:47.627Z","avatar_url":"https://github.com/ga4gh.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"https://www.ga4gh.org/wp-content/themes/ga4gh/dist/assets/svg/logos/logo-full-color.svg\" alt=\"GA4GH Logo\" style=\"width: 400px;\"/\u003e\n\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg?style=flat-square)](https://opensource.org/licenses/Apache-2.0)\n[![Python](https://img.shields.io/badge/python-3.7|3.8|3.9|3.10-blue.svg?style=flat-square)](https://www.python.org/)\n[![GitHub Actions](https://img.shields.io/github/workflow/status/ga4gh/ga4gh-testbed-lib/Test/main?style=flat-square)](https://github.com/ga4gh/ga4gh-testbed-lib/actions)\n[![Coveralls](https://img.shields.io/coveralls/github/ga4gh/ga4gh-testbed-lib/main?style=flat-square)](https://coveralls.io/github/ga4gh/ga4gh-testbed-lib)\n\n# GA4GH Testbed Lib\n\nPython library for creating GA4GH testbed reports according to a harmonized, cross-workstream schema\n\n## Installation\n\nAs a prerequisite, please ensure you have Python 3 installed on your machine.\n`ga4gh-testbed-lib` is tested on the following Python versions:\n* v3.7\n* v3.8\n* v3.9\n* v3.10\n\n`ga4gh-testbed-lib` is a library that can be imported into your Python project.\nTo do so, first install it via `pip`:\n\n```\npip install ga4gh-testbed-lib\n```\n\nNote: We recommend using a Python virtual environment when building any Python project to avoid dependency conflicts with other projects on your system.\n\n## Usage\n\nOnce installed, you may import the `ga4gh-testbed-lib` in your Python modules. We recommend only importing the `Report` class directly: \n```\nfrom ga4gh.testbed.report.report import Report\n...\nreport = Report()\n```\n\nMore documentation to come on how to use the report library\n\n## Test\n\nTo contribute to the testbed library, you will need to clone the repository:\n```\ngit clone https://github.com/ga4gh/ga4gh-testbed-lib.git\n```\n\nTo run tests, you will need to install test dependencies (i.e. pytest):\n```\npip install -r requirements.txt\n```\n\nTests can be run via `pytest`:\n```\npython -m pytest --cov\n```\n\n## Changelog\n\n### v0.2.0\n* Able to submit reports to Testbed API via standard `POST` request\n\n### v0.1.2\n* Test level entity now has a `message` attribute for capturing test result summary in a single message\n\n## Maintainers\n\n* GA4GH Tech Team [ga4gh-tech-team@ga4gh.org](mailto:ga4gh-tech-team@ga4gh.org)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fga4gh%2Fga4gh-testbed-lib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fga4gh%2Fga4gh-testbed-lib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fga4gh%2Fga4gh-testbed-lib/lists"}