{"id":23948580,"url":"https://github.com/propan/clj-lz77","last_synced_at":"2025-08-12T10:11:32.392Z","repository":{"id":8993068,"uuid":"10742386","full_name":"propan/clj-lz77","owner":"propan","description":"an implementation of LZ77 compression algorithm written in Clojure","archived":false,"fork":false,"pushed_at":"2013-06-28T16:43:58.000Z","size":416,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-04T13:22:20.299Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Clojure","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/propan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-06-17T17:03:14.000Z","updated_at":"2022-07-15T16:07:38.000Z","dependencies_parsed_at":"2022-08-24T23:51:39.571Z","dependency_job_id":null,"html_url":"https://github.com/propan/clj-lz77","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/propan/clj-lz77","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/propan%2Fclj-lz77","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/propan%2Fclj-lz77/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/propan%2Fclj-lz77/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/propan%2Fclj-lz77/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/propan","download_url":"https://codeload.github.com/propan/clj-lz77/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/propan%2Fclj-lz77/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270041199,"owners_count":24516789,"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","status":"online","status_checked_at":"2025-08-12T02:00:09.011Z","response_time":80,"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":[],"created_at":"2025-01-06T10:19:35.350Z","updated_at":"2025-08-12T10:11:32.371Z","avatar_url":"https://github.com/propan.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# clj-lz77\n\nA Clojure library that performs compression/decompression using LZ77 algorithm.\n\n## Usage\n\nInclude the library in your leiningen project dependencies:\n\n```clojure\n[clj-lz77 \"0.1.0\"]\n```\n\n## Examples\n\n```clojure\n(use 'clj-lz77.core)\n\n; to compress a file\n(compress-file \"/tmp/my-big-file.md\" \"/tmp/my-small-file.lz77\")\n\n; to decompress a file\n(decompress-file \"/tmp/my-small-file.lz77\" \"/tmp/my-big-file.md\")\n```\n\nYou can also use encode and decode functions that operate on a sequence level:\n\n```clojure\n(use 'clj-lz77.encoder 'clj-lz77.decoder)\n\n(def v [88 89 95 101 89 95 101 83 15])\n\n; produces a lazy encoded sequence of bytes\n(def e (encode v))\n\n; produces a lazy decoded sequence of bytes\n(def d (decode e))\n\n(= v d) ; true, right?\n```\n\n## License\n\nCopyright © 2013 Pavel Prokopenko\n\nDistributed under the Eclipse Public License, the same as Clojure.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpropan%2Fclj-lz77","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpropan%2Fclj-lz77","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpropan%2Fclj-lz77/lists"}