Dash Plotly
Dash Plotly 코딩(네이밍) 컨벤션
개발하는 크롱
2020. 11. 24. 16:41
반응형
- 콜백함수명은 리턴되는 값을 나타낸다
- 변수로 따로 지정하는 컴포넌트는 파스칼 케이스로 쓴다
예시)
NAVBAR = dbc.Navbar(
children=[
html.A(
# Use row and col to control vertical alignment of logo / brand
dbc.Row(
[
dbc.Col(html.Img(src=PLOTLY_LOGO, height="30px")),
dbc.Col(
dbc.NavbarBrand("Bank Customer Complaints", className="ml-2")
),
],
align="center",
no_gutters=True,
),
href="https://plot.ly",
)
],
color="dark",
dark=True,
sticky="top",
)
...
app.layout = html.Div(children=[NAVBAR, BODY])
- 일반적으로는 파이썬의 컨벤션을 따른다
반응형