View linkInternalExternalExtractor.py
#!/usr/bin/python | |
__author__ = "Devharsh Trivedi" | |
__copyright__ = "Copyright 2018, Devharsh Trivedi" | |
__license__ = "GPL" | |
__version__ = "1.4" | |
__maintainer__ = "Devharsh Trivedi" | |
__email__ = "devharsh@live.in" | |
__status__ = "Production" |
View writeToPdf.py
import io | |
from reportlab.platypus import SimpleDocTemplate, Paragraph | |
from reportlab.lib.styles import getSampleStyleSheet | |
from reportlab.lib.units import inch | |
from reportlab.lib.pagesizes import letter | |
buf = io.BytesIO() | |
doc = SimpleDocTemplate( | |
buf, |