{"id":19483386,"url":"https://github.com/cosmosos/cosmoshttp","last_synced_at":"2025-07-23T19:32:08.782Z","repository":{"id":211866404,"uuid":"729815453","full_name":"CosmosOS/CosmosHttp","owner":"CosmosOS","description":null,"archived":false,"fork":false,"pushed_at":"2023-12-18T13:23:16.000Z","size":80,"stargazers_count":11,"open_issues_count":3,"forks_count":1,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-06-14T04:41:22.396Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CosmosOS.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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":"2023-12-10T12:56:39.000Z","updated_at":"2025-03-15T19:23:14.000Z","dependencies_parsed_at":"2024-11-10T20:14:50.990Z","dependency_job_id":"eab7cbba-2f78-4b01-8f14-cc5a2f30bbe3","html_url":"https://github.com/CosmosOS/CosmosHttp","commit_stats":null,"previous_names":["cosmosos/cosmoshttp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CosmosOS/CosmosHttp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CosmosOS%2FCosmosHttp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CosmosOS%2FCosmosHttp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CosmosOS%2FCosmosHttp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CosmosOS%2FCosmosHttp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CosmosOS","download_url":"https://codeload.github.com/CosmosOS/CosmosHttp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CosmosOS%2FCosmosHttp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266738301,"owners_count":23976415,"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-07-23T02:00:09.312Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":"2024-11-10T20:14:48.767Z","updated_at":"2025-07-23T19:32:08.749Z","avatar_url":"https://github.com/CosmosOS.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"﻿\u003ch1 align=\"center\"\u003eCosmosHTTP Client [WIP]\u003c/h1\u003e\n\u003cp\u003e\n  \u003ca href=\"https://www.nuget.org/packages/CosmosHttp/\" target=\"_blank\"\u003e\n    \u003cimg alt=\"Version\" src=\"https://img.shields.io/nuget/v/CosmosHttp.svg\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/CosmosOS/CosmosHttp/blob/main/LICENSE.txt\" target=\"_blank\"\u003e\n    \u003cimg alt=\"License: BSD Clause 3 License\" src=\"https://img.shields.io/badge/license-BSD License-yellow.svg\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003e CosmosHTTP is a HTTP client made in C# for the Cosmos operating system construction kit. GET and PUT are currently supported.\n\n### Todo\nSee [this issue](https://github.com/CosmosOS/CosmosHttp/issues/1) for todo list.\n\n## Usage\n\n### Installation\n\nInstall the Nuget Package from [Nuget](https://www.nuget.org/packages/CosmosHttp/):\n\n```PM\nInstall-Package CosmosHttp -Version 1.0.4\n```\n\n```PM\ndotnet add PROJECT package CosmosHttp --version 1.0.4\n```\n\nOr add these lines to your Cosmos kernel .csproj:\n\n```\n\u003cItemGroup\u003e\n    \u003cPackageReference Include=\"CosmosHttp\" Version=\"1.0.4\" /\u003e\n\u003c/ItemGroup\u003e\n```\n\n### Examples\n\n```CS\nusing CosmosHttp.Client;\n\nHttpRequest request = new();\nrequest.IP = \"34.223.124.45\";\nrequest.Domain = \"neverssl.com\"; //very useful for subdomains on same IP\nrequest.Path = \"/\";\nrequest.Method = \"GET\";\nrequest.Send();\nConsole.WriteLine(request.Response.Content); // or to get bytes Encoding.ASCII.getString(request.Response.GetStream())\n```\n\nHere is a basic wget command implementation using CosmosHttp: [github.com/aura-systems/Aura-Operating-System](https://github.com/aura-systems/Aura-Operating-System/blob/master/SRC/Aura_OS/System/Interpreter/Commands/Network/Wget.cs#L63).\n\n## Authors\n\n👤 **[@valentinbreiz](https://github.com/valentinbreiz)**\n\n👤 **[@2881099](https://github.com/2881099)**\n\n## 🤝 Contributing\n\nContributions, issues and feature requests are welcome! Feel free to check [issues page](https://github.com/CosmosOS/CosmosHttp/issues). \n\n## Show your support\n\nGive a ⭐️ if this project helped you!\n\n## 📝 License\n\nCopyright © 2023 [CosmosOS](https://github.com/CosmosOS). This project is [BSD Clause 3](https://github.com/CosmosOS/CosmosHttp/blob/main/LICENSE.txt) licensed.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcosmosos%2Fcosmoshttp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcosmosos%2Fcosmoshttp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcosmosos%2Fcosmoshttp/lists"}