File size: 898 Bytes
a67af8e
 
 
6f19fcb
a67af8e
 
 
6f19fcb
 
 
 
 
 
 
a67af8e
 
6f19fcb
 
f66d625
6f19fcb
a67af8e
6f19fcb
a67af8e
6f19fcb
 
a67af8e
 
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
from flask import Flask, request, jsonify
import cv2
import sqlite3
from datetime import datetime

app = Flask(__name__)

# Database setup
conn = sqlite3.connect('materials.db', check_same_thread=False)
c = conn.cursor()
c.execute('''CREATE TABLE IF NOT EXISTS counts 
             (id INTEGER PRIMARY KEY, name TEXT, count INTEGER, timestamp TEXT)''')
conn.commit()

@app.route('/count', methods=['POST'])
def count_material():
    data = request.json
    name = data.get('name', 'Unknown')
    count = 5  # Placeholder (camera logic baad mein add karo)
    timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
    c.execute("INSERT INTO counts (name, count, timestamp) VALUES (?, ?, ?)", 
              (name, count, timestamp))
    conn.commit()
    return jsonify({"material": name, "count": count, "timestamp": timestamp})

if __name__ == '__main__':
    app.run(host='0.0.0.0', port=7860)