Files
web2py/gluon/contrib/fpdf/__init__.py
T
2013-02-17 11:28:02 -06:00

17 lines
317 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
"FPDF for python"
__license__ = "LGPL 3.0"
__version__ = "1.7"
from fpdf import *
try:
from html import HTMLMixin
except ImportError:
import warnings
warnings.warn("web2py gluon package not installed, required for html2pdf")
from template import Template