File tree 4 files changed +12
-11
lines changed
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 ()
1
3
import dash
2
4
import pandas as pd
3
5
from dash import dcc , html
Original file line number Diff line number Diff line change
1
+ from dotenv import load_dotenv
2
+ load_dotenv ()
1
3
import dash
2
4
import os
3
5
import pandas as pd
6
8
7
9
from dash import dcc , html
8
10
from dash .dependencies import Input , Output
9
- from dotenv import load_dotenv
10
11
11
12
app = dash .Dash (__name__ )
12
13
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
+ from dotenv import load_dotenv
3
+ load_dotenv ()
2
4
import os
3
5
4
6
import dash
5
7
import 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
12
9
from dash .dependencies import Input , Output
13
10
import pandas as pd
14
11
import plotly .express as px
@@ -155,7 +152,7 @@ def custom_date_parser(date):
155
152
),
156
153
]
157
154
158
- max_table_dash = dt .DataTable (
155
+ max_table_dash = dash_table .DataTable (
159
156
data = max_vol .to_dict ("records" ),
160
157
style_as_list_view = True ,
161
158
fill_width = False ,
@@ -442,4 +439,4 @@ def update_scatter_plot(all_tickers, price):
442
439
443
440
444
441
if __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
2
3
shiny
3
4
shinywidgets
4
5
vega
5
6
altair
6
7
pandas
7
- six
8
+ six
You can’t perform that action at this time.
0 commit comments