David Danier

Results 9 issues of David Danier

Instead of `template.Variable` floppyforms should use `parser.compile_filter` whenever possible. Currently you need to work around this using `{% with … %}` around the floppyforms template tags.

Enhancement

Currently using `Dict[...]`, `List[...]` or `Union[...]` will break with an error stating that `issubclass()` cannot be used for non types. This is something users won't understand and I think SQLModel...

As svg-chameleon depends on svg-sprite which itself depends on a phantomjs-prebuilt - a project being dead for years and not providing any ARM64 builds.... svg-chameleon cannot be used on Apple...

enhancement
important

To output responses including a response_model FastAPI does something like (from my understanding): ```python # Thats what we get from the endpoint function response_obj = SomethingModel(...) # See https://github.com/tiangolo/fastapi/blob/master/fastapi/routing.py#L121 and...

It may be useful to execute arbitrary `nurfile` commands using something like `nur -c foo`, like it is possible with `nu -c ...`.

Maybe allow structured data transfer by doing so?

enhancement

Currently we just copied what Django had. But I think we can remove the lock.

Allow receivers to run in the background by just adding the task to the event loop queue, but not `await`ing it. Could do something similar to https://fastapi.tiangolo.com/tutorial/background-tasks/. Note: Background tasks...