{"id":27917969,"url":"https://github.com/reiver/go-athandle","last_synced_at":"2026-06-15T20:31:34.290Z","repository":{"id":291596877,"uuid":"978135160","full_name":"reiver/go-athandle","owner":"reiver","description":null,"archived":false,"fork":false,"pushed_at":"2025-05-06T19:23:18.000Z","size":32,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-22T09:53:32.301Z","etag":null,"topics":["at-handle","at-protocol","atproto","atprotocol","bluesky","bsky"],"latest_commit_sha":null,"homepage":"","language":"Go","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/reiver.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-05-05T14:20:45.000Z","updated_at":"2025-05-06T19:23:21.000Z","dependencies_parsed_at":"2025-05-06T12:57:21.608Z","dependency_job_id":"689acf62-8c16-467b-bc36-3d01f1a6f9eb","html_url":"https://github.com/reiver/go-athandle","commit_stats":null,"previous_names":["reiver/go-athndl","reiver/go-athandle"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/reiver/go-athandle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reiver%2Fgo-athandle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reiver%2Fgo-athandle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reiver%2Fgo-athandle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reiver%2Fgo-athandle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/reiver","download_url":"https://codeload.github.com/reiver/go-athandle/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reiver%2Fgo-athandle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34379915,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"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":["at-handle","at-protocol","atproto","atprotocol","bluesky","bsky"],"created_at":"2025-05-06T18:03:31.445Z","updated_at":"2026-06-15T20:31:34.270Z","avatar_url":"https://github.com/reiver.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# go-athandle\n\nPackage **athandle** provides an implementation of **BlueSky**'s **AT-Protocol** **handle** , for the Go programming language.\n\nI.e., **handle**s are the things that look like these:\n\n* `@reiver.bsky.social`\n* `@pfrazee.com`\n\nAlthough technically, the **handle** part of those does not include the `@`.\nI.e.:\n\n* `reiver.bsky.social`\n* `pfrazee.com`\n\n**AT-Protocol** **handles** are defined here:\nhttps://atproto.com/specs/handle\n\n## Documention\n\nOnline documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-athandle\n\n[![GoDoc](https://godoc.org/github.com/reiver/go-athandle?status.svg)](https://godoc.org/github.com/reiver/go-athandle)\n\n## Examples\n\nTo resolve a **handle** to a **DID** do something similar to:\n\n```golang\nimport \"github.com/reiver/go-athandle\"\n\n// ...\n\nvar handle string = \"example.com\"\n\ndid, err := athandle.Resolve(handle)\n\n// did == \"did:plc:scewmn2pl3oz36mxme2b6czz\"\n\n```\n\nTo normalize a **handle** do something similar to:\n\n```golang\nimport \"github.com/reiver/go-athandle\"\n\n// ...\n\nvar handle string = \"Example.COM\"\n\nnormalizedHandle := athandle.Normalize(handle)\n\n// normalizedHandle == \"example.com\"\n```\n\nTo validate a **handle** do something similar to:\n\n```golang\nimport \"github.com/reiver/go-athandle\"\n\n// ...\n\nvar handle string = \"Example.COM\"\n\nerr := athandle.Validate(handle)\n\n// returns an error if the handle is invalid\n```\n\n## Import\n\nTo import package **athandle** use `import` code like the follownig:\n```\nimport \"github.com/reiver/go-athandle\"\n```\n\n## Installation\n\nTo install package **athandle** do the following:\n```\nGOPROXY=direct go get https://github.com/reiver/go-athandle\n```\n\n## Author\n\nPackage **athandle** was written by [Charles Iliya Krempeaux](http://reiver.link)\n\n## See Also\n\n* https://github.com/reiver/go-athandle\n* https://github.com/reiver/go-atproto\n* https://github.com/reiver/go-aturi\n* https://github.com/reiver/go-bsky\n* https://github.com/reiver/go-did\n* https://github.com/reiver/go-didplc\n* https://github.com/reiver/go-nsid\n* https://github.com/reiver/go-xrpc\n* https://github.com/reiver/go-xrpcuri\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freiver%2Fgo-athandle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freiver%2Fgo-athandle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freiver%2Fgo-athandle/lists"}