forked from mthalves/dash_cm_plot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfileselect.py
More file actions
executable file
·47 lines (41 loc) · 1.05 KB
/
fileselect.py
File metadata and controls
executable file
·47 lines (41 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- coding: utf-8 -*-
import base64
import datetime
import io
import dash
import dash_core_components as dcc
import dash_html_components as html
from dash.dependencies import Input, Output, State
import pandas as pd
from utils import *
from analysisselect import *
from plotinfoselect import *
from ackandcreators import *
from mylayouts import *
from myinput import *
from radioitems import *
from upload import *
from droplist import *
from button import *
from image import *
texts = {
'section': '1. Select your file',
}
def Select_File():
return html.Div(
[html.Div(
[SectionHTML(texts['section'])],
style={ 'width': '100%',
'height': '100%',
'backgroundColor': colors['background'],
}
),
html.Div(
[UploadHTML('upload-data')],
style={ 'width': '50%',
'height': '100%',
'backgroundColor': colors['background'],
'marginLeft': '25%', 'marginRight': '25%'
}
)]
)