Giter Club home page Giter Club logo

Comments (3)

HIL340 avatar HIL340 commented on May 16, 2024 1

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

from streamlit-pydantic.

HIL340 avatar HIL340 commented on May 16, 2024

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:

class User(BaseModel):
    id: int
    name = 'Jane Doe'

init_value is a streamlit-pydantic specific attribute that is used internally to store the value of a field when sp.pydantic_form()/sp.pydantic_input() is initialised from an instance of a class.

In hindsight, init_value should have a more descriptive name (instance_value would be better!) and perhaps it should start with an underscore to make it more obvious that it for internal use.

In terms of which value should get passed through to the streamlit widgets when both attributes exist, init_value is considered to be higher priority than default (in the same way that instance values would override the schema defaults when using pydantic in a regular python script)

from streamlit-pydantic.

y805939188 avatar y805939188 commented on May 16, 2024

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:

class User(BaseModel):
    id: int
    name = 'Jane Doe'

init_value is a streamlit-pydantic specific attribute that is used internally to store the value of a field when sp.pydantic_form()/sp.pydantic_input() is initialised from an instance of a class.

In hindsight, init_value should have a more descriptive name (instance_value would be better!) and perhaps it should start with an underscore to make it more obvious that it for internal use.

In terms of which value should get passed through to the streamlit widgets when both attributes exist, init_value is considered to be higher priority than default (in the same way that instance values would override the schema defaults when using pydantic in a regular python script)

I noticed that if the default value is passed to Dict using default, it will not be rendered. It will work when passing the default value using init_value:

from typing import Dict

import streamlit as st
from pydantic import BaseModel, Field

import streamlit_pydantic as sp

class ShowcaseModel(BaseModel):
    string_dict: Dict[str, str] = Field(
        # init_value={"foo": "1.0"},
        default={"foo": "bar"},
    )
    float_dict: Dict[str, float] = Field(
        init_value={"foo": 1.0},
    )

session_data = sp.pydantic_input(
    key="my_input", model=ShowcaseModel, group_optional_fields="sidebar"
)

with st.expander("Current Input State", expanded=False):
    st.json(session_data)

image

Is this as expected?
Thank you.

from streamlit-pydantic.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.