Jay Marcyes

Results 163 issues of Jay Marcyes

https://pglite.dev/ Would be nice to see if I could use this for the test suite so I could basically run all the tests in parallel

This didn't work: ```python pout.v("", SHOW_COLOR=False, INDENT_STRING=" ") ``` But it should work, or at least I thought it should work, so I'll need to dig into why it didn't...

```python def foo(): d = {} for i in range(5): d[i] = i yield d pout.v(foo()) ``` Would result in: ``` foo() = ... (5) ( 0: dict (1) {...

It would be nice for callables to output the typing information for arguments and the return type. Likewise, class and module properties could also list their typing information if available.

So basically, it would pass the found controller class to `Application.handle_error`, if there is no found class then it will default to `Application.controller_class`?

Change `reflection:Operation.code` to `reflection:Operation.status_code` and change it all the way down

So if the controller was named `Foo_html` then it would set the media type to text/html

I think it would be cool to do something like this: ```python from endpoints import Controller from typing import Annotated class Foo(Controller): def GET(self) -> Annotated[str, "text/yaml"]: return "" ```...

This is a placeholder for supporting OpenAPI 4.0 when it is released, the Moonwalk repo says they want to have something published by the end of 2024. * [Moonwalk working...

I should look into adding asyncAPI support to document websockets. * [SO discussion on using AsyncAPI to document websocket requests](https://stackoverflow.com/a/75626595) * [Swagger for WebSocket services](https://github.com/OAI/OpenAPI-Specification/issues/55)