Skip to content

Commit

Permalink
move scripts to scripts dir. update pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
nealwp committed Oct 30, 2022
1 parent 4c9a36f commit 4373f0c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
from tkinter import BOTH, END, LEFT, Canvas, LabelFrame, Listbox, Scrollbar, StringVar, Text, Tk, Button, Label, Entry, Toplevel, Menu, Frame, SUNKEN, N, S, E, W, BOTTOM, X, messagebox
from tkinter.ttk import Combobox
from tkcalendar import Calendar, DateEntry
from commentscraper import scrape_comments
from pdfscanner import scan_for_keywords, scan_for_comments, scan_pdf_for_summary, MedicalRecord
from docwriter import generate_chronological_medical_summary, generate_tablular_medical_summary
from modules.commentscraper import scrape_comments
from modules.pdfscanner import scan_for_keywords, scan_for_comments, scan_pdf_for_summary, MedicalRecord
from modules.docwriter import generate_chronological_medical_summary, generate_tablular_medical_summary
from pathlib import Path
import subprocess
import requests
Expand Down
2 changes: 1 addition & 1 deletion modules/docwriter.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from docx.enum.style import WD_STYLE_TYPE
from datetime import datetime

from pdfscanner import Exhibit
from modules.pdfscanner import Exhibit

def generate_chronological_medical_summary(data):
doc = docx.Document()
Expand Down
2 changes: 1 addition & 1 deletion tests/test_pdfscanner.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from pdfscanner import *
from modules.pdfscanner import *

file_path = r'.\\files\\2909274-cecilia_phillips-case_file_exhibited_bookmarked-8-10-2022- w notes.pdf'

Expand Down

0 comments on commit 4373f0c

Please sign in to comment.