SP/web2py/gluon/contrib/pyfpdf.py

12 lines
416 B
Python
Raw Permalink Normal View History

2018-10-25 15:33:07 +00:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"FPDF for python (a.k.a. pyfpdf)"
# Read more about this http://code.google.com/p/pyfpdf
# Please note that new package name is fpdf (to avoid some naming conflicts)
# import fpdf into pyfpdf for backward compatibility (prior web2py 2.0):
from gluon.contrib.fpdf import *
# import warnings
# warnings.warn("pyfpdf package name is deprecated, please use fpdf instead")