{"id":43770188,"url":"https://github.com/cesbit/qpack","last_synced_at":"2026-02-05T16:34:31.877Z","repository":{"id":42694470,"uuid":"69739155","full_name":"cesbit/qpack","owner":"cesbit","description":"Fast and efficient data serializer (Python)","archived":false,"fork":false,"pushed_at":"2022-09-28T14:06:37.000Z","size":319,"stargazers_count":6,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-08-24T17:48:10.411Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C","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/cesbit.png","metadata":{"files":{"readme":"README.md","changelog":"ChangeLog","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-10-01T13:04:14.000Z","updated_at":"2022-01-25T11:58:23.000Z","dependencies_parsed_at":"2022-08-27T21:01:11.258Z","dependency_job_id":null,"html_url":"https://github.com/cesbit/qpack","commit_stats":null,"previous_names":["transceptor-technology/qpack"],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/cesbit/qpack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesbit%2Fqpack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesbit%2Fqpack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesbit%2Fqpack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesbit%2Fqpack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cesbit","download_url":"https://codeload.github.com/cesbit/qpack/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesbit%2Fqpack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29125877,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T14:05:12.718Z","status":"ssl_error","status_checked_at":"2026-02-05T14:03:53.078Z","response_time":65,"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":[],"created_at":"2026-02-05T16:34:31.023Z","updated_at":"2026-02-05T16:34:31.867Z","avatar_url":"https://github.com/cesbit.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![CI](https://github.com/cesbit/qpack/workflows/CI/badge.svg)](https://github.com/cesbit/qpack/actions)\n[![Release Version](https://img.shields.io/github/release/cesbit/qpack)](https://github.com/cesbit/qpack/releases)\n\nQPack\n=====\n\nQPack is a fast and efficient serialization format like MessagePack.\nOne key difference is flexible map and array support which allows\nto write directly to a qpack buffer without the need to know\nthe size for the map or array beforehand.\n\n\nInstallation\n------------\n\nFrom PyPI (recommend)\n\n```\npip install qpack\n```\n\nFrom source code\n\n```\npython setup.py install\n```\n\nPack\n----\n\n`qpack.packb(object)`\n\nUnpack\n----\n\nUnpack serialized data. When decode is left None, each string\nwill be returned as bytes.\n\n`qpack.unpackb(qp, decode=None, ignore_decode_errors=False, use_tuples=False)`\n\n\nExample\n-------\n\n```python\nimport qpack\n\n# define some test data\ndata = {'name': 'Iris', 'age': 9}\n\n# serialize into qpack format\nqp = qpack.packb(data)\n\n# unpack the serialized data\nunpacked = qpack.unpackb(qp, decode='utf-8')\n\n# left see what we've got...\nprint(unpacked)  # {'name': 'Iris', 'age': 3}\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcesbit%2Fqpack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcesbit%2Fqpack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcesbit%2Fqpack/lists"}