{"id":13806385,"url":"https://github.com/wichert/rest_toolkit","last_synced_at":"2025-09-22T06:31:43.145Z","repository":{"id":37390803,"uuid":"20260047","full_name":"wichert/rest_toolkit","owner":"wichert","description":"Simple REST servers","archived":false,"fork":false,"pushed_at":"2022-03-21T22:18:05.000Z","size":485,"stargazers_count":36,"open_issues_count":9,"forks_count":7,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-01-06T03:41:09.822Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://rest-toolkit.rtfd.org/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wichert.png","metadata":{"files":{"readme":"README.rst","changelog":"changes.rst","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-05-28T14:15:35.000Z","updated_at":"2022-06-21T05:50:05.000Z","dependencies_parsed_at":"2022-09-15T00:30:47.290Z","dependency_job_id":null,"html_url":"https://github.com/wichert/rest_toolkit","commit_stats":null,"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wichert%2Frest_toolkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wichert%2Frest_toolkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wichert%2Frest_toolkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wichert%2Frest_toolkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wichert","download_url":"https://codeload.github.com/wichert/rest_toolkit/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":233828160,"owners_count":18736581,"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","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-08-04T01:01:11.169Z","updated_at":"2025-09-22T06:31:37.746Z","avatar_url":"https://github.com/wichert.png","language":"Python","funding_links":[],"categories":["RESTful API"],"sub_categories":[],"readme":"*rest_toolkit* is a Python package which provides a very convenient way to\nbuild REST servers. It is build on top of\n`Pyramid \u003chttp://www.pylonsproject.org/projects/pyramid/about\u003e`_, but you do not\nneed to know much about Pyramid to use rest_toolkit.\n\n\nQuick example\n=============\n\nThis is a minimal example which defines a ``Root`` resource with a ``GET``\nview, and starts a simple HTTP server. If you run this example you can request\n``http://localhost:8080/`` and you will see a JSON response with a status\nmessage.\n\n::\n\n   from rest_toolkit import quick_serve\n   from rest_toolkit import resource\n\n\n   @resource('/')\n   class Root(object):\n       def __init__(self, request):\n           pass\n\n\n   @Root.GET()\n   def show_root(root, request):\n       return {'status': 'OK'}\n\n\n   if __name__ == '__main__':\n       quick_serve()\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwichert%2Frest_toolkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwichert%2Frest_toolkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwichert%2Frest_toolkit/lists"}