Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -17,33 +17,11 @@ app.config['JSON_FOLDER'] = 'JSON'
|
|
17 |
app.config['DATA_FOLDER'] = 'data'
|
18 |
app.config['MODELS_FOLDER'] = 'Models'
|
19 |
|
20 |
-
#Creating
|
21 |
-
UPLOAD_FOLDER =
|
22 |
-
os.makedirs(
|
23 |
-
|
24 |
-
|
25 |
-
os.makedirs(app.config['UPLOAD_FOLDER'])
|
26 |
-
|
27 |
-
#Creating Json Folder
|
28 |
-
JSON_FOLDER = 'JSON/'
|
29 |
-
os.makedirs(JSON_FOLDER, exist_ok=True)
|
30 |
-
|
31 |
-
if not os.path.exists(app.config['JSON_FOLDER']):
|
32 |
-
os.makedirs(app.config['JSON_FOLDER'])
|
33 |
-
|
34 |
-
#Creating Data Folder
|
35 |
-
DATA_FOLDER = 'data/'
|
36 |
-
os.makedirs(DATA_FOLDER, exist_ok=True)
|
37 |
-
|
38 |
-
if not os.path.exists(app.config['DATA_FOLDER']):
|
39 |
-
os.makedirs(app.config['DATA_FOLDER'])
|
40 |
-
|
41 |
-
#Creating Model Folder
|
42 |
-
MODELS_FOLDER = 'Models/'
|
43 |
-
os.makedirs(MODELS_FOLDER, exist_ok=True)
|
44 |
-
|
45 |
-
if not os.path.exists(app.config['MODELS_FOLDER']):
|
46 |
-
os.makedirs(app.config['MODELS_FOLDER'])
|
47 |
|
48 |
# Allowed file extensions
|
49 |
ALLOWED_EXTENSIONS = {'pdf', 'docx', 'rsf', 'odt', 'png', 'jpg', 'jpeg', 'json'}
|
@@ -52,10 +30,10 @@ ALLOWED_EXTENSIONS = {'pdf', 'docx', 'rsf', 'odt', 'png', 'jpg', 'jpeg', 'json'}
|
|
52 |
def allowed_file(filename):
|
53 |
return '.' in filename and filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS
|
54 |
|
55 |
-
# HTML render routes (modify to fit your structure)
|
56 |
@app.route('/')
|
57 |
def index():
|
58 |
return render_template('upload.html')
|
|
|
59 |
@app.route('/guide')
|
60 |
def guide():
|
61 |
return render_template('guide.html')
|
@@ -87,59 +65,44 @@ def text_preview():
|
|
87 |
flash(f"Error loading text preview: {str(e)}", 'error')
|
88 |
return redirect(url_for('index'))
|
89 |
|
90 |
-
# API for uploading Resume files
|
91 |
@app.route('/upload', methods=['GET', 'POST'])
|
92 |
def upload_file():
|
93 |
try:
|
94 |
-
# Check if the request is a POST method, meaning a file is being uploaded
|
95 |
if request.method == 'POST':
|
96 |
-
# Check if the 'file' part is in the request (no file selected case)
|
97 |
if 'file' not in request.files:
|
98 |
-
# Flash an error message and render the same page without redirecting (prevents redirect loop)
|
99 |
flash('No file part', 'error')
|
100 |
-
return render_template('upload.html') #
|
101 |
|
102 |
file = request.files['file']
|
103 |
-
# Check if a file was selected by the user
|
104 |
if file.filename == '':
|
105 |
-
# Flash an error message and render the same page without redirecting (prevents redirect loop)
|
106 |
flash('No selected file', 'error')
|
107 |
-
return render_template('upload.html') #
|
108 |
|
109 |
-
# Check if the uploaded file has an allowed extension
|
110 |
if file and allowed_file(file.filename):
|
111 |
filename = secure_filename(file.filename)
|
112 |
file_path = os.path.join(app.config['UPLOAD_FOLDER'], filename)
|
113 |
file.save(file_path)
|
114 |
|
115 |
-
# Handle non-JSON files
|
116 |
if not filename.lower().endswith('.json'):
|
117 |
-
return process_other_files(file_path, filename)
|
118 |
else:
|
119 |
-
# Flash success message for JSON files and render the upload page
|
120 |
flash('JSON file uploaded successfully', 'success')
|
121 |
-
return render_template('upload.html')
|
122 |
|
123 |
-
# Flash an error if the file type is not allowed
|
124 |
flash('File type not allowed', 'error')
|
125 |
-
return render_template('upload.html')
|
126 |
|
127 |
-
# Render the upload page for GET requests (when the page is loaded initially)
|
128 |
return render_template('upload.html')
|
129 |
-
|
130 |
except Exception as e:
|
131 |
-
# Handle any exceptions that occur, flash the error message, and render the same page
|
132 |
flash(f"Error: {str(e)}", 'error')
|
133 |
-
return render_template('upload.html')
|
134 |
-
|
135 |
|
136 |
-
# Process non-JSON files, extract text and save to 'resume_text.txt'
|
137 |
def process_other_files(file_path, filename):
|
138 |
try:
|
139 |
extracted_text, _ = extract_text_based_on_format(file_path)
|
140 |
cleaned_text = preprocess_text(extracted_text)
|
141 |
|
142 |
-
os.makedirs(app.config['DATA_FOLDER'], exist_ok=True)
|
143 |
resume_file_path = os.path.join(app.config['DATA_FOLDER'], 'resume_text.txt')
|
144 |
|
145 |
with open(resume_file_path, 'w', encoding='utf-8') as f:
|
@@ -151,26 +114,6 @@ def process_other_files(file_path, filename):
|
|
151 |
flash(f"Error processing file {filename}: {str(e)}", 'error')
|
152 |
return redirect(request.referrer)
|
153 |
|
154 |
-
# API to handle the text editing and saving
|
155 |
-
@app.route('/edit_text', methods=['POST'])
|
156 |
-
def edit_text():
|
157 |
-
try:
|
158 |
-
# Get the edited text from the form
|
159 |
-
edited_text = request.form['edited_text']
|
160 |
-
|
161 |
-
# Save the edited text back to 'resume_text.txt'
|
162 |
-
resume_file_path = os.path.join(app.config['DATA_FOLDER'], 'resume_text.txt')
|
163 |
-
with open(resume_file_path, 'w', encoding='utf-8') as f:
|
164 |
-
f.write(edited_text)
|
165 |
-
|
166 |
-
flash('Text edited successfully', 'success')
|
167 |
-
# Pass the edited text back to the template
|
168 |
-
return render_template('text.html', text=edited_text)
|
169 |
-
except Exception as e:
|
170 |
-
flash(f"Error saving edited text: {str(e)}", 'error')
|
171 |
-
return redirect(request.referrer)
|
172 |
-
|
173 |
-
# API for downloading the 'resume_text.txt' file
|
174 |
@app.route('/download', methods=['GET'])
|
175 |
def download_file():
|
176 |
try:
|
@@ -179,186 +122,6 @@ def download_file():
|
|
179 |
flash(f"Error downloading file: {str(e)}", 'error')
|
180 |
return redirect(request.referrer)
|
181 |
|
182 |
-
@app.route('/save_and_download', methods=['POST'])
|
183 |
-
def save_and_download():
|
184 |
-
try:
|
185 |
-
# Get the edited text from the form
|
186 |
-
edited_text = request.form['edited_text']
|
187 |
-
|
188 |
-
# Save the edited text back to 'resume_text.txt'
|
189 |
-
resume_file_path = os.path.join(app.config['DATA_FOLDER'], 'resume_text.txt')
|
190 |
-
with open(resume_file_path, 'w', encoding='utf-8') as f:
|
191 |
-
f.write(edited_text)
|
192 |
-
|
193 |
-
# flash('Text edited successfully', 'success')
|
194 |
-
|
195 |
-
# Now send the file as a download
|
196 |
-
return send_from_directory(app.config['DATA_FOLDER'], 'resume_text.txt', as_attachment=True)
|
197 |
-
|
198 |
-
except Exception as e:
|
199 |
-
flash(f"Error saving and downloading file: {str(e)}", 'error')
|
200 |
-
return redirect(request.referrer)
|
201 |
-
|
202 |
-
|
203 |
-
# API for uploading and processing JSON files
|
204 |
-
@app.route('/upload_json', methods=['POST'])
|
205 |
-
def upload_json_file():
|
206 |
-
try:
|
207 |
-
if 'file' not in request.files:
|
208 |
-
flash('No file part', 'error')
|
209 |
-
return redirect(request.url)
|
210 |
-
|
211 |
-
file = request.files['file']
|
212 |
-
if file.filename == '':
|
213 |
-
flash('No selected file', 'error')
|
214 |
-
return redirect(request.url)
|
215 |
-
|
216 |
-
if file and file.filename.lower().endswith('.json'):
|
217 |
-
filename = secure_filename(file.filename)
|
218 |
-
json_path = os.path.join(app.config['JSON_FOLDER'], filename)
|
219 |
-
os.makedirs(app.config['JSON_FOLDER'], exist_ok=True)
|
220 |
-
file.save(json_path)
|
221 |
-
session['uploaded_json'] = filename
|
222 |
-
flash(f'JSON file {filename} uploaded successfully')
|
223 |
-
else:
|
224 |
-
flash('File type not allowed', 'error')
|
225 |
-
except Exception as e:
|
226 |
-
flash(f"Error: {str(e)}", 'error')
|
227 |
-
|
228 |
-
return redirect(request.referrer)
|
229 |
-
|
230 |
-
# Process uploaded JSON file and save formatted data
|
231 |
-
@app.route('/process_json', methods=['GET'])
|
232 |
-
def process_json_file():
|
233 |
-
try:
|
234 |
-
json_folder = app.config['JSON_FOLDER']
|
235 |
-
json_files = os.listdir(json_folder)
|
236 |
-
|
237 |
-
if not json_files:
|
238 |
-
flash('No JSON files found in the folder', 'error')
|
239 |
-
return redirect(request.referrer)
|
240 |
-
|
241 |
-
filename = json_files[0] # Modify logic if needed to handle multiple files
|
242 |
-
json_path = os.path.join(json_folder, filename)
|
243 |
-
|
244 |
-
if not os.path.exists(json_path):
|
245 |
-
flash(f'JSON file {filename} not found', 'error')
|
246 |
-
return redirect(request.referrer)
|
247 |
-
|
248 |
-
process_uploaded_json(json_path)
|
249 |
-
os.makedirs(app.config['DATA_FOLDER'], exist_ok=True)
|
250 |
-
processed_file_path = os.path.join(app.config['DATA_FOLDER'], f'Processed_{filename}')
|
251 |
-
|
252 |
-
flash(f'JSON file {filename} processed successfully')
|
253 |
-
except Exception as e:
|
254 |
-
flash(f"Error processing JSON file: {str(e)}", 'error')
|
255 |
-
|
256 |
-
return redirect(request.referrer)
|
257 |
-
|
258 |
-
# API for removing uploaded JSON files
|
259 |
-
@app.route('/remove_json', methods=['POST'])
|
260 |
-
def remove_all_json_files():
|
261 |
-
try:
|
262 |
-
json_folder = app.config['JSON_FOLDER']
|
263 |
-
for filename in os.listdir(json_folder):
|
264 |
-
file_path = os.path.join(json_folder, filename)
|
265 |
-
if os.path.isfile(file_path):
|
266 |
-
os.remove(file_path)
|
267 |
-
session.pop('uploaded_json', None)
|
268 |
-
|
269 |
-
flash('All JSON files removed successfully')
|
270 |
-
except Exception as e:
|
271 |
-
flash(f"Error removing files: {str(e)}", 'error')
|
272 |
-
|
273 |
-
return redirect(request.referrer)
|
274 |
-
|
275 |
-
# API for removing non-JSON files
|
276 |
-
@app.route('/remove', methods=['POST'])
|
277 |
-
def remove_file():
|
278 |
-
try:
|
279 |
-
upload_folder = app.config['UPLOAD_FOLDER']
|
280 |
-
|
281 |
-
# Check if the folder exists
|
282 |
-
if os.path.exists(upload_folder):
|
283 |
-
# Loop through all files in the upload folder and remove them
|
284 |
-
for filename in os.listdir(upload_folder):
|
285 |
-
file_path = os.path.join(upload_folder, filename)
|
286 |
-
|
287 |
-
# Check if it is a file and remove it
|
288 |
-
if os.path.isfile(file_path):
|
289 |
-
os.remove(file_path)
|
290 |
-
|
291 |
-
# Clear session data related to uploaded files
|
292 |
-
session.pop('uploaded_file', None)
|
293 |
-
flash('All files removed successfully')
|
294 |
-
else:
|
295 |
-
flash(f"Upload folder does not exist", 'error')
|
296 |
-
|
297 |
-
except Exception as e:
|
298 |
-
flash(f"Error removing files: {str(e)}", 'error')
|
299 |
-
|
300 |
-
return redirect(url_for('index'))
|
301 |
-
|
302 |
-
|
303 |
-
@app.route('/to_sapcy', methods=['POST'])
|
304 |
-
def to_sapcy():
|
305 |
-
try:
|
306 |
-
# Path to the JSON file
|
307 |
-
json_file_path = 'data/Json_Data.json'
|
308 |
-
# Convert the JSON file to a .spacy file
|
309 |
-
spacy_file_path = 'data/Spacy_data.spacy'
|
310 |
-
|
311 |
-
# Call the conversion function
|
312 |
-
convert_json_to_spacy(json_file_path, spacy_file_path)
|
313 |
-
|
314 |
-
flash('Model training data converted successfully', 'success')
|
315 |
-
except Exception as e:
|
316 |
-
flash(f"Error during conversion: {str(e)}", 'error')
|
317 |
-
|
318 |
-
return redirect(request.referrer)
|
319 |
-
|
320 |
-
@app.route('/train_model_endpoint', methods=['POST'])
|
321 |
-
def train_model_endpoint():
|
322 |
-
try:
|
323 |
-
# Get the number of epochs and model version from the request
|
324 |
-
epochs = int(request.form.get('epochs', 10)) # Default to 10 if not provided
|
325 |
-
version = request.form.get('model_version', 'v1') # Default to 'v1' if not provided
|
326 |
-
|
327 |
-
# Call the training function with user-defined parameters
|
328 |
-
model_path = f"./Models/ner_model_{version}"
|
329 |
-
train_model(epochs, model_path)
|
330 |
-
|
331 |
-
flash('Model training completed successfully', 'success')
|
332 |
-
except Exception as e:
|
333 |
-
flash(f"Error during training: {str(e)}", 'error')
|
334 |
-
|
335 |
-
return redirect(url_for('index'))
|
336 |
-
|
337 |
-
# API for removing all files from specific folders
|
338 |
-
@app.route('/remove_files', methods=['POST'])
|
339 |
-
def remove_files():
|
340 |
-
try:
|
341 |
-
# Define folders to clear
|
342 |
-
folders_to_clear = [app.config['UPLOAD_FOLDER'], app.config['JSON_FOLDER'], app.config['MODELS_FOLDER'] ]
|
343 |
-
|
344 |
-
for folder_path in folders_to_clear:
|
345 |
-
# Remove all files from the specified folder
|
346 |
-
for filename in os.listdir(folder_path):
|
347 |
-
file_path = os.path.join(folder_path, filename)
|
348 |
-
if os.path.isfile(file_path):
|
349 |
-
os.remove(file_path)
|
350 |
-
|
351 |
-
# Clear session variables related to the removed folders
|
352 |
-
session.pop('uploaded_file', None)
|
353 |
-
session.pop('uploaded_json', None)
|
354 |
-
|
355 |
-
flash('All files removed from folder successfully')
|
356 |
-
except Exception as e:
|
357 |
-
flash(f"Error removing files: {str(e)}", 'error')
|
358 |
-
|
359 |
-
return redirect(url_for('index'))
|
360 |
-
|
361 |
-
# API for downloading the latest trained model
|
362 |
@app.route('/download_model', methods=['GET'])
|
363 |
def download_latest_model():
|
364 |
try:
|
@@ -369,28 +132,22 @@ def download_latest_model():
|
|
369 |
flash('No model files found', 'error')
|
370 |
return redirect(request.referrer)
|
371 |
|
372 |
-
# Sort model files and get the latest one
|
373 |
latest_model_file = sorted(model_files, reverse=True)[0]
|
374 |
-
|
375 |
-
# Full path to the latest model file
|
376 |
model_path = os.path.join(models_dir, latest_model_file)
|
377 |
-
|
378 |
if not os.path.exists(model_path):
|
379 |
flash('Model file not found on the server', 'error')
|
380 |
return redirect(request.referrer)
|
381 |
-
|
382 |
-
# Create a zip file with the model
|
383 |
zip_filename = os.path.join(models_dir, f"{latest_model_file}.zip")
|
384 |
-
|
385 |
with zipfile.ZipFile(zip_filename, 'w') as zipf:
|
386 |
zipf.write(model_path, os.path.basename(model_path))
|
387 |
-
|
388 |
-
# Send the zip file as a download
|
389 |
return send_file(zip_filename, as_attachment=True)
|
390 |
-
|
391 |
except Exception as e:
|
392 |
flash(f"Error while downloading the model: {str(e)}", 'error')
|
393 |
return redirect(request.referrer)
|
394 |
|
395 |
if __name__ == '__main__':
|
396 |
-
app.run(debug=True)
|
|
|
17 |
app.config['DATA_FOLDER'] = 'data'
|
18 |
app.config['MODELS_FOLDER'] = 'Models'
|
19 |
|
20 |
+
# Creating Folders if not exists
|
21 |
+
os.makedirs(app.config['UPLOAD_FOLDER'], exist_ok=True)
|
22 |
+
os.makedirs(app.config['JSON_FOLDER'], exist_ok=True)
|
23 |
+
os.makedirs(app.config['DATA_FOLDER'], exist_ok=True)
|
24 |
+
os.makedirs(app.config['MODELS_FOLDER'], exist_ok=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
|
26 |
# Allowed file extensions
|
27 |
ALLOWED_EXTENSIONS = {'pdf', 'docx', 'rsf', 'odt', 'png', 'jpg', 'jpeg', 'json'}
|
|
|
30 |
def allowed_file(filename):
|
31 |
return '.' in filename and filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS
|
32 |
|
|
|
33 |
@app.route('/')
|
34 |
def index():
|
35 |
return render_template('upload.html')
|
36 |
+
|
37 |
@app.route('/guide')
|
38 |
def guide():
|
39 |
return render_template('guide.html')
|
|
|
65 |
flash(f"Error loading text preview: {str(e)}", 'error')
|
66 |
return redirect(url_for('index'))
|
67 |
|
|
|
68 |
@app.route('/upload', methods=['GET', 'POST'])
|
69 |
def upload_file():
|
70 |
try:
|
|
|
71 |
if request.method == 'POST':
|
|
|
72 |
if 'file' not in request.files:
|
|
|
73 |
flash('No file part', 'error')
|
74 |
+
return render_template('upload.html') # Avoid redirect loop
|
75 |
|
76 |
file = request.files['file']
|
|
|
77 |
if file.filename == '':
|
|
|
78 |
flash('No selected file', 'error')
|
79 |
+
return render_template('upload.html') # Avoid redirect loop
|
80 |
|
|
|
81 |
if file and allowed_file(file.filename):
|
82 |
filename = secure_filename(file.filename)
|
83 |
file_path = os.path.join(app.config['UPLOAD_FOLDER'], filename)
|
84 |
file.save(file_path)
|
85 |
|
86 |
+
# Handle non-JSON files
|
87 |
if not filename.lower().endswith('.json'):
|
88 |
+
return process_other_files(file_path, filename)
|
89 |
else:
|
|
|
90 |
flash('JSON file uploaded successfully', 'success')
|
91 |
+
return render_template('upload.html')
|
92 |
|
|
|
93 |
flash('File type not allowed', 'error')
|
94 |
+
return render_template('upload.html')
|
95 |
|
|
|
96 |
return render_template('upload.html')
|
|
|
97 |
except Exception as e:
|
|
|
98 |
flash(f"Error: {str(e)}", 'error')
|
99 |
+
return render_template('upload.html')
|
|
|
100 |
|
|
|
101 |
def process_other_files(file_path, filename):
|
102 |
try:
|
103 |
extracted_text, _ = extract_text_based_on_format(file_path)
|
104 |
cleaned_text = preprocess_text(extracted_text)
|
105 |
|
|
|
106 |
resume_file_path = os.path.join(app.config['DATA_FOLDER'], 'resume_text.txt')
|
107 |
|
108 |
with open(resume_file_path, 'w', encoding='utf-8') as f:
|
|
|
114 |
flash(f"Error processing file {filename}: {str(e)}", 'error')
|
115 |
return redirect(request.referrer)
|
116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
@app.route('/download', methods=['GET'])
|
118 |
def download_file():
|
119 |
try:
|
|
|
122 |
flash(f"Error downloading file: {str(e)}", 'error')
|
123 |
return redirect(request.referrer)
|
124 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
@app.route('/download_model', methods=['GET'])
|
126 |
def download_latest_model():
|
127 |
try:
|
|
|
132 |
flash('No model files found', 'error')
|
133 |
return redirect(request.referrer)
|
134 |
|
|
|
135 |
latest_model_file = sorted(model_files, reverse=True)[0]
|
|
|
|
|
136 |
model_path = os.path.join(models_dir, latest_model_file)
|
137 |
+
|
138 |
if not os.path.exists(model_path):
|
139 |
flash('Model file not found on the server', 'error')
|
140 |
return redirect(request.referrer)
|
141 |
+
|
|
|
142 |
zip_filename = os.path.join(models_dir, f"{latest_model_file}.zip")
|
143 |
+
|
144 |
with zipfile.ZipFile(zip_filename, 'w') as zipf:
|
145 |
zipf.write(model_path, os.path.basename(model_path))
|
146 |
+
|
|
|
147 |
return send_file(zip_filename, as_attachment=True)
|
|
|
148 |
except Exception as e:
|
149 |
flash(f"Error while downloading the model: {str(e)}", 'error')
|
150 |
return redirect(request.referrer)
|
151 |
|
152 |
if __name__ == '__main__':
|
153 |
+
app.run(debug=True)
|