Update legal_document_analysis.py
Browse files- legal_document_analysis.py +13 -6
legal_document_analysis.py
CHANGED
@@ -15,6 +15,7 @@ from fpdf import FPDF
|
|
15 |
import getpass
|
16 |
import pandas as pd
|
17 |
import seaborn as sns
|
|
|
18 |
|
19 |
# Load environment variables from .env file
|
20 |
load_dotenv()
|
@@ -337,6 +338,13 @@ def plot_risk_heatmap(detected_risks):
|
|
337 |
def base64_to_image(data):
|
338 |
return io.BytesIO(base64.b64decode(data))
|
339 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
340 |
# Function to generate PDF document with improved aesthetics
|
341 |
def generate_pdf_analysis(document_text, summary, detected_clauses, hidden_obligations, detected_risks, risk_assessment_matrix, risk_level_distribution, risks_by_type, stacked_bar_chart, risk_heatmap):
|
342 |
pdf = FPDF()
|
@@ -371,15 +379,15 @@ def generate_pdf_analysis(document_text, summary, detected_clauses, hidden_oblig
|
|
371 |
pdf.ln(10)
|
372 |
|
373 |
# Add visualizations for risks
|
374 |
-
pdf.image(
|
375 |
-
pdf.image(
|
376 |
pdf.ln(60)
|
377 |
|
378 |
-
pdf.image(
|
379 |
-
pdf.image(
|
380 |
pdf.ln(60)
|
381 |
|
382 |
-
pdf.image(
|
383 |
pdf.ln(10)
|
384 |
|
385 |
# Footer
|
@@ -441,7 +449,6 @@ def send_feedback(feedback_content):
|
|
441 |
def send_pdf_via_email(pdf_buffer, recipient_email):
|
442 |
sender_email = os.getenv("SENDER_EMAIL")
|
443 |
password = os.getenv("EMAIL_PASS")
|
444 |
-
|
445 |
msg = MIMEMultipart()
|
446 |
msg['From'] = sender_email
|
447 |
msg['To'] = recipient_email
|
|
|
15 |
import getpass
|
16 |
import pandas as pd
|
17 |
import seaborn as sns
|
18 |
+
import tempfile
|
19 |
|
20 |
# Load environment variables from .env file
|
21 |
load_dotenv()
|
|
|
338 |
def base64_to_image(data):
|
339 |
return io.BytesIO(base64.b64decode(data))
|
340 |
|
341 |
+
# Function to save base64 images to temporary files
|
342 |
+
def save_base64_image(base64_data):
|
343 |
+
img_data = base64.b64decode(base64_data)
|
344 |
+
with tempfile.NamedTemporaryFile(delete=False, suffix=".png") as temp_file:
|
345 |
+
temp_file.write(img_data)
|
346 |
+
return temp_file.name
|
347 |
+
|
348 |
# Function to generate PDF document with improved aesthetics
|
349 |
def generate_pdf_analysis(document_text, summary, detected_clauses, hidden_obligations, detected_risks, risk_assessment_matrix, risk_level_distribution, risks_by_type, stacked_bar_chart, risk_heatmap):
|
350 |
pdf = FPDF()
|
|
|
379 |
pdf.ln(10)
|
380 |
|
381 |
# Add visualizations for risks
|
382 |
+
pdf.image(save_base64_image(risk_assessment_matrix), x=10, y=pdf.get_y(), w=90)
|
383 |
+
pdf.image(save_base64_image(risk_level_distribution), x=110, y=pdf.get_y()-50, w=90) # Position next to the first image
|
384 |
pdf.ln(60)
|
385 |
|
386 |
+
pdf.image(save_base64_image(risks_by_type), x=10, y=pdf.get_y(), w=90)
|
387 |
+
pdf.image(save_base64_image(stacked_bar_chart), x=110, y=pdf.get_y()-50, w=90) # Position next to the previous image
|
388 |
pdf.ln(60)
|
389 |
|
390 |
+
pdf.image(save_base64_image(risk_heatmap), x=10, y=pdf.get_y(), w=190) # Fit image to width
|
391 |
pdf.ln(10)
|
392 |
|
393 |
# Footer
|
|
|
449 |
def send_pdf_via_email(pdf_buffer, recipient_email):
|
450 |
sender_email = os.getenv("SENDER_EMAIL")
|
451 |
password = os.getenv("EMAIL_PASS")
|
|
|
452 |
msg = MIMEMultipart()
|
453 |
msg['From'] = sender_email
|
454 |
msg['To'] = recipient_email
|