-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
59 lines (45 loc) · 1.68 KB
/
app.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
from flask import Flask, request, jsonify
import os
import tempfile
from markitdown import MarkItDown
from werkzeug.utils import secure_filename
app = Flask(__name__)
@app.route('/health', methods=['GET'])
def health_check():
return jsonify({"status": "healthy"}), 200
@app.route('/convert', methods=['POST'])
def convert_file():
# Check if file is present in the request
if 'file' not in request.files:
return jsonify({"error": "No file provided"}), 400
file = request.files['file']
# Check if the file has a name
if file.filename == '':
return jsonify({"error": "No file selected"}), 400
# Create a temporary file to save the uploaded file
temp_dir = tempfile.mkdtemp()
file_path = os.path.join(temp_dir, secure_filename(file.filename))
try:
# Save the file temporarily
file.save(file_path)
# Process with MarkItDown
md = MarkItDown()
result = md.convert(file_path)
# Prepare the response
response = {
"markdown": result.text_content
}
# Add any other relevant data from the result object if needed
# Example: if result has metadata, add it to the response
if hasattr(result, 'metadata'):
response["metadata"] = result.metadata
return jsonify(response), 200
except Exception as e:
return jsonify({"error": str(e)}), 500
finally:
# Clean up the temporary file
if os.path.exists(file_path):
os.remove(file_path)
# Clean up the temporary directory
if os.path.exists(temp_dir):
os.rmdir(temp_dir)