File size: 1,549 Bytes
d7508be
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import base64
from flask import Flask, request, jsonify, render_template
from io import BytesIO
from maincode import *
import re

app = Flask(__name__)

def calculate(expression):
    try:
        result = []
        for eq in expression:
            result.append(eval(eq.replace("=", "")))
        print(result)
        return result
    except Exception as e:
        print(f"Error : {e}")
        return []

def advanced_calculator(text):
    pattern = r'(\d+(?:\s*[+\-*/]\s*\d+)*)\s?='
    matches = re.findall(pattern, text)
    filtered_expressions = []
    for match in matches:
        equation = match + '='
        remaining_text = text[text.find(equation)+len(equation):].strip()
        if remaining_text and remaining_text[0].isdigit():
            continue
        filtered_expressions.append(equation.replace(" ", "").strip())
    return calculate(filtered_expressions)

@app.route('/')
def home():
    return render_template('index.html')

@app.route('/whitebai', methods=['POST'])
def whitebai():
    data = request.get_json()
    image_data = data.get('image')
    if not image_data:
        return jsonify({'message': 'No image data received'}), 400
    image_data = image_data.split(',')[1]
    image_bytes = base64.b64decode(image_data)
    image_file = BytesIO(image_bytes)
    elt = ExtractTextFromImage(image_file)
    elt.process_file()
    dat = elt.get_text()
    return jsonify({'message': advanced_calculator(dat)})

if __name__ == '__main__':
    app.run(debug=True)