{"id":24746015,"url":"https://github.com/chausner/boincrpc","last_synced_at":"2025-10-10T14:32:28.966Z","repository":{"id":47499865,"uuid":"73524632","full_name":"chausner/BoincRpc","owner":"chausner","description":"Async .NET implementation of the BOINC GUI RPC protocol","archived":false,"fork":false,"pushed_at":"2021-08-28T22:32:20.000Z","size":101,"stargazers_count":12,"open_issues_count":2,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-27T20:13:28.963Z","etag":null,"topics":["boinc"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chausner.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2016-11-12T01:38:56.000Z","updated_at":"2021-08-28T22:32:22.000Z","dependencies_parsed_at":"2022-09-06T07:42:21.909Z","dependency_job_id":null,"html_url":"https://github.com/chausner/BoincRpc","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/chausner/BoincRpc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chausner%2FBoincRpc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chausner%2FBoincRpc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chausner%2FBoincRpc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chausner%2FBoincRpc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chausner","download_url":"https://codeload.github.com/chausner/BoincRpc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chausner%2FBoincRpc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279004176,"owners_count":26083688,"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-10-10T02:00:06.843Z","response_time":62,"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":["boinc"],"created_at":"2025-01-28T03:36:58.164Z","updated_at":"2025-10-10T14:32:28.553Z","avatar_url":"https://github.com/chausner.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BoincRpc\nAn asynchronous .NET implementation of the [BOINC GUI RPC protocol](http://boinc.berkeley.edu/trac/wiki/GuiRpc).\n\nThe implementation is up-to-date as of BOINC 7.18.1 and (almost) all RPC structures and commands are fully supported.\nThe library is compatible with [.NET Standard 2.0](https://docs.microsoft.com/en-us/dotnet/standard/net-standard).\n\n[![NuGet](https://img.shields.io/nuget/v/BoincRpc.svg)](https://www.nuget.org/packages/BoincRpc/)\n[![license](https://img.shields.io/github/license/chausner/BoincRpc.svg)](https://github.com/chausner/BoincRpc/blob/master/LICENSE)\n\nUsage\n-----\nUsage of the library should be largely self-explanatory.\nAll functionality is provided via the `RpcClient` class.\n\nThe following snippet shows how to connect and authenticate to a BOINC client and print a list of all current tasks: \n```csharp\nusing (RpcClient rpcClient = new RpcClient())\n{\n    await rpcClient.ConnectAsync(\"localhost\", 31416);\n\n    bool authorized = await rpcClient.AuthorizeAsync(\"57dd16bbf477ff9a76141f1575d4a44c\");\n\n    if (authorized)\n    {\n        foreach (Result result in await rpcClient.GetResultsAsync())\n        {\n            Console.WriteLine(\"{0} ({1}): {2:F2}% complete\", result.WorkunitName, result.ProjectUrl, result.FractionDone * 100);\n        }\n    }\n}\n```\n\nFor information on the RPC commands, see the [BOINC wiki](http://boinc.berkeley.edu/trac/wiki/GuiRpc).\n\nLicense\n-------\nLGPL 3, see [LICENSE](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchausner%2Fboincrpc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchausner%2Fboincrpc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchausner%2Fboincrpc/lists"}