-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathmain.py
62 lines (54 loc) · 2.35 KB
/
main.py
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
"""
DataExplore Application based on pandastable.
Created January 2014
Copyright (C) Damien Farrell
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 3
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
from pandastable.app import DataExplore, TestApp
def main():
"""Run the application from outside the module - used for
deploying as frozen app"""
import sys, os
from optparse import OptionParser
parser = OptionParser()
parser.add_option("-f", "--file", dest="msgpack",
help="Open a dataframe as msgpack", metavar="FILE")
parser.add_option("-p", "--project", dest="projfile",
help="Open a dataexplore project file", metavar="FILE")
parser.add_option("-i", "--csv", dest="csv",
help="Open a csv file by trying to import it", metavar="FILE")
parser.add_option("-x", "--excel", dest="excel",
help="Import an excel file", metavar="FILE")
parser.add_option("-t", "--test", dest="test", action="store_true",
default=False, help="Run a basic test app")
opts, remainder = parser.parse_args()
if opts.test == True:
app = TestApp()
else:
if opts.projfile != None:
app = DataExplore(projfile=opts.projfile)
elif opts.msgpack != None:
app = DataExplore(msgpack=opts.msgpack)
elif opts.csv != None:
app = DataExplore()
t = app.getCurrentTable()
t.importCSV(opts.csv, dialog=True)
elif opts.excel != None:
app = DataExplore()
app.importExcel(opts.excel)
else:
app = DataExplore()
app.mainloop()
if __name__ == '__main__':
main()