{"id":24486836,"url":"https://github.com/qvecs/qbase58","last_synced_at":"2026-02-16T06:34:48.195Z","repository":{"id":273328241,"uuid":"915402060","full_name":"qvecs/qbase58","owner":"qvecs","description":"🔩 A quick base58 encoder/decoder implementation written in C, with Python bindings.","archived":false,"fork":false,"pushed_at":"2025-02-09T14:13:52.000Z","size":17,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-10T07:29:37.016Z","etag":null,"topics":["base58","c","python"],"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/qvecs.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,"zenodo":null}},"created_at":"2025-01-11T18:50:08.000Z","updated_at":"2025-08-12T23:40:44.000Z","dependencies_parsed_at":null,"dependency_job_id":"6675cffe-e31a-4561-84f5-a4ca4ec9f034","html_url":"https://github.com/qvecs/qbase58","commit_stats":null,"previous_names":["qvecs/qbase58"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/qvecs/qbase58","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qvecs%2Fqbase58","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qvecs%2Fqbase58/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qvecs%2Fqbase58/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qvecs%2Fqbase58/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qvecs","download_url":"https://codeload.github.com/qvecs/qbase58/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qvecs%2Fqbase58/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29501918,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T05:57:17.024Z","status":"ssl_error","status_checked_at":"2026-02-16T05:56:49.929Z","response_time":115,"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":["base58","c","python"],"created_at":"2025-01-21T15:19:41.059Z","updated_at":"2026-02-16T06:34:48.173Z","avatar_url":"https://github.com/qvecs.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🔩 Quick Base58 _(qbase58)_\n\n\u003cp align=\"center\"\u003e\n\n  \u003ca href=\"https://github.com/qvecs/qbase58/actions?query=workflow%3ABuild\"\u003e\n    \u003cimg src=\"https://github.com/qvecs/qbase58/workflows/Build/badge.svg\"\u003e\n  \u003c/a\u003e\n\n  \u003ca href=\"https://opensource.org/licenses/MIT\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/License-MIT-blue.svg\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\nA quick base58 encoder/decoder implementation written in C, with Python bindings.\n\n## Install\n\n```\npip install qbase58\n```\n\n## Usage\n\n```python\nimport qbase58\n\nstring = b\"Hello, World!\"\n\nencoded = qbase58.encode(string)\nprint(f\"Encoded: {encoded}\")\n\ndecoded = qbase58.decode(encoded)\nprint(f\"Decoded: {decoded}\")\n```\n\n## Benchmark\n\nComparing with the two other Python base58 libraries:\n\n* [base58](https://pypi.org/project/base58/)\n* [based58](https://pypi.org/project/based58/)\n\n```bash\n--- Data Set: SMALL (size=100 bytes) ---\nbase58   =\u003e avg: 45.1845 ms (std: 2.7698 ms) over 1000 iterations\nbased58  =\u003e avg: 12.7324 ms (std: 0.1445 ms) over 1000 iterations\nqbase58  =\u003e avg: 6.5189 ms (std: 0.0414 ms) over 1000 iterations\n\n--- Data Set: MEDIUM (size=1000 bytes) ---\nbase58   =\u003e avg: 763.2404 ms (std: 3.9402 ms) over 500 iterations\nbased58  =\u003e avg: 646.2393 ms (std: 2.4316 ms) over 500 iterations\nqbase58  =\u003e avg: 320.7714 ms (std: 1.1277 ms) over 500 iterations\n\n--- Data Set: LARGE (size=5000 bytes) ---\nbase58   =\u003e avg: 319.6193 ms (std: 1.5274 ms) over 10 iterations\nbased58  =\u003e avg: 320.4021 ms (std: 1.2545 ms) over 10 iterations\nqbase58  =\u003e avg: 162.0134 ms (std: 0.7824 ms) over 10 iterations\n```\n\nSee `scripts/benchmark.py` for benchmarking details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqvecs%2Fqbase58","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqvecs%2Fqbase58","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqvecs%2Fqbase58/lists"}