{"id":32195214,"url":"https://github.com/mfornos/clojure-soup","last_synced_at":"2026-02-19T09:01:19.920Z","repository":{"id":3551939,"uuid":"4612681","full_name":"mfornos/clojure-soup","owner":"mfornos","description":"Clojurized access for Jsoup.","archived":false,"fork":false,"pushed_at":"2015-09-24T15:47:28.000Z","size":3695,"stargazers_count":40,"open_issues_count":1,"forks_count":4,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-22T02:21:49.333Z","etag":null,"topics":["html-parser","jsoup"],"latest_commit_sha":null,"homepage":null,"language":"Clojure","has_issues":true,"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/mfornos.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":"2012-06-10T04:21:21.000Z","updated_at":"2023-04-29T15:50:50.000Z","dependencies_parsed_at":"2022-07-28T21:18:58.648Z","dependency_job_id":null,"html_url":"https://github.com/mfornos/clojure-soup","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mfornos/clojure-soup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mfornos%2Fclojure-soup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mfornos%2Fclojure-soup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mfornos%2Fclojure-soup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mfornos%2Fclojure-soup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mfornos","download_url":"https://codeload.github.com/mfornos/clojure-soup/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mfornos%2Fclojure-soup/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29609524,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T06:47:36.664Z","status":"ssl_error","status_checked_at":"2026-02-19T06:45:47.551Z","response_time":117,"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":["html-parser","jsoup"],"created_at":"2025-10-22T02:03:54.057Z","updated_at":"2026-02-19T09:01:19.894Z","avatar_url":"https://github.com/mfornos.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Clojure Soup\n\nClojurized access for [Jsoup](http://jsoup.org/).\n\n[![clojars version](https://clojars.org/clj-soup/clojure-soup/latest-version.svg)](https://clojars.org/clj-soup/clojure-soup)\n\n## Examples\n\nGet some links of a web page:\n\n```clojure\n(use 'jsoup.soup)\n\n($ (get! \"http://google.com\" :user-agent \"CoCo/1.0\") ;; get request with options\n   td \"a[href]\" ;; Jsoup selectors\n   (attr \"abs:href\")) ;; attribute selector\n```\n\nGet all Emoji names concatenated by single bars from 'emoji-cheat-sheet.com':\n\n```clojure\n($ (get! \"http://www.emoji-cheat-sheet.com/\") \n   \"li div:has(span.emoji)\" (text) \n   (map #(clojure.string/replace % \":\" \"\")) \n   (clojure.string/join \"|\")) \n```\n\nPost with basic authentication:\n\n```clojure\n($ (post! \"http://127.0.0.1\"  \n        :user-agent \"CoCo/1.0\" \n        :follow-redirects true\n        :auth (basic-auth \"night\" \"password\")\n        :cookies {:user \"night\" :other \"value\"}\n        :data {:param \"one\" :another \"2\"}) ;; post options \u0026 data\n td a) ;; Jsoup selectors\n```\n\nParse a local file:\n\n```clojure\n($ (slurp! \"test-content.html\" :encoding \"UTF-8\" :base-uri \"http://base\") \"a[href]\")\n```\n\n[![Build Status](https://travis-ci.org/mfornos/clojure-soup.svg?branch=master)](https://travis-ci.org/mfornos/clojure-soup)\n\nEOF\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmfornos%2Fclojure-soup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmfornos%2Fclojure-soup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmfornos%2Fclojure-soup/lists"}