{"id":48417421,"url":"https://github.com/us-irs/cfdp-py","last_synced_at":"2026-04-06T07:35:12.063Z","repository":{"id":218899318,"uuid":"747649122","full_name":"us-irs/cfdp-py","owner":"us-irs","description":"Python Library for high level CCSDS File Delivery Protocol (CFDP) components","archived":false,"fork":false,"pushed_at":"2025-09-25T11:16:13.000Z","size":347,"stargazers_count":24,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-27T15:33:07.666Z","etag":null,"topics":["ccsds-standards","cfdp","file-transfer","python3"],"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/us-irs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null,"notice":"NOTICE","maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-01-24T11:13:12.000Z","updated_at":"2025-11-10T14:21:36.000Z","dependencies_parsed_at":"2024-01-24T14:57:47.663Z","dependency_job_id":"408f0724-cf97-4fa8-816e-41bf6c8b381c","html_url":"https://github.com/us-irs/cfdp-py","commit_stats":null,"previous_names":["us-irs/cfdpy","us-irs/cfdp-py","us-irs/py-cfdp"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/us-irs/cfdp-py","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/us-irs%2Fcfdp-py","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/us-irs%2Fcfdp-py/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/us-irs%2Fcfdp-py/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/us-irs%2Fcfdp-py/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/us-irs","download_url":"https://codeload.github.com/us-irs/cfdp-py/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/us-irs%2Fcfdp-py/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31463160,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T21:22:52.476Z","status":"online","status_checked_at":"2026-04-06T02:00:07.287Z","response_time":112,"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":["ccsds-standards","cfdp","file-transfer","python3"],"created_at":"2026-04-06T07:35:03.208Z","updated_at":"2026-04-06T07:35:12.054Z","avatar_url":"https://github.com/us-irs.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![ci](https://github.com/us-irs/cfdp-py/actions/workflows/ci.yml/badge.svg)](https://github.com/us-irs/cfdp-py/actions/workflows/ci.yml)\n[![Documentation Status](https://readthedocs.org/projects/cfdp-py/badge/?version=latest)](https://cfdp-py.readthedocs.io/en/latest/?badge=latest)\n[![codecov](https://codecov.io/gh/us-irs/cfdp-py/graph/badge.svg?token=FBL1NR54BI)](https://codecov.io/gh/us-irs/cfdp-py)\n[![PyPI version](https://badge.fury.io/py/cfdp-py.svg)](https://badge.fury.io/py/cfdp-py)\n\ncfdp-py - High level Python library for CFDP components\n======================\n\nThe `cfdp-py` library offers some high-level CCSDS File Delivery Protocol (CFDP) components to\nperform file transfers according to the [CCSDS Blue Book 727.0-B-5](https://public.ccsds.org/Pubs/727x0b5.pdf).\nThe underlying base packet library used to generate the packets to be sent is the\n[spacepackets](https://github.com/us-irs/spacepackets-py) library.\n\n# Features\n\nThis library supports the following features:\n\n- Unacknowledged (class 1) file transfers for both the sending and destination side\n- Acknowledged (class 2) file transfers for both the sending and destination side\n\nThe following features have not been implemented yet. PRs or notifications for demand are welcome!\n\n- Suspending transfers\n- Inactivity handling\n- Start and end of transmission and reception opportunity handling\n- Keep Alive and Prompt PDU handling\n\n# Install\n\nYou can install this package from PyPI\n\nFor example, using [`uv`](https://docs.astral.sh/uv/)\n\nSetting up virtual environment:\n\n```sh\nuv venv\n```\n\nRegular install:\n\n```sh\nuv pip install -e .\n```\n\nInteractive install with testing support:\n\n```sh\nuv pip install -e \".[test]\"\n```\n\n# Examples\n\nYou can find all examples [inside the documentation](https://cfdp-py.readthedocs.io/en/latest/examples.html)\nand the `examples` directory of this repository.\n\n# Tests\n\nIf you want to run the tests, it is recommended to install `pytest` and `coverage` (optional)\nfirst. You also have to install the package with the optional `test` feature:\n\n```sh\nuv pip install -e \".[test]\"\n```\n\nRunning tests regularly:\n\n```sh\npytest\n```\n\nRunning tests with coverage:\n\n```sh\ncoverage run -m pytest\n```\n\n# Documentation\n\nThe documentation is built with Sphinx\n\nInstall the required dependencies first:\n\n```sh\npip install -r docs/requirements.txt\n```\n\nThen the documentation can be built with\n\n```sh\ncd docs\nmake html\n```\n\nYou can run the doctests with\n\n```sh\nmake doctest\n```\n\n# Formatting and Linting\n\nLinting:\n\n```sh\nruff check\n```\n\nFormatting:\n\n```sh\nruff format\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fus-irs%2Fcfdp-py","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fus-irs%2Fcfdp-py","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fus-irs%2Fcfdp-py/lists"}