{"id":19805748,"url":"https://github.com/remirobert/crackers","last_synced_at":"2026-03-09T20:05:35.657Z","repository":{"id":20909053,"uuid":"24196810","full_name":"remirobert/Crackers","owner":"remirobert","description":"Simple network library in Swift, for iOS and OSX","archived":false,"fork":false,"pushed_at":"2016-01-06T07:06:21.000Z","size":311,"stargazers_count":32,"open_issues_count":0,"forks_count":3,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-06-14T19:36:16.975Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Swift","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/remirobert.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}},"created_at":"2014-09-18T16:54:58.000Z","updated_at":"2024-11-07T05:28:55.000Z","dependencies_parsed_at":"2022-08-29T10:10:51.529Z","dependency_job_id":null,"html_url":"https://github.com/remirobert/Crackers","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/remirobert/Crackers","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remirobert%2FCrackers","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remirobert%2FCrackers/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remirobert%2FCrackers/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remirobert%2FCrackers/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/remirobert","download_url":"https://codeload.github.com/remirobert/Crackers/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remirobert%2FCrackers/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30310037,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T17:35:44.120Z","status":"ssl_error","status_checked_at":"2026-03-09T17:35:43.707Z","response_time":61,"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":[],"created_at":"2024-11-12T09:05:09.286Z","updated_at":"2026-03-09T20:05:35.617Z","avatar_url":"https://github.com/remirobert.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src =\"https://raw.githubusercontent.com/remirobert/Crackers/master/ressources/logo.gif\"/\u003e\n  \u003ch1 align=\"center\"\u003eCrackers\u003c/h1\u003e\n  \u003cp aligne=\"center\"\u003e\u003ci\u003eArrête de cracker, instancie un Crackers !\u003c/i\u003e\u003c/p\u003e\n\u003c/p\u003e\n\nStop to get worked up, use Crackers !\nCrackers is an **HTTP networking** library written in Swift, for **OSX** and **iOS**.\n\n\u003ch1 align=\"center\"\u003eFeature\u003c/h1\u003e\n\n - HTTP methods : **GET**, **POST**, **PUT**, **DELETE**\n - Asynchronous request\n - Management of large packets\n - HTTP Basic Authentication\n\n\u003ch1 align=\"center\"\u003eUsage\u003c/h1\u003e\n\u003ch3 align=\"center\"\u003eGET Request\u003c/h3\u003e\n\n```Swift\nlet requestGet = Crackers(url: \"http://httpbin.org/get\")\n\nrequestGet.sendRequest(.GET, blockCompletion: { (data, response, error) -\u003e () in\nif (error == nil) {\n    println(\"request success ! \\(response), \\(data)\")\n  }\n  else {\n    println(\"\\(error)\")\n  }\n})\n```\n\n\u003ch3 align=\"center\"\u003ePOST Request with parameters\u003c/h3\u003e\n\n```Swift\nlet requestPost = Crackers(url: \"http://httpbin.org/post\")\n\nvar parameters = Dictionary\u003cString, String\u003e()\nparameters[\"username\"] = \"remi\"\nparameters[\"password\"] = \"github\"\n        \nrequestPost.setParameters(parameters)\nrequestPost.setHeader(\"application/json\", headerField: \"Content-Type\")\n        \nrequestPost.sendRequest(.POST, blockCompletion: { (data, response, error) -\u003e () in\n  if (error == nil) {\n    println(\"request success ! \\(response), \\(data)\")\n  }\n  else {\n    println(\"\\(error)\")\n  }\n})\n```\n\n\u003ch3 align=\"center\"\u003eHTTP Basic Authentication\u003c/h3\u003e\n\n```Swift\nlet requestGet = Crackers(url: \"http://httpbin.org/get\")\n        \nrequestGet.setAutorizationHeader(\"remi\", \"github\")\n        \nrequestGet.sendRequest(.POST, blockCompletion: { (data, response, error) -\u003e () in\n  if (error == nil) {\n    println(\"request success ! \\(response), \\(data)\")\n  }\n  else {\n    println(\"\\(error)\")\n  }\n})\n```\nCurrently used in a personnal work.\n\n\u003ch1 align=\"center\"\u003eAuthor\u003c/h1\u003e\nRémi ROBERT, remirobert33530@gmail.com\n\n\u003ch1 align=\"center\"\u003eLicence\u003c/h1\u003e\nCrackers is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremirobert%2Fcrackers","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fremirobert%2Fcrackers","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremirobert%2Fcrackers/lists"}