{"id":18162717,"url":"https://github.com/sco1/xbmini-py","last_synced_at":"2025-05-07T22:47:27.862Z","repository":{"id":62593084,"uuid":"542312931","full_name":"sco1/xbmini-py","owner":"sco1","description":"Python Toolkit for the GCDC HAM","archived":false,"fork":false,"pushed_at":"2025-05-07T00:43:24.000Z","size":838,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-07T22:47:18.486Z","etag":null,"topics":["data-analysis","data-visualization","python","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sco1.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","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,"zenodo":null},"funding":{"github":"sco1"}},"created_at":"2022-09-27T22:31:42.000Z","updated_at":"2025-05-07T00:43:27.000Z","dependencies_parsed_at":"2024-02-15T17:48:13.516Z","dependency_job_id":"fc5e33f8-1f26-49a6-aa7c-93fb063a470e","html_url":"https://github.com/sco1/xbmini-py","commit_stats":{"total_commits":30,"total_committers":2,"mean_commits":15.0,"dds":"0.16666666666666663","last_synced_commit":"7ecf015b454f758915c6e913429ca7afeab2c7c7"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":"sco1/py-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sco1%2Fxbmini-py","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sco1%2Fxbmini-py/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sco1%2Fxbmini-py/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sco1%2Fxbmini-py/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sco1","download_url":"https://codeload.github.com/sco1/xbmini-py/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252967984,"owners_count":21833247,"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":["data-analysis","data-visualization","python","python3"],"created_at":"2024-11-02T10:05:03.785Z","updated_at":"2025-05-07T22:47:27.843Z","avatar_url":"https://github.com/sco1.png","language":"Python","funding_links":["https://github.com/sponsors/sco1"],"categories":[],"sub_categories":[],"readme":"# xbmini-py\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/xbmini-py/0.5.1?logo=python\u0026logoColor=FFD43B)](https://pypi.org/project/xbmini-py/)\n[![PyPI](https://img.shields.io/pypi/v/xbmini-py)](https://pypi.org/project/xbmini-py/)\n[![PyPI - License](https://img.shields.io/pypi/l/xbmini-py?color=magenta)](https://github.com/sco1/xbmini-py/blob/master/LICENSE)\n[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/sco1/xbmini-py/main.svg)](https://results.pre-commit.ci/latest/github/sco1/xbmini-py/main)\n\nPython Toolkit for the [GCDC HAM](http://www.gcdataconcepts.com/ham.html)\n\n## Known Firmware Compatibility\nThis package is currently tested against firmware versions `1379`, `2108`, and `2570`, compatibility with other firmware versions is not guaranteed.\n\n## Installation\nInstall from PyPi with your favorite `pip` invocation:\n\n```bash\n$ pip install xbmini-py\n```\n\nYou can confirm proper installation via the `xbmini` CLI:\n\u003c!-- [[[cog\nimport cog\nfrom subprocess import PIPE, run\nout = run([\"xbmini\", \"--help\"], stdout=PIPE, encoding=\"ascii\")\ncog.out(\n    f\"```\\n$ xbmini --help\\n{out.stdout.rstrip()}\\n```\"\n)\n]]] --\u003e\n```\n$ xbmini --help\nUsage: xbmini [OPTIONS] COMMAND [ARGS]...\n\nOptions:\n  --help  Show this message and exit.\n\nCommands:\n  merge  Combine multiple log sessions.\n  trim   XBMini log trimming.\n```\n\u003c!-- [[[end]]] --\u003e\n\n## CLI Usage\n### `xbmini merge batch`\nBatch combine XBM files for each logger and dump a serialized `XBMLog` instance to a CSV in its respective logger's directory.\n#### Input Parameters\n| Parameter       | Description                                            | Type         | Default                                |\n|-----------------|--------------------------------------------------------|--------------|----------------------------------------|\n| `--top-dir`     | Path to top-level log directory to search.\u003csup\u003e1\u003c/sup\u003e | `Path\\|None` | GUI Prompt                             |\n| `--log-pattern` | XBMini log file glob pattern.\u003csup\u003e2\u003c/sup\u003e              | `str`        | `\"*.CSV\"`                              |\n| `--dry-run`     | Show processing pipeline without processing any files. | `bool`       | `False`                                |\n| `--skip-strs`   | Skip files containing any of the provided substrings.  | `list[str]`  | `[\"processed\", \"trimmed\", \"combined\"]` |\n\n1. Log searching will be executed recursively starting from the top directory\n2. Case sensitivity is deferred to the host OS\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsco1%2Fxbmini-py","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsco1%2Fxbmini-py","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsco1%2Fxbmini-py/lists"}