-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwsgi.py
366 lines (262 loc) · 9.58 KB
/
wsgi.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
#!/usr/bin/env python
# coding: utf-8
# #### Week 5 - Deploy
# In[ ]:
# Import Library default with python installation
import os
import sys
# In[ ]:
def my_main(input_filename):
print('***Start of my_main function***')
# Get the current working directory
curr_dir = os.getcwd()
print(curr_dir)
# Get the list of files in the directory
file_list = os.listdir(application.config['UPLOAD_FOLDER'])
print(file_list)
# Search thru the list for the input file name
input_file_found = False
inputfilegood=False
for afile in file_list:
if afile == input_filename:
input_file_found = True
print('Input File found', input_filename)
break
#End If
#End For
# Is the File extension .txt
if input_filename.lower().endswith('.txt'):
inputfilegood=True
print('Input File extension good', input_filename)
else:
print('***ERROR*** Input file extension NOT good')
# sys.exit('***Exiting***')
return(-1, -1, -1,[],"***ERROR*** Input file extension NOT good")
#End If
# Do we continue ?
if input_file_found == True and inputfilegood == True:
print('Input file is found and extension good')
else:
print('***ERROR*** Input file NOT found OR extension NOT good')
# sys.exit('***Exiting***')
return(-1, -1, -1,[],'***ERROR*** Input file NOT found OR extension NOT good')
#End If
# Ready to open Input file
# Mode read
# File Handle is the File descriptor - path , mode, name
try:
input_file_obj = open(os.path.join(application.config['UPLOAD_FOLDER'],input_filename),'r')
print('*** INFO***',input_filename,' Input file opened successfully')
except:
print('*** ERROR***',input_filename,' Input file CANNOT OPEN')
# sys.exit('\n***Exiting***')
return(-1, -1, -1,[],'*** ERROR***',input_filename,' Input file CANNOT OPEN')
# Audit the file
print('\n ***Starting Audit***')
# Create a list of the word lengths we want to track 0 to 16
word_length = []
max = 17
for i in range(0, max, 1):
word_length.append(i)
#End For
print(word_length)
# Frequency table will keep track of the frequency of the word lengths
freq_table = []
freq_table = 17*[0] # initialize outside loop with 17 zeros
print(freq_table)
# Initialize line totals
linecount = 0
wordcount =0
charcount = 0
nowscharcount = 0
# Initialize File totals
totlinecount = 0
totwordcount = 0
totcharcount = 0
totnowscharcount = 0
# Initialize Lists for Openpyxl
line_Content = []
line_Count = []
word_Count =[]
char_Count = []
nowschar_Count=[]
# Initialze output list for flask
output_list = []
# Read the input file into a list
for myline in input_file_obj:
print(myline)
linecount = linecount + 1
word_list = myline.split()
print(word_list)
wordcount = len(word_list)
charcount = len(myline)
nowscharcount = 0
for myword in word_list:
nowscharcount = nowscharcount + len(myword)
if len(myword) >= max - 1:
freq_table[max-1] = freq_table[max-1]+1
else:
freq_table[len(myword)] = freq_table[len(myword)] + 1
#End If
#End for
print(linecount, wordcount, charcount , nowscharcount)
final_line = myline + "," + str(linecount) + "," + str(wordcount) + "," + str(charcount) + "," + str(nowscharcount)
output_list.append(final_line)
totlinecount = linecount
totwordcount = totwordcount + wordcount
totcharcount = totcharcount + charcount
totnowscharcount = totnowscharcount + nowscharcount
line_Content.append(myline)
line_Count.append(linecount)
word_Count.append(wordcount)
char_Count.append(charcount)
nowschar_Count.append(nowscharcount)
#End For
print(word_length)
print(freq_table)
# Print File totals
print(totlinecount)
print(totwordcount)
print(totcharcount)
print(totnowscharcount)
#### Week 2 - Openpyxl
# pip install library NOT default with python installation
import openpyxl
# Create workbook obj
wb = openpyxl.Workbook()
xlsx_filename = input_filename.replace(".txt", ".xlsx")
# Create sheet1
ws1 = wb.active
ws1.title = input_filename.replace(".txt", "")
# column headers for worksheet 1
ws1.cell(row=1,column=1).value = "LINE_CONTENT"
ws1.cell(row=1,column=2).value = "LINE_COUNT"
ws1.cell(row=1,column=3).value = "WORD_COUNT"
ws1.cell(row=1,column=4).value = "CHAR_COUNT"
ws1.cell(row=1,column=5).value = "NOWS_CHAR_COUNT"
# Data for Sheet1
for index in range(0,len(line_Content),1):
ws1.cell(row=index+2,column=1).value = line_Content[index]
ws1.cell(row=index+2,column=2).value = line_Count[index]
ws1.cell(row=index+2,column=3).value = word_Count[index]
ws1.cell(row=index+2,column=4).value = char_Count[index]
ws1.cell(row=index+2,column=5).value = nowschar_Count[index]
#End For
# Create sheet2
ws2 = wb.create_sheet("WORD_ANALYSIS")
# Column headers for worksheet 2
ws2.cell(row=1,column=1).value = "WORD_LENGTH"
ws2.cell(row=1,column=2).value = "WORD_COUNT"
# Data for Sheet2
for index in range(0, max, 1):
ws2.cell(row=index+2,column=1).value = "WORD_LENGTH_" + str(index)
ws2.cell(row=index+2,column=2).value = freq_table[index]
#End For
# Designate rows/columns as the labels and Data for the charts
labels = openpyxl.chart.Reference(ws2, min_col=1, min_row=2, max_row=max+1)
data = openpyxl.chart.Reference(ws2, min_col=2, min_row=1, max_row=max+1)
# Draw the pie chart for the data in the ANALYSIS worksheet
pie = openpyxl.chart.PieChart()
pie.title = 'WORD_ANALYSIS'
pie.add_data(data,titles_from_data=True)
pie.set_categories(labels)
ws2.add_chart(pie, "F5")
# Draw the Bar chart for the data in the BarChartAnalysis worksheet
bar = openpyxl.chart.BarChart()
bar.shape = 4
bar.style = 10
bar.title = 'WORD_ANALYSIS'
bar.y_axis.title = 'WORD_COUNT'
bar.x_axis.title = 'WORD_LENGTH'
bar.add_data(data,titles_from_data=True)
bar.set_categories(labels)
ws2.add_chart(bar, 'F30')
# Save the workbook
wb.save(os.path.join(application.config['UPLOAD_FOLDER'],xlsx_filename))
#Close files after finishing audit
print('*** INFO*** Closing files')
input_file_obj.close()
wb.close()
return(totlinecount, totwordcount, totcharcount,output_list,"")
# In[ ]:
# # Main Program for Standalone App
# # If __name__ = __main__ ,program is running standalone
# if __name__ == "__main__":
# print("Python script is run standalone\n")
# # Get the name from the user
# name = input()
# # Call fx Main program
# tlc, twc, tcc, output_list = my_main(name)
# print(tlc)
# print(twc)
# print(tcc)
# print(output_list)
# else:
# # __name__ will have the name of the module that imported this script
# print("Python script was imported")
# #End Main program
# #### Week 4 - Flask
# In[ ]:
# Import libraries
# flask will look for the templates folder
from flask import Flask
from flask import render_template
from flask import request
# In[ ]:
# Import werkzeug to run your app as a web application
# from werkzeug.serving import run_simple
# In[ ]:
# Create input file folder
upload_folder_name = 'input_txt_folder'
upload_folder_path = os.path.join(os.getcwd(),upload_folder_name)
print('Upload folder path is:',upload_folder_path)
if not os.path.exists(upload_folder_path):
os.mkdir(upload_folder_path)
# In[ ]:
# Instantiate the Flask object
application = Flask(__name__)
print('Flask object Instantiated')
# In[ ]:
application.config['UPLOAD_FOLDER'] = upload_folder_path
# In[ ]:
# home displays the selectform.html
@application.route('/home', methods=['GET'])
def home():
return render_template('selectform.html')
# end of function
# In[ ]:
# submit on the selectform.html will conduct the audit
@application.route('/audit', methods=['POST'])
def audit():
file_obj = request.files.get('txtdata')
print("Type of the file is :", type(file_obj))
name = file_obj.filename
print(name)
file_obj.save(os.path.join(application.config['UPLOAD_FOLDER'],name))
# Call fx Main program
tlc, twc, tcc,output_list, errstr = my_main(name)
if len(errstr):
return render_template('selectform.html', errstr= errstr)
else:
return render_template('result.html',
my_string=name,
line_count=tlc,
total_word_count = twc,
total_char_count=tcc,
my_list=output_list)
# end of function
# In[ ]:
# Main Program for Web App
# If __name__ = __main__ ,program is running standalone
if __name__ == "__main__":
print("Python script is run standalone\n")
print("Python special variable __name__ =", __name__)
# Run the flask app in jupyter noetbook needs run_simple
# Run the flask app in python script needs app.run
# run_simple('localhost',5000, app, use_debugger=True)
application.run('0.0.0.0',debug=True)
else:
# __name__ will have the name of the module that imported this script
print("Python script was imported")
print("Python special variable __name__ =", __name__)
#End Main program