Spaces:
Sleeping
Sleeping
File size: 8,388 Bytes
0bae2dd c105677 c9a0d37 c105677 0bae2dd 9a45dad 0bae2dd 7dde793 0bae2dd 9a45dad 0bae2dd d41ca54 7dde793 0bae2dd 4997d1f 0bae2dd 4997d1f 0bae2dd 49341e5 0bae2dd 49341e5 4997d1f 7dde793 49341e5 4997d1f 7dde793 49341e5 1fc8afa 7f3ac2c 1fc8afa 7f3ac2c 5a7408a 5469609 6d6605c 5469609 6d6605c a60aca4 5469609 49341e5 7dde793 49341e5 7dde793 49341e5 4997d1f 7dde793 49341e5 4997d1f 7dde793 49341e5 0bae2dd 1a1bb23 0bae2dd 7dde793 0bae2dd 8d2eaad 0bae2dd 8d2eaad 0bae2dd 4997d1f 0bae2dd 4997d1f 0bae2dd 4997d1f 0bae2dd 7dde793 0bae2dd 4997d1f 0bae2dd 7dde793 0bae2dd 7dde793 0bae2dd 7dde793 0bae2dd 4997d1f 0bae2dd 96d4e69 4997d1f 96d4e69 4997d1f 96d4e69 4997d1f 96d4e69 4997d1f c50fd8e 96d4e69 9a45dad 0bae2dd 7dde793 |
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 |
import os
import json
from flask import Flask, request, render_template, redirect, url_for, session, flash, send_from_directory, send_file
from werkzeug.utils import secure_filename
from utils.file_to_text import extract_text_based_on_format, preprocess_text
from utils.anoter_to_json import process_uploaded_json
from utils.json_to_spacy import convert_json_to_spacy
from utils.model import train_model
import zipfile
app = Flask(__name__)
app.secret_key = 'your_secret_key'
os.umask(0o000)
# Folder paths
app.config['UPLOAD_FOLDER'] = 'uploads/'
app.config['JSON_FOLDER'] = 'JSON/'
app.config['DATA_FOLDER'] = 'data/'
app.config['MODELS_FOLDER'] = 'Models/'
# Creating Folders if not exists
os.makedirs(app.config['UPLOAD_FOLDER'], exist_ok=True)
os.makedirs(app.config['JSON_FOLDER'], exist_ok=True)
os.makedirs(app.config['DATA_FOLDER'], exist_ok=True)
os.makedirs(app.config['MODELS_FOLDER'], exist_ok=True)
# Verify and check once again if the folders are created or not
if not os.path.exists(app.config['UPLOAD_FOLDER']):
os.makedirs(app.config['UPLOAD_FOLDER'])
if not os.path.exists(app.config['JSON_FOLDER']):
os.makedirs(app.config['JSON_FOLDER'])
if not os.path.exists(app.config['DATA_FOLDER']):
os.makedirs(app.config['DATA_FOLDER'])
if not os.path.exists(app.config['MODELS_FOLDER']):
os.makedirs(app.config['MODELS_FOLDER'])
# Create the empty file
file_path = os.path.join(app.config['DATA_FOLDER'], 'resume_text.txt')
with open(file_path, 'w') as file:
pass
# Allowed file extensions
ALLOWED_EXTENSIONS = {'pdf', 'docx', 'rsf', 'odt', 'png', 'jpg', 'jpeg', 'json'}
# Function to check file extensions
def allowed_file(filename):
return '.' in filename and filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS
@app.route('/')
def index():
return render_template('upload.html')
@app.route('/guide')
def guide():
return render_template('guide.html')
@app.route('/ner_preview', methods=['GET'])
def ner_preview():
return render_template('anoter.html')
@app.route('/json', methods=['GET'])
def json_file():
return render_template('savejson.html')
@app.route('/spacy', methods=['GET'])
def spacy_file():
return render_template('saveSpacy.html')
@app.route('/text_preview', methods=['GET'])
def text_preview():
try:
resume_file_path = os.path.join(app.config['DATA_FOLDER'], 'resume_text.txt')
if not os.path.exists(resume_file_path):
flash('Resume text not found', 'error')
print('Resume text not found')
return redirect(url_for('index'))
with open(resume_file_path, 'r') as f:
text = f.read()
return render_template('text.html', text=text)
except Exception as e:
flash(f"Error loading text preview: {str(e)}", 'error')
print(f"Error loading text preview: {str(e)}")
return redirect(url_for('index'))
@app.route('/upload', methods=['GET', 'POST'])
def upload_file():
try:
if request.method == 'POST':
if 'file' not in request.files:
flash('No file part', 'error')
print('No file part to upload')
return render_template('upload.html') # Avoid redirect loop
file = request.files['file']
if file.filename == '':
flash('No selected file', 'error')
print('No selected file to upload')
return render_template('upload.html') # Avoid redirect loop
if file and allowed_file(file.filename):
filename = secure_filename(file.filename)
file_path = os.path.join(app.config['UPLOAD_FOLDER'], filename)
if file_path:
print("Folder got it", file_path)
else:
print("Folder not got it......................")
try:
file.save(file_path)
print('File uploaded successfully', 'success')
except Exception as e:
print(f"Error saving file: {str(e)}", 'error')
flash(f"Error saving file: {str(e)}", 'error')
return render_template('upload.html')
# Handle non-JSON files
if not filename.lower().endswith('.json'):
return process_other_files(file_path, filename)
else:
flash('JSON file uploaded successfully', 'success')
print('JSON file uploaded successfully')
return render_template('upload.html')
flash('File type not allowed', 'error')
print('File type not allowed')
return render_template('upload.html')
return render_template('upload.html')
except Exception as e:
print(f"Error----------: {str(e)}", 'error')
flash(f"Error: {str(e)}", 'error')
return render_template('upload.html')
def process_other_files(file_path, filename):
try:
extracted_text, _ = extract_text_based_on_format(file_path)
cleaned_text = preprocess_text(extracted_text)
resume_file_path = os.path.join(app.config['DATA_FOLDER'], 'resume_text.txt')
print("text file path",resume_file_path)
with open(resume_file_path, 'w', encoding='utf-8') as f:
f.write(cleaned_text)
session['uploaded_file'] = filename
print("save in txt file")
return render_template('text.html', text=cleaned_text)
except Exception as e:
flash(f"Error processing file {filename}: {str(e)}", 'error')
print(f"Error processing file {filename}: {str(e)}")
return redirect(request.referrer)
@app.route('/download', methods=['GET'])
def download_file():
try:
return send_from_directory(app.config['DATA_FOLDER'], 'resume_text.txt', as_attachment=True)
except Exception as e:
flash(f"Error downloading file: {str(e)}", 'error')
print(f"Error downloading file: {str(e)}")
return redirect(request.referrer)
@app.route('/download_model', methods=['GET'])
def download_latest_model():
try:
models_dir = app.config['MODELS_FOLDER']
model_files = os.listdir(models_dir)
if not model_files:
flash('No model files found', 'error')
print('No model files found')
return redirect(request.referrer)
latest_model_file = sorted(model_files, reverse=True)[0]
model_path = os.path.join(models_dir, latest_model_file)
if not os.path.exists(model_path):
flash('Model file not found on the server', 'error')
print('Model file not found on the server')
return redirect(request.referrer)
zip_filename = os.path.join(models_dir, f"{latest_model_file}.zip")
with zipfile.ZipFile(zip_filename, 'w') as zipf:
zipf.write(model_path, os.path.basename(model_path))
return send_file(zip_filename, as_attachment=True)
except Exception as e:
flash(f"Error while downloading the model: {str(e)}", 'error')
print(f"Error while downloading the model: {str(e)}")
return redirect(request.referrer)
@app.route('/remove_file', methods=['POST'])
def remove_file():
try:
file_to_remove = session.get('uploaded_file', None)
if file_to_remove:
file_path = os.path.join(app.config['UPLOAD_FOLDER'], file_to_remove)
if os.path.exists(file_path):
os.remove(file_path)
flash(f"{file_to_remove} removed successfully.", "success")
print(f"{file_to_remove} removed successfully.")
session.pop('uploaded_file', None)
else:
flash("File not found.", "error")
print("File not found.")
else:
flash("No file selected for removal.", "error")
print("No file selected for removal.")
except Exception as e:
flash(f"Error while removing file: {str(e)}", "error")
print(f"Error while removing file: {str(e)}", "error")
return redirect(url_for('upload_file'))
# Route to serve uploaded files
'''
@app.route('/uploads/<filename>')
def uploaded_file(filename):
return send_from_directory(app.config['UPLOAD_FOLDER'], filename)
'''
if __name__ == '__main__':
app.run(debug=True)
|