John Hille

Results 14 comments of John Hille

I see your now running a build pipeline 👍 and its failing with some mypy errors. As most of the errors were introduced by this and my previous PR I've...

I'm not the maintainer obviously but I like the idea of adding radio buttons as an option wherever a single selectbox is currently used. Would it make more sense though...

`default` is a standard attribute of `pydantic`'s `Field` and is usually defined as part of the model, such as "Jane Doe" in the example below: ``` python class User(BaseModel): id:...

In the case of dicts, lists and objects I guess its a bug/missing feature. I've added a PR to address it.

You may not be aware of it but a feature very close to this already exists. Have a look at the "optional fields" demo in the [playground](https://lukasmasuch-streamlit-pydantic-playgroundplayground-app-711bhu.streamlit.app). Does it work...

You can group the inputs into an expander on a `st.pydantic_input` (it doesn't have to be a `st.pydantic_form` like the demo). Translating the demo to a `pydantic_input` version and using...

Its very likely fixable. Its not a feature I currently need for any of my projects right now so its a low priority for me at the moment. If you...

Not a problem! This PR ended up being a bit larger and more complex then I would have liked so I appreciate you making the time to review. With this...

Hi @samuelduchesne, If the instance being passed in has values for a field I would expect them to be filled with those values in the generated form, regardless of whether...

> Hi @HIL340, I am trying to use #16 , am I right in saying that dataclasses are not supported? Seems like an internal casting from the instance to a...