{"id":28445601,"url":"https://github.com/cheesecake87/weerpc","last_synced_at":"2026-01-28T20:03:22.658Z","repository":{"id":234567557,"uuid":"788412498","full_name":"CheeseCake87/weeRPC","owner":"CheeseCake87","description":"The wee RPC protocol.","archived":false,"fork":false,"pushed_at":"2024-06-19T08:21:50.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-09T12:32:14.759Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"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/CheeseCake87.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}},"created_at":"2024-04-18T11:17:14.000Z","updated_at":"2024-06-19T08:21:53.000Z","dependencies_parsed_at":"2024-04-19T21:27:24.083Z","dependency_job_id":"3272a961-150c-4940-8e3d-57d67ecc2a6b","html_url":"https://github.com/CheeseCake87/weeRPC","commit_stats":null,"previous_names":["cheesecake87/wrpc","cheesecake87/weerpc"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CheeseCake87/weeRPC","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheeseCake87%2FweeRPC","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheeseCake87%2FweeRPC/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheeseCake87%2FweeRPC/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheeseCake87%2FweeRPC/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CheeseCake87","download_url":"https://codeload.github.com/CheeseCake87/weeRPC/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheeseCake87%2FweeRPC/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28850474,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T15:15:36.453Z","status":"ssl_error","status_checked_at":"2026-01-28T15:15:13.020Z","response_time":57,"last_error":"SSL_read: 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":"2025-06-06T10:13:27.232Z","updated_at":"2026-01-28T20:03:22.653Z","avatar_url":"https://github.com/CheeseCake87.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📡 weeRPC\n\nThe wee RPC (weeRPC) protocol is a JSON POST request based protocol which is design to be small.\n\n(Wee - meaning small in Scottish slang)\n\nKnown libraries that use weeRPC:\n\n- [weeRPCjs](https://github.com/CheeseCake87/weeRPCjs)\n- [Flask-RPC](https://github.com/CheeseCake87/flask-rpc)\n- [Quart-RPC](https://github.com/CheeseCake87/quart-rpc)\n\n### Version 1.1\n\nChanges:\n- `wrpc` key changed to `weerpc` to better reflect the naming.\n\n#### Request\n\n`weerpc`: This is the version of weeRPC you are using which tells the server to validate that the JSON data includes what the version expects.\n\n`function`: A string value that contains the name of the function to run.\n\n`data`: JSON serializable data that is passed to the function as an argument.\n\n#### Response\n\n`weerpc`: The server sends back what version of weeRPC it's using to process requests/responses.\n\n`ok`: A bool [true/false] value returned to be used to easily check if a response has been successful.\n\n`message`: OPTIONAL This value may or may not be sent back. It is used to send back more information.\n\n`data`: The data returned as the result from running the function called in the request.\n\n**A typical request/response cycle is as follows:**\n\n**Request**\n\n```json\n{\n  \"weerpc\": 1.1,\n  \"function\": \"add_numbers\",\n  \"data\": [\n    1,\n    2,\n    3\n  ]\n}\n```\n\n**Response**\n\n```json\n{\n  \"weerpc\": 1.1,\n  \"ok\": true,\n  \"message\": \"Function 'add_numbers' executed successfully\",\n  \"data\": 6\n}\n```\n\n### Version 1\n\n#### Request\n\n`wrpc`: This is the version of weeRPC you are using which tells the server to validate that the JSON data includes what the version expects.\n\n`function`: A string value that contains the name of the function to run.\n\n`data`: JSON serializable data that is passed to the function as an argument.\n\n#### Response\n\n`wrpc`: The server sends back what version of weeRPC it's using to process requests/responses.\n\n`ok`: A bool [true/false] value returned to be used to easily check if a response has been successful.\n\n`message`: OPTIONAL This value may or may not be sent back. It is used to send back more information.\n\n`data`: The data returned as the result from running the function called in the request.\n\n**A typical request/response cycle is as follows:**\n\n**Request**\n\n```json\n{\n  \"wrpc\": 1.0,\n  \"function\": \"add_numbers\",\n  \"data\": [\n    1,\n    2,\n    3\n  ]\n}\n```\n\n**Response**\n\n```json\n{\n  \"wrpc\": 1.0,\n  \"ok\": true,\n  \"message\": \"Function 'add_numbers' executed successfully\",\n  \"data\": 6\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcheesecake87%2Fweerpc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcheesecake87%2Fweerpc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcheesecake87%2Fweerpc/lists"}