{"id":16452585,"url":"https://github.com/agent-hellboy/log_call","last_synced_at":"2026-02-10T10:36:38.566Z","repository":{"id":58658956,"uuid":"532479300","full_name":"Agent-Hellboy/log_call","owner":"Agent-Hellboy","description":"library to log function or method calls, this can be used in middleware to fetch results from a server. ","archived":false,"fork":false,"pushed_at":"2024-05-23T15:54:20.000Z","size":18,"stargazers_count":1,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-26T15:10:50.113Z","etag":null,"topics":["decorators","logging","metaclass"],"latest_commit_sha":null,"homepage":"","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/Agent-Hellboy.png","metadata":{"files":{"readme":"README.rst","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":"2022-09-04T08:20:27.000Z","updated_at":"2022-09-25T12:14:56.000Z","dependencies_parsed_at":"2024-10-28T16:10:17.930Z","dependency_job_id":null,"html_url":"https://github.com/Agent-Hellboy/log_call","commit_stats":{"total_commits":16,"total_committers":1,"mean_commits":16.0,"dds":0.0,"last_synced_commit":"618a3271be57980f03cafbab5dc5abcc28c2f510"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/Agent-Hellboy/log_call","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Agent-Hellboy%2Flog_call","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Agent-Hellboy%2Flog_call/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Agent-Hellboy%2Flog_call/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Agent-Hellboy%2Flog_call/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Agent-Hellboy","download_url":"https://codeload.github.com/Agent-Hellboy/log_call/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Agent-Hellboy%2Flog_call/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268675515,"owners_count":24288285,"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","status":"online","status_checked_at":"2025-08-04T02:00:09.867Z","response_time":79,"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":["decorators","logging","metaclass"],"created_at":"2024-10-11T10:13:14.528Z","updated_at":"2026-02-10T10:36:38.469Z","avatar_url":"https://github.com/Agent-Hellboy.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"log_call\n========\n\nlibrary to log function or bond-method calls\n\n\n.. image:: https://img.shields.io/pypi/v/log_call\n   :target: https://pypi.python.org/pypi/log_call/\n\n.. image:: https://github.com/Agent-Hellboy/log_call/actions/workflows/python-package.yml/badge.svg\n    :target: https://github.com/Agent-Hellboy/log_call/\n\n.. image:: https://github.com/Agent-Hellboy/log_call/actions/workflows/python-publish.yml/badge.svg\n    :target: https://github.com/Agent-Hellboy/log_call/\n\n.. image:: https://img.shields.io/pypi/pyversions/log_call.svg\n   :target: https://pypi.python.org/pypi/log_call/\n\n.. image:: https://img.shields.io/pypi/l/log_call.svg\n   :target: https://pypi.python.org/pypi/log_call/\n\n.. image:: https://pepy.tech/badge/log_call\n   :target: https://pepy.tech/project/log_call\n\n.. image:: https://img.shields.io/pypi/format/log_call.svg\n   :target: https://pypi.python.org/pypi/log_call/\n\n.. image:: https://coveralls.io/repos/github/Agent-Hellboy/log_call/badge.svg?branch=main\n   :target: https://coveralls.io/github/Agent-Hellboy/log_call?branch=main\n\nInstallation\n============\n\n::\n\n   for stable version\n      - pip install log_call\n\n   for developement\n      - git clone https://github.com/Agent-Hellboy/log_call\n      - cd log_call\n      - python -m venv .venv\n      - source .venv/bin/activate\n      \n\nExample\n-------\n\nImport log_call from log_call and decorate your class or function with\nit\n\n.. code:: py\n\n   from log_call import log_call\n\n   @log_call\n   class A:\n       def __init__(self):\n           pass \n\n       def a(self,*args,**kwargs):\n           pass\n\n\n   a=A()\n   a.a(45,'str',s=34,g=43)\n\n   @log_call\n   def c(a,*args,**kwargs):\n       pass\n\n   c(34,56,p=23)\n\n::\n\n   response \n   2022-09-04 12:56:08,552 a called with {'args': [45, 'str'], 'kwargs': {'s': 34, 'g': 43}}\n   2022-09-04 12:56:08,552 c called with {'a': 34, 'args': [56], 'kwargs': {'p': 23}}\n\nContributing\n============\n\nPull requests are welcome. For major changes, please open an issue first\nto discuss what you would like to change.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagent-hellboy%2Flog_call","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fagent-hellboy%2Flog_call","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagent-hellboy%2Flog_call/lists"}