This repository was archived by the owner on Sep 9, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 1+ from dotenv import load_dotenv
2+ load_dotenv ()
13import dash
24import pandas as pd
35from dash import dcc , html
Original file line number Diff line number Diff line change 1+ from dotenv import load_dotenv
2+ load_dotenv ()
13import dash
24import os
35import pandas as pd
68
79from dash import dcc , html
810from dash .dependencies import Input , Output
9- from dotenv import load_dotenv
1011
1112app = dash .Dash (__name__ )
1213
Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
2+ from dotenv import load_dotenv
3+ load_dotenv ()
24import os
35
46import dash
57import dash_bootstrap_components as dbc
6-
7- # from dash import dcc
8- # from dash import html
9- import dash_table as dt
10- import dash_core_components as dcc
11- import dash_html_components as html
8+ from dash import dash_table , dcc , html
129from dash .dependencies import Input , Output
1310import pandas as pd
1411import plotly .express as px
@@ -155,7 +152,7 @@ def custom_date_parser(date):
155152 ),
156153]
157154
158- max_table_dash = dt .DataTable (
155+ max_table_dash = dash_table .DataTable (
159156 data = max_vol .to_dict ("records" ),
160157 style_as_list_view = True ,
161158 fill_width = False ,
@@ -442,4 +439,4 @@ def update_scatter_plot(all_tickers, price):
442439
443440
444441if __name__ == "__main__" :
445- app .run_server ( debug = True )
442+ app .run ( )
Original file line number Diff line number Diff line change 1- --index-url https://p3m.dev/pypi/2022-12-09/simple
1+ --index-url https://p3m.dev/pypi/2023-12-05/simple
2+ anywidget
23shiny
34shinywidgets
45vega
56altair
67pandas
7- six
8+ six
You can’t perform that action at this time.
0 commit comments