{"id":46417217,"url":"https://github.com/psincraian/myfy","last_synced_at":"2026-03-05T14:31:10.297Z","repository":{"id":320947492,"uuid":"1082792492","full_name":"psincraian/myfy","owner":"psincraian","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-10T20:45:25.000Z","size":4309,"stargazers_count":83,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-11T02:43:41.158Z","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/psincraian.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-24T19:23:37.000Z","updated_at":"2026-01-10T20:45:28.000Z","dependencies_parsed_at":"2025-10-26T23:36:20.686Z","dependency_job_id":null,"html_url":"https://github.com/psincraian/myfy","commit_stats":null,"previous_names":["psincraian/myfy"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/psincraian/myfy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/psincraian%2Fmyfy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/psincraian%2Fmyfy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/psincraian%2Fmyfy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/psincraian%2Fmyfy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/psincraian","download_url":"https://codeload.github.com/psincraian/myfy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/psincraian%2Fmyfy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30130309,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T12:40:50.676Z","status":"ssl_error","status_checked_at":"2026-03-05T12:39:32.209Z","response_time":93,"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-03-05T14:31:09.380Z","updated_at":"2026-03-05T14:31:10.195Z","avatar_url":"https://github.com/psincraian.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"docs/images/myfy.png\" alt=\"myfy logo\" width=\"200\"/\u003e\n\u003c/div\u003e\n\n# myfy\n\n[![PyPI Downloads](https://static.pepy.tech/personalized-badge/myfy-core?period=total\u0026units=INTERNATIONAL_SYSTEM\u0026left_color=BLUE\u0026right_color=YELLOWGREEN\u0026left_text=downloads)](https://pepy.tech/projects/myfy-core)\n\n**Build Python applications with FastAPI's ergonomics and enterprise-grade architecture.**\n\nA modern Python framework combining type-safe dependency injection, modular architecture, and sensible defaults—all in a lightweight, async-first design.\n\n---\n\n## Quick Start\n\n### Installation\n\n```bash\n# Install with uv (recommended)\nuv pip install myfy-core myfy-web myfy-frontend myfy-cli\n\n# Or with pip\npip install myfy-core myfy-web myfy-frontend myfy-cli\n```\n\n### Hello World\n\n```python\n# app.py\nfrom myfy.core import Application\nfrom myfy.web import route, WebModule\nfrom myfy.frontend import FrontendModule\n\n@route.get(\"/api/hello/{name}\")\nasync def hello(name: str) -\u003e dict:\n    return {\"message\": f\"Hello {name}!\"}\n\napp = Application(auto_discover=False)\napp.add_module(WebModule())\napp.add_module(FrontendModule())\n```\n\n**Run it:**\n```bash\nuv run myfy run\n# API: http://127.0.0.1:8000/api/hello/World\n# Frontend: http://127.0.0.1:8000\n```\n\n---\n\n## Key Features\n\n- **Type-Safe Dependency Injection** - Constructor injection with compile-time validation\n- **Modular Architecture** - Composable modules with lifecycle management\n- **FastAPI-Style Routes** - Decorators, type hints, and async/await\n- **Zero Config** - Sensible defaults, configure only what you need\n- **Profile-Based Settings** - Environment-aware configuration (dev/test/prod)\n\n---\n\n## Documentation\n\n**[📖 Full Documentation at myfy.dev →](https://myfy.dev)**\n\n- [Getting Started](https://myfy.dev/getting-started/installation/) - Installation and tutorial\n- [Core Concepts](https://myfy.dev/core-concepts/dependency-injection/) - DI, modules, and lifecycle\n- [Guides](https://myfy.dev/guides/building-modules/) - Building modules and deployment\n- [API Reference](https://myfy.dev/api-reference/core/) - Complete API docs\n\n---\n\n## Claude Code Plugin\n\nmyfy includes a [Claude Code plugin](https://code.claude.com/docs/en/discover-plugins) for AI-assisted development. Install the plugin to get:\n\n- **Skills** for common myfy patterns (routing, DI, modules)\n- **Agents** for scaffolding new projects and components\n- **Commands** for common operations\n\n```bash\n# Add the myfy marketplace\n/plugin marketplace add psincraian/myfy\n\n# Install the plugin\n/plugin install myfy@psincraian-myfy\n```\n\n---\n\n## Learn More\n\n- [Examples](examples/) - Working applications in this repo\n- [PRINCIPLES.md](PRINCIPLES.md) - Design philosophy and architecture decisions\n\n---\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpsincraian%2Fmyfy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpsincraian%2Fmyfy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpsincraian%2Fmyfy/lists"}