main
Last change
on this file was
42bd667,
checked in by David Fuertes <dfuertes@…>, 4 years ago
|
Historial Limpio
|
-
Property mode set to
100755
|
File size:
415 bytes
|
Line | |
---|
1 | #!/usr/bin/env python |
---|
2 | # -*- coding: utf-8 -*- |
---|
3 | |
---|
4 | "FPDF for python" |
---|
5 | |
---|
6 | __license__ = "LGPL 3.0" |
---|
7 | __version__ = "1.7.2" |
---|
8 | |
---|
9 | from .fpdf import FPDF, FPDF_FONT_DIR, FPDF_VERSION, SYSTEM_TTFONTS, set_global, FPDF_CACHE_MODE, FPDF_CACHE_DIR |
---|
10 | try: |
---|
11 | from .html import HTMLMixin |
---|
12 | except ImportError: |
---|
13 | import warnings |
---|
14 | warnings.warn("web2py gluon package not installed, required for html2pdf") |
---|
15 | |
---|
16 | from .template import Template |
---|
Note: See
TracBrowser
for help on using the repository browser.