{"id":34017479,"url":"https://github.com/alganet/apywire","last_synced_at":"2026-04-02T11:47:02.283Z","repository":{"id":326279466,"uuid":"1099451284","full_name":"alganet/apywire","owner":"alganet","description":"Lazy object wiring and dependency injection for Python 3.12+","archived":false,"fork":false,"pushed_at":"2026-03-26T01:14:12.000Z","size":1790,"stargazers_count":5,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-26T22:51:20.822Z","etag":null,"topics":["asyncio","configuration-management","dependency-injection","lazy-loading","python","thread-safe"],"latest_commit_sha":null,"homepage":"https://alganet.github.io/apywire/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alganet.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-11-19T02:24:36.000Z","updated_at":"2026-03-26T01:08:05.000Z","dependencies_parsed_at":"2026-01-23T12:02:43.774Z","dependency_job_id":null,"html_url":"https://github.com/alganet/apywire","commit_stats":null,"previous_names":["alganet/apywire"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/alganet/apywire","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alganet%2Fapywire","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alganet%2Fapywire/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alganet%2Fapywire/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alganet%2Fapywire/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alganet","download_url":"https://codeload.github.com/alganet/apywire/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alganet%2Fapywire/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31305809,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T09:48:21.550Z","status":"ssl_error","status_checked_at":"2026-04-02T09:48:19.196Z","response_time":89,"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":["asyncio","configuration-management","dependency-injection","lazy-loading","python","thread-safe"],"created_at":"2025-12-13T14:36:07.631Z","updated_at":"2026-04-02T11:47:02.278Z","avatar_url":"https://github.com/alganet.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--\nSPDX-FileCopyrightText: 2025 Alexandre Gomes Gaigalas \u003calganet@gmail.com\u003e\n\nSPDX-License-Identifier: ISC\n--\u003e\n\n# apywire\n\n[![PyPI version](https://img.shields.io/pypi/v/apywire.svg)](https://pypi.org/project/apywire/)\n[![Python versions](https://img.shields.io/pypi/pyversions/apywire.svg)](https://pypi.org/project/apywire/)\n[![License](https://img.shields.io/pypi/l/apywire.svg)](https://github.com/alganet/apywire/blob/main/LICENSE)\n[![CI](https://github.com/alganet/apywire/actions/workflows/ci.yml/badge.svg)](https://github.com/alganet/apywire/actions/workflows/ci.yml)\n[![Docs](https://img.shields.io/badge/docs-latest-blue.svg)](https://alganet.github.io/apywire/)\n\nLazy object wiring and dependency injection for Python 3.12+\n\n## Features\n\n- 🚀 Lazy Loading\n- ⚡ Async Support\n- 🔒 Thread Safety\n- 📦 Code Generation\n- 📄 Naturally Configurable\n- 🎯 Zero Dependencies\n\n## Installation\n\n```bash\nuv pip install apywire\n```\n\n## Quick Example\n\n```python\nfrom apywire import Wiring\n\nspec = {\n    \"datetime.datetime now\": {\"year\": 2025, \"month\": 1, \"day\": 1},\n    \"MyService service\": {\"start_time\": \"{now}\"},  # Dependency injection\n}\n\nwired = Wiring(spec)\nservice = wired.service()  # Lazy instantiation + caching\n```\n\n`spec` is a plain dictionary. It can be written in Python, or come from a\n[config file](docs/user-guide/configuration-files.md), apywire doesn't care.\n\n## Documentation\n\n📚 **[Full Documentation](docs/index.md)** • [Getting Started](docs/getting-started.md) • [API Reference](docs/api-reference.md) • [Examples](docs/examples.md)\n\nBuild docs locally:\n```bash\nmake docs-serve  # http://127.0.0.1:8000\n```\n\n## Development\n\n```bash\nuv sync --extra dev  # Setup\nmake all             # Format, lint, test, build\n```\n\nSee [docs/development.md](docs/development.md) for guidelines.\n\n## License\n\nISC License - see [LICENSES/ISC.txt](LICENSES/ISC.txt)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falganet%2Fapywire","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falganet%2Fapywire","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falganet%2Fapywire/lists"}