Krzysztof Jagiełło

Results 19 comments of Krzysztof Jagiełło

2 Is actually implemented by sockjs-tornado.

Cool @jrschumacher! You've got the access now!

I used Scrapy docs as reference. I hope it helps! http://doc.scrapy.org/en/latest/ https://github.com/scrapy/scrapy/tree/master/docs 2014-07-18 12:14 GMT+02:00 Ryan Schumacher [email protected]: > trouble === struggling with syntax > > — > Reply to...

Hm this gets a bit unergonomic when I for example want to switch between a resource and a factory. To visualize the problem: ```python class SecretManager(Protocol): async def get(self, name:...

You forgot to use the `Resource` provider. ```python import asyncio from dependency_injector import containers, providers async def async_function(): await asyncio.sleep(0) yield your_resource class Container(containers.DeclarativeContainer): foo = providers.Resource(async_function) async def main():...

Now that I think about it, it probably makes sense in case you would want to reset the override and be able to access the resources from the original container.

Reopening this as I still feel like I should be able to replace original resources with new, mocked ones and not have to initialize the original resources. If I understood...

Hello! I've started to implement enhanced Slack notifications based on this issue and #1532. I could have settled on an easy way of implementing it and simply sending a message...