{"id":20829464,"url":"https://github.com/corvusoft/restless","last_synced_at":"2026-03-02T17:34:16.356Z","repository":{"id":67505183,"uuid":"73342789","full_name":"Corvusoft/restless","owner":"Corvusoft","description":"Corvusoft's Restless framework brings asynchronous RESTful client functionality to C++11 applications. http://www.corvusoft.co.uk","archived":false,"fork":false,"pushed_at":"2018-05-20T20:46:27.000Z","size":182,"stargazers_count":19,"open_issues_count":15,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-07T21:40:00.426Z","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":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Corvusoft.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,"zenodo":null}},"created_at":"2016-11-10T03:12:38.000Z","updated_at":"2024-01-12T15:44:26.000Z","dependencies_parsed_at":"2023-04-24T14:15:20.484Z","dependency_job_id":null,"html_url":"https://github.com/Corvusoft/restless","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Corvusoft/restless","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Corvusoft%2Frestless","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Corvusoft%2Frestless/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Corvusoft%2Frestless/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Corvusoft%2Frestless/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Corvusoft","download_url":"https://codeload.github.com/Corvusoft/restless/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Corvusoft%2Frestless/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30011966,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T17:00:27.440Z","status":"ssl_error","status_checked_at":"2026-03-02T17:00:03.402Z","response_time":60,"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-17T23:20:27.848Z","updated_at":"2026-03-02T17:34:16.347Z","avatar_url":"https://github.com/Corvusoft.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"Restless [![Build Status](https://travis-ci.org/Corvusoft/restless.svg?branch=master)](https://travis-ci.org/Corvusoft/restless)\n=============================================================================================================================\n\n---\n\nRestless is a comprehensive and consistent programming model for building applications that require seamless and secure communication over HTTP, with the ability to model a range of business processes and production environments.\n\nExample\n-------\n\n```C++\n#include \u003cmemory\u003e\n#include \u003csystem_error\u003e\n\n#include \u003ccorvusoft/restless/session.hpp\u003e\n#include \u003ccorvusoft/restless/request.hpp\u003e\n#include \u003ccorvusoft/restless/response.hpp\u003e\n\nusing std::shared_ptr;\nusing std::error_code;\nusing std::make_shared;\n\nusing corvusoft::restless::Session;\nusing corvusoft::restless::Request;\nusing corvusoft::restless::Response;\n\nauto session = make_shared\u003c Session \u003e( );\nsession-\u003eopen( \"www.corvusoft.co.uk\", 80, [ ]( auto session, auto status )\n{    \n    auto request = make_shared\u003c Request \u003e( );\n    request-\u003eset_version( 1.1 );\n    request-\u003eset_path( \"/\" );\n    request-\u003eset_method( \"GET\" );\n    request-\u003eset_protocol( \"HTTP\" );\n    \n    session-\u003esend( request, [ ] ( auto session, auto response, auto status )\n    {\n        //Process response...\n        return error_code( );\n    } );\n    \n    return error_code( );\n} );\n```\n\nLicense\n-------\n\n\u0026copy; 2013-2018 Corvusoft Limited, United Kingdom. All rights reserved.\n\nThe Restless framework is dual licensed; See [LICENSE](LICENSE) for full details.\n\nSupport\n-------\n\nPlease contact sales@corvusoft.co.uk, for support and licensing options including bespoke software development, testing, design consultation, training, mentoring and code review.\n\nBuild\n-----\n\n```bash\ngit clone --recursive https://github.com/corvusoft/restless.git\n./restless/build/all.sh\n```\n\nYou will now find all required components installed in the distribution folder.\n\nPlease submit all enhancements, proposals, and defects via the [issue](http://github.com/corvusoft/restless/issues) tracker; Alternatively ask a question on [StackOverflow](http://stackoverflow.com/questions/ask) tagged [#restless](http://stackoverflow.com/questions/tagged/restless).\n\nDocumentation\n-------------\n\nThis codebase is intended to be as self documenting as possible. We have supplied many [examples](https://github.com/corvusoft/restless/tree/master/example) and [test suites](https://github.com/corvusoft/restless/tree/master/test) to help aid developers.\n\nWe are currently working on textual API documentation, however it's subject to erratic and frequent alteration; you've been warned.\n\nMinimum Requirements\n--------------------\n\n| Resource | Requirement                                     |\n|:--------:|:-----------------------------------------------:|\n| Compiler |            C++14 compliant or above             |\n\nContact\n-------\n\n| Method                                      | Description                                 |\n|:--------------------------------------------|:--------------------------------------------|\n| [Twitter](http://www.twitter.com/corvusoft) | Tweet us your questions \u0026 feature requests. |\n| support@corvusoft.co.uk                     | Support related queries.                    |\n| sales@corvusoft.co.uk                       | Sale related queries.                       |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorvusoft%2Frestless","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcorvusoft%2Frestless","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorvusoft%2Frestless/lists"}