Santiago Gandolfo

Results 9 comments of Santiago Gandolfo

Great. I've created this PR #143 to add the listdir function (and also the scandir function) to the main repo. In the meantime I'll be trying your solution. Thanks!

Hi @mparent61! I'm running into the same problem on a similar usecase (NewRelic instead of Sentry). Does solution 4 work? Where should the function be called? (you mentioned the logger...

I see that this other PR has been merged: #714 I see two alternatives: 1. Modify my PR to instead use biome in pre-commit: https://biomejs.dev/recipes/git-hooks/#pre-commit 2. Revert the changes made...

In my case what I ended up doing is creating a function: ```python def get_auth_bearer(): return AuthBearer() ``` ```python api = NinjaAPI(auth=get_auth_bearer()) ``` And then for my tests I patched...

> You can do > > ```python > @api.get("/stores/{int:store_id}") > def get_store(request, store_id: int): > print(f"Store {store_id}") > ``` > > Ninja will take path params the same way Django...

After reading the source code and mongo's docs (and with the help of ChatGPT) I've fould the following: The reason why when I do the `engine.find` it fails is because...

My problem is that the alternative `uv init` also has some things that don't work well for me, because it adds the `src` directory and a `[build-system]` section. And if...

In my case the root folder would be called test_uv, and the structure inside of it would look like this for example: .venv main.py pyproject.toml README.md uv.lock In a larger...

I created this Middleware: ```python from autodynatrace.sdk import sdk from dramatiq import Broker from dramatiq import Message from dramatiq.middleware import Middleware from oneagent.common import ChannelType from oneagent.common import MessagingDestinationType from...