{"id":34758070,"url":"https://github.com/sourcepirate/pyhttp","last_synced_at":"2026-05-21T21:30:52.227Z","repository":{"id":33065925,"uuid":"36702533","full_name":"sourcepirate/pyhttp","owner":"sourcepirate","description":"Very Minimal Http Library for python","archived":false,"fork":false,"pushed_at":"2015-06-03T17:28:53.000Z","size":136,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-21T07:05:57.536Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sourcepirate.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-06-02T02:27:17.000Z","updated_at":"2019-08-18T16:45:44.000Z","dependencies_parsed_at":"2022-09-14T09:00:24.568Z","dependency_job_id":null,"html_url":"https://github.com/sourcepirate/pyhttp","commit_stats":null,"previous_names":["plasmashadow/pyhttp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sourcepirate/pyhttp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcepirate%2Fpyhttp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcepirate%2Fpyhttp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcepirate%2Fpyhttp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcepirate%2Fpyhttp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sourcepirate","download_url":"https://codeload.github.com/sourcepirate/pyhttp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sourcepirate%2Fpyhttp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33315716,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-21T12:23:38.849Z","status":"ssl_error","status_checked_at":"2026-05-21T12:22:11.673Z","response_time":62,"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-12-25T05:48:02.134Z","updated_at":"2026-05-21T21:30:52.219Z","avatar_url":"https://github.com/sourcepirate.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"##PyHTTP\n\nVery Minimal HTTP wrapper for Python.\n\n[![Build Status](https://travis-ci.org/plasmashadow/pyhttp.svg?branch=master)](https://travis-ci.org/plasmashadow/pyhttp)\n[![PyPI version](https://badge.fury.io/py/pyrequest.svg)](http://badge.fury.io/py/pyrequest)\n[![PyPI](https://img.shields.io/pypi/dm/pyrequest.svg)](https://pypi.python.org/pypi/pyrequest)\n[![Code Health](https://landscape.io/github/plasmashadow/pyhttp/master/landscape.svg?style=flat)](https://landscape.io/github/plasmashadow/pyhttp/master)\n\n\n##installation\n```\npip install pyrequest\n```\n\n##Usage\n\n```python\n  \nfrom pyhttp import Request\n\nr = Request(\"google.com\").get()\nprint r.status\n\n//POST request\n\nr = Request('http://jsonplaceholder.typicode.com/posts')\nresponse = r.post({'title': 'hello'})\nprint response.content\nprint response.status\nprint response.json\n\n//setting headers\n\nr = Request('http://jsonplaceholder.typicode.com/posts')\nr.headers = {'content-type': 'application/json')\nresponse = r.post({'title': 'hello'})\nprint response.content\nprint response.status\nprint response.json\n\n//PUT request\n\nr = Request('http://jsonplaceholder.typicode.com/posts/1')\nresponse = r.put({'title': 'hello'})\nprint response.content\nprint response.status\nprint response.json\n\n//DELETE request\n\nr = Request('http://jsonplaceholder.typicode.com/posts/1')\nr.delete()\n\n\n```\n\n##License\n\nMIT","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsourcepirate%2Fpyhttp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsourcepirate%2Fpyhttp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsourcepirate%2Fpyhttp/lists"}