.flake8
CHANGELOG.md
LICENSE
MANIFEST.in
README.md
build_docs.py
pyproject.toml
quality_check.py
requirements.txt
setup.py
components/__init__.py
components/auth/__init__.py
components/auth/cache.py
components/auth/component.py
components/auth/interfaces.py
components/auth/models.py
components/auth/repository.py
components/auth/service.py
components/common/__init__.py
components/common/cache/__init__.py
components/common/cache/component.py
components/common/cache/config.py
components/common/cache/strategy.py
components/common/database/__init__.py
components/common/database/component.py
components/common/database/config.py
components/common/database/models.py
components/common/database/pool.py
components/common/database/repository.py
components/common/logging/__init__.py
components/common/logging/component.py
components/common/logging/config.py
components/common/logging/formatter.py
components/common/models/__init__.py
components/common/models/base_models.py
components/common/service/__init__.py
components/common/service/base_service.py
components/payment/__init__.py
components/payment/component.py
components/payment/interfaces.py
components/payment/models.py
components/payment/repository.py
components/payment/service.py
components/user/__init__.py
components/user/component.py
components/user/interfaces.py
components/user/models.py
components/user/repository.py
components/user/service.py
docs/conf.py
docs/index.rst
docs/installation.rst
docs/quickstart.rst
docs/_build/html/_sources/index.rst.txt
docs/api/components.rst
docs/api/framework.rst
docs/api/middleware.rst
docs/api/plugins.rst
docs/concepts/components.rst
docs/concepts/middleware.rst
docs/concepts/overview.rst
docs/concepts/plugins.rst
docs/contributing/code_style.rst
docs/contributing/development_setup.rst
docs/contributing/guidelines.rst
docs/development/creating_components.rst
docs/examples/advanced_usage.rst
docs/examples/basic_usage.rst
docs/troubleshooting/common_issues.rst
docs/troubleshooting/debugging.rst
docs/troubleshooting/performance.rst
example_plugins/analytics_plugin.py
example_plugins/example_plugin.py
example_plugins/notification_plugin.py
examples/README.md
examples/auto_discovery_example.py
examples/circular_dependency_test.py
examples/complex_app.py
examples/database_integration_example.py
examples/integration_test.py
examples/middleware_example.py
examples/middleware_integration_example.py
examples/performance_test.py
examples/plugin_example.py
examples/simple_app.py
framework/__init__.py
framework/cli.py
framework/core/__init__.py
framework/core/application.py
framework/core/config.py
framework/core/container.py
framework/core/dependency_resolver.py
framework/core/lifecycle.py
framework/core/middleware.py
framework/core/plugin.py
framework/interfaces/__init__.py
framework/interfaces/application.py
framework/interfaces/component.py
framework/interfaces/plugin.py
python_modular_framework.egg-info/PKG-INFO
python_modular_framework.egg-info/SOURCES.txt
python_modular_framework.egg-info/dependency_links.txt
python_modular_framework.egg-info/entry_points.txt
python_modular_framework.egg-info/not-zip-safe
python_modular_framework.egg-info/requires.txt
python_modular_framework.egg-info/top_level.txt
test/__init__.py
test/components/__init__.py
test/components/circular_a.py
test/components/circular_b.py
tests/__init__.py
tests/conftest.py
tests/coverage_analysis.py
tests/coverage_config.py
tests/fixtures/__init__.py
tests/fixtures/test_utils.py
tests/fixtures/test_data/__init__.py
tests/integration/__init__.py
tests/integration/test_app_integration.py
tests/integration/test_database_integration.py
tests/unit/__init__.py
tests/unit/test_components/__init__.py
tests/unit/test_components/test_auth_component.py
tests/unit/test_components/test_payment_component.py
tests/unit/test_components/test_user_component.py
tests/unit/test_framework/__init__.py
tests/unit/test_framework/test_application.py
tests/unit/test_framework/test_config.py
tests/unit/test_framework/test_container.py
tests/unit/test_middleware/__init__.py
tests/unit/test_middleware/test_builtin_middleware.py
tests/unit/test_middleware/test_middleware_interface.py
tests/unit/test_middleware/test_middleware_manager.py
tests/unit/test_plugins/__init__.py
tests/unit/test_plugins/test_plugin_interface.py
tests/unit/test_plugins/test_plugin_interface_fixed.py
tests/unit/test_plugins/test_plugin_loader.py
tests/unit/test_plugins/test_plugin_manager.py
tests/unit/test_plugins/test_plugin_manager_simple.py