{"id":34065787,"url":"https://github.com/libranet/httpclient-logging","last_synced_at":"2026-03-11T04:32:25.463Z","repository":{"id":131147156,"uuid":"609362376","full_name":"libranet/httpclient-logging","owner":"libranet","description":"Monkeypatch httpclient's print-statement in python standard lib to use a logcall.","archived":false,"fork":false,"pushed_at":"2026-03-03T18:00:17.000Z","size":2305,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-03T21:11:22.136Z","etag":null,"topics":["http-client","logging","monkeypatch","print","python"],"latest_commit_sha":null,"homepage":"https://httpclient-logging.readthedocs.io","language":"Python","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/libranet.png","metadata":{"files":{"readme":"docs/readme.md","changelog":null,"contributing":"docs/contributing.md","funding":".github/funding.yaml","license":"license.md","code_of_conduct":"docs/code-of-conduct.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"docs/security.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["libranet"]}},"created_at":"2023-03-04T00:35:48.000Z","updated_at":"2026-03-03T18:00:38.000Z","dependencies_parsed_at":"2023-10-10T13:39:53.421Z","dependency_job_id":"ef769f17-de36-44ec-8af1-ba2804fc2926","html_url":"https://github.com/libranet/httpclient-logging","commit_stats":null,"previous_names":["libranet/httpclient_logging"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/libranet/httpclient-logging","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libranet%2Fhttpclient-logging","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libranet%2Fhttpclient-logging/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libranet%2Fhttpclient-logging/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libranet%2Fhttpclient-logging/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/libranet","download_url":"https://codeload.github.com/libranet/httpclient-logging/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libranet%2Fhttpclient-logging/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30370799,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T21:41:54.280Z","status":"online","status_checked_at":"2026-03-11T02:00:07.027Z","response_time":84,"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":["http-client","logging","monkeypatch","print","python"],"created_at":"2025-12-14T06:00:51.988Z","updated_at":"2026-03-11T04:32:25.455Z","avatar_url":"https://github.com/libranet.png","language":"Python","readme":"[![Testing](https://img.shields.io/github/actions/workflow/status/libranet/httpclient-logging/testing.yaml?branch=main\u0026longCache=true\u0026style=flat-square\u0026label=tests\u0026logo=GitHub%20Actions\u0026logoColor=fff%22)](https://github.com/libranet/httpclient-logging/actions/workflows/testing.yaml)\n[![Linting](https://img.shields.io/github/actions/workflow/status/libranet/httpclient-logging/linting.yaml?branch=main\u0026longCache=true\u0026style=flat-square\u0026label=linting\u0026logo=GitHub%20Actions\u0026logoColor=fff%22)](https://github.com/libranet/httpclient-logging/actions/workflows/linting.yaml)\n[![Read the Docs](https://readthedocs.org/projects/httpclient-logging/badge/?version=latest)](https://httpclient-logging.readthedocs.io/en/latest/)\n[![Codecov](https://codecov.io/gh/libranet/httpclient-logging/branch/main/graph/badge.svg?token=LYGLIDTNVX)](https://codecov.io/gh/libranet/httpclient-logging)\n[![PyPi Package](https://img.shields.io/pypi/v/httpclient-logging?color=%2334D058\u0026label=pypi%20package)](https://pypi.org/project/httpclient-logging/)\n[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/libranet/httpclient-logging/blob/main/docs/license.md)\n\n## Installation\n\nInstall via pip:\n\n```bash\n\u003e bin/pip install httpclient-logging\n```\n\nInstall via uv:\n\n```bash\n\u003e uv add httpclient-logging\n```\n\nInstall via poetry:\n\n```bash\n\u003e poetry add httpclient-logging\n```\n\n## Usage\n\nThe only thing left to do for you is the create a `.env` in the root of your project.\n\n## Registered sitecustomize-entrypoint\n\nThe `httpclient_logging.entrypoint`-function is registered as a `sitecustomize`-entrypoint in our pyproject.toml\\_:\n\nvia uv:\n\n```toml\n    [project.entry-points.\"sitecustomize\"]\n    httpclient_logging = \"httpclient_logging.patch:configure\"\n```\n\nvia poetry:\n\n```toml\n    [tool.poetry.plugins]\n    [tool.poetry.plugins.\"sitecustomize\"]\n    httpclient_logging = \"httpclient_logging:entrypoint\"\n```\n\nSitecustomize and all its registered entrypoints will be executed at the start of *every* python-process.\nFor more information, please see [sitecustomize-entrypoints](http://pypi.python.org/pypi/sitecustomize-entrypoints)\n\n## Compatibility\n\n[![Python Version](https://img.shields.io/pypi/pyversions/httpclient-logging?:alt:PyPI-PythonVersion)](https://pypi.org/project/httpclient-logging/)\n[![PyPI - Implementation](https://img.shields.io/pypi/implementation/httpclient-logging?:alt:PyPI-Implementation)](https://pypi.org/project/httpclient-logging/)\n\n`httpclient-logging` works on Python 3.8+, including PyPy3. Tested until Python 3.14,\n\n## Notable dependencies\n\n- [sitecustomize-entrypoints](http://pypi.python.org/pypi/sitecustomize-entrypoints)\n","funding_links":["https://github.com/sponsors/libranet"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibranet%2Fhttpclient-logging","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flibranet%2Fhttpclient-logging","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibranet%2Fhttpclient-logging/lists"}