{"id":15099825,"url":"https://github.com/fjebaker/atomz","last_synced_at":"2026-01-06T20:42:41.510Z","repository":{"id":251432692,"uuid":"837403319","full_name":"fjebaker/atomz","owner":"fjebaker","description":"An Atom syndication feed generator for Zig.","archived":false,"fork":false,"pushed_at":"2024-08-03T13:54:01.000Z","size":22,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-27T09:49:05.301Z","etag":null,"topics":["atom","feed","generator","syndication","zig"],"latest_commit_sha":null,"homepage":"","language":"Zig","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fjebaker.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}},"created_at":"2024-08-02T22:34:00.000Z","updated_at":"2024-08-03T13:54:04.000Z","dependencies_parsed_at":"2024-08-03T00:35:58.102Z","dependency_job_id":"911a9852-856a-4ce2-aa70-3641c78ea7e6","html_url":"https://github.com/fjebaker/atomz","commit_stats":null,"previous_names":["fjebaker/atomz"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fjebaker%2Fatomz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fjebaker%2Fatomz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fjebaker%2Fatomz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fjebaker%2Fatomz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fjebaker","download_url":"https://codeload.github.com/fjebaker/atomz/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245858876,"owners_count":20684057,"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":["atom","feed","generator","syndication","zig"],"created_at":"2024-09-25T17:27:55.735Z","updated_at":"2026-01-06T20:42:41.485Z","avatar_url":"https://github.com/fjebaker.png","language":"Zig","funding_links":[],"categories":[],"sub_categories":[],"readme":"# atomz\n\nAn Atom feed generator for Zig.\n\n```zig\nconst std = @import(\"std\");\nconst atomz = @import(\"atomz\");\n\npub fn main() !void {\n    var gpa = std.heap.GeneralPurposeAllocator(.{}){};\n    defer _ = gpa.deinit();\n    const allocator = gpa.allocator();\n\n    var feed = atomz.Feed.init(allocator);\n    defer feed.deinit();\n\n    try feed.setTitle(\"My new feed\");\n    try feed.setAuthor(\"Syliva\");\n\n    var entry = try feed.newEntry();\n    try entry.setTitle(\"The conquest of cake\");\n\n    const ptr = try entry.newField(\"content\", \"This would be the content.\");\n    try ptr.put(\"type\", \"text/html\");\n\n    try feed.write(std.io.getStdOut().writer());\n}\n```\n\nThis will output the following:\n\n```\n\u003cfeed xmlns=\"http://www.w3.org/2005/Atom\"\u003e\n  \u003ctitle\u003eMy new feed\u003c/title\u003e\n  \u003cauthor\u003eSyliva\u003c/author\u003e\n  \u003centry\u003e\n    \u003ctitle\u003eThe conquest of cake\u003c/title\u003e\n    \u003ccontent type=\"text/html\"\u003eThis would be the content.\u003c/content\u003e\n  \u003c/entry\u003e\n\u003c/feed\u003e\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffjebaker%2Fatomz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffjebaker%2Fatomz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffjebaker%2Fatomz/lists"}