forked from datapane/be-hiring-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.py
More file actions
43 lines (33 loc) · 715 Bytes
/
Copy pathtest.py
File metadata and controls
43 lines (33 loc) · 715 Bytes
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
import client
if __name__ == '__main__':
print("init")
cli = client.Client()
print()
print("clear")
cli.do_clear("")
print()
print("create")
cli.do_create("sample_data_1.csv")
print()
print("info")
cli.do_info("sample_data_1.csv")
print()
print("list")
cli.do_list("")
print()
print("excel")
cli.do_excel("sample_data_1.csv")
print()
print("stats")
cli.do_stats("sample_data_1.csv")
print()
# BUG in server
# but evited by calling plt.py
print("plot")
cli.do_plot("sample_data_1.csv")
print()
print("delete")
cli.do_delete("sample_data_1.csv")
print()
print("list")
cli.do_list("")