Skip to content

Commit d6ee10f

Browse files
committed
Major Refactoring
Changed a lot of the logic in the original files. Made it easier to swap translations and update them in the future. Dynamically creates pdf pages based on the total lines found. in each list.
1 parent e47869d commit d6ee10f

12 files changed

+1264
-2579
lines changed

.gitignore

+2-3
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,8 @@ dmypy.json
147147
# Cython debug symbols
148148
cython_debug/
149149

150-
# data folders
151-
output/
152-
csv/
150+
# templates folder
151+
/templates
153152

154153
# PyCharm
155154
# JetBrains specific template is maintainted in a separate JetBrains.gitignore that can

core/__init__.py

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1+
from .report import *
2+
from .structure import *
13
from .process import *
2-
from .csvgen import *
3-
from .reportgen import *
4-
from .reportstructure import *
54
from .syntax import *
6-
from .values import *
75

86

9-
__author__ = "Nickolas Rodriguez"
10-
__description__ = "An instant PDF generator for ApplyTexas Applications. Utilizes various libraries with reportlab being the main engine for its purpose."
7+
__author__ = 'Nickolas Rodriguez'

core/csvgen.py

-66
This file was deleted.

0 commit comments

Comments
 (0)