31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
import csv
|
|
import PySimpleGUI as sg
|
|
|
|
# filename = sg.PopupGetFile('filename to open', no_window=True, file_types=(("CSV Files","*.csv"),))
|
|
filename = 'C:/Python/PycharmProjects/GooeyGUI/CSV/Gruen Movement Catalog V5.3 for Lucid less data 2017-08-30.csv'
|
|
# --- populate table with file contents --- #
|
|
data = []
|
|
if filename is not None:
|
|
with open(filename, "r") as infile:
|
|
reader = csv.reader(infile)
|
|
try:
|
|
data = list(reader) # read everything else into a list of rows
|
|
except:
|
|
sg.PopupError('Error reading file')
|
|
exit(69)
|
|
|
|
sg.SetOptions(element_padding=(0, 0))
|
|
|
|
col_layout = [[sg.Table(values=data[1:][:], headings=[data[0][x] for x in range(len(data[0]))], max_col_width=25,
|
|
auto_size_columns=True, display_row_numbers=True, justification='right', size=(None, len(data)))]]
|
|
|
|
layout = [[sg.Column(col_layout, size=(1200,600), scrollable=True)],]
|
|
form = sg.FlexForm('Table', grab_anywhere=False)
|
|
form.Layout(layout)
|
|
|
|
form.Finalize()
|
|
|
|
b, v = form.Read()
|
|
|
|
exit(69)
|