@@ -96,6 +96,43 @@ markdown_extensions:
9696
9797extra_css :
9898 - css/code.css
99+ plugins :
100+ - llmstxt :
101+ full_output : llms-full.txt
102+ markdown_description : " A simple dependency injection framework for Python."
103+ sections :
104+ Quickstart :
105+ - index.md : How to install and basic usage example
106+ Containers :
107+ - introduction/ioc-container.md : Defining the DI Container
108+ - introduction/multiple-containers.md : Using multiple DI Containers
109+ Injecting Dependencies :
110+ - introduction/injection.md : Default way to inject dependencies
111+ - introduction/generator-injection.md : Injecting dependencies into generators
112+ - introduction/type-based-injection.md : Injecting dependencies by bound type
113+ - introduction/string-injection.md : Injecting dependencies by providing a reference to a Provider by string
114+ Simple Providers :
115+ - providers/singleton.md : The Singleton and AsyncSingleton provider
116+ - providers/factories.md : The Factory and AsyncFactory provider
117+ - providers/object.md : The Object provider
118+ - providers/resources.md : The Resource and AsyncResource provider
119+ - introduction/tear-down.md : Handling tear down for Singletons and Resources
120+ Context Providers :
121+ - providers/context-resources.md : The ContextResource provider
122+ - introduction/scopes.md : Handling scopes with ContextResources
123+ - providers/state.md : The State provider
124+ Providers that interact with other providers :
125+ - providers/collections.md : The Dict and List provider
126+ - providers/selector.md : The Selector provider
127+ Integrations with other Frameworks :
128+ - integrations/fastapi.md : Integration with FastApi
129+ - integrations/faststream.md : Integration with FastStream
130+ - integrations/litestar.md : Integration with LiteStar
131+ Testing :
132+ - testing/fixture.md : Usage with fixtures
133+ - testing/provider-overriding.md : Overriding providers
134+ Experimental features :
135+ - experimental/lazy.md : The Lazy provider
99136
100137extra :
101138 social :
0 commit comments