{"id":49885868,"url":"https://github.com/meyer1994/clienter","last_synced_at":"2026-05-15T18:15:23.689Z","repository":{"id":62562668,"uuid":"315824736","full_name":"meyer1994/clienter","owner":"meyer1994","description":"Build clients for REST APIs fast!","archived":false,"fork":false,"pushed_at":"2020-11-25T04:35:05.000Z","size":9,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-05T12:27:48.280Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/meyer1994.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}},"created_at":"2020-11-25T04:04:31.000Z","updated_at":"2020-11-25T14:31:25.000Z","dependencies_parsed_at":"2022-11-03T15:30:40.505Z","dependency_job_id":null,"html_url":"https://github.com/meyer1994/clienter","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/meyer1994/clienter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meyer1994%2Fclienter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meyer1994%2Fclienter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meyer1994%2Fclienter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meyer1994%2Fclienter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/meyer1994","download_url":"https://codeload.github.com/meyer1994/clienter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meyer1994%2Fclienter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33074575,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"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":"2026-05-15T18:15:22.659Z","updated_at":"2026-05-15T18:15:23.675Z","avatar_url":"https://github.com/meyer1994.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Clienter\n\n[![Build Status](https://travis-ci.com/meyer1994/clienter.svg?branch=master)](https://travis-ci.com/meyer1994/clienter)\n[![codecov](https://codecov.io/gh/meyer1994/clienter/branch/master/graph/badge.svg?token=GDPefbNqgR)](https://codecov.io/gh/meyer1994/clienter)\n[![Codacy Badge](https://app.codacy.com/project/badge/Grade/864588ea5c5f4c9eb26c44425dcf3fc6)](https://www.codacy.com/gh/meyer1994/clienter/dashboard?utm_source=github.com\u0026amp;utm_medium=referral\u0026amp;utm_content=meyer1994/clienter\u0026amp;utm_campaign=Badge_Grade)\n[![standard-readme compliant](https://img.shields.io/badge/readme%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/RichardLitt/standard-readme)\n\nBuild clients for REST APIs fast!\n\n## Table of Contents\n\n- [About](#about)\n- [Install](#install)\n- [Thanks](#thanks)\n\n\n## About\n\nI was tired of having to write boilerplate/custom clients for every REST endpoint available on the web. So, I decided to create something that do it for me. Here it is:\n\n```py\nimport httpx\nfrom clienter import Clienter\n\n\nclass GitHub(Clienter):\n    def repos(self, owner, repo):\n        \"\"\" GET /repos/{}/{} \"\"\"\n\n\ngithub = GitHub('https://api.github.com', httpx)\nrepo = github.repos('meyer1994', 'clienter').json()\nprint(repo)\n\n# Output:\n# {\n#     'full_name': 'meyer1994/clienter',\n#     'private': False,\n#     ...\n# }\n```\n\nNote that we pass the client we want to use to the object constructor. In this example, we are using [httpx][1]. It works with [requests][2] as well.\n\n## Install\n\nThis project has no requirements :)\n\n## Thanks\n\nThis project was inspired by the [OpenFeign][3] project.\n\n[1]: https://www.python-httpx.org/\n[2]: https://requests.readthedocs.io/en/master/\n[3]: https://github.com/OpenFeign/feign\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeyer1994%2Fclienter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeyer1994%2Fclienter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeyer1994%2Fclienter/lists"}