xellDart13 commited on
Commit
a003874
·
verified ·
1 Parent(s): 77d5cfb

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +64 -0
app.py ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import requests
3
+ import json
4
+ import os
5
+
6
+ API_URL = "https://ia.nebuia.com/api/v1/integrator/extractor/from/image"
7
+ API_KEY = "2J7NFWQ-236PGAM-2S9RD3C-2DG54CY"
8
+ API_SECRET = "a47abf97-866b-4154-b29c-346c9b02919e"
9
+
10
+ def send_excel_to_api(file_path, json_structure):
11
+ headers = {
12
+ 'key': API_KEY,
13
+ 'secret': API_SECRET
14
+ }
15
+
16
+ files = {
17
+ 'file': open(file_path, 'rb')
18
+ }
19
+
20
+ data = {
21
+ 'structure': json_structure
22
+ }
23
+
24
+ try:
25
+ response = requests.post(API_URL, headers=headers, files=files, data=data)
26
+
27
+ if response.status_code == 200:
28
+ result = response.json()
29
+ print(result)
30
+ if result.get("status"):
31
+ return json.dumps(result["payload"], indent=2)
32
+ else:
33
+ return f"Error: {result.get('message', 'Unknown error')}"
34
+ else:
35
+ return f"Error: Received status code {response.status_code}\n{response.text}"
36
+ except requests.RequestException as e:
37
+ return f"Error sending request: {e}"
38
+ finally:
39
+ files['file'].close()
40
+
41
+ def gradio_interface(file, json_structure):
42
+ if file is None:
43
+ return "Please upload an Excel file."
44
+ return send_excel_to_api(file.name, json_structure)
45
+
46
+ # Create the Gradio interface
47
+ iface = gr.Interface(
48
+ fn=gradio_interface,
49
+ inputs=[
50
+ gr.File(label="Upload Excel File"),
51
+ gr.Code(label="JSON Structure", language="json", lines=10, value='''{
52
+ "curp": "",
53
+ "clave_elector": "",
54
+ "nombre": "",
55
+ "fecha_nacimiento": ""
56
+ }''')
57
+ ],
58
+ outputs=gr.Textbox(label="API Response", lines=10),
59
+ title="NebuIA Excel Extractor",
60
+ description="Sube un excel, modifica la estructura a llenar y presiona Submit."
61
+ )
62
+
63
+ # Launch the interface
64
+ iface.launch()