source: OpenRLabs-Git/deploy/rlabs-docker/web2py-rlabs/gluon/contrib/fpdf/__init__.py

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
9from .fpdf import FPDF, FPDF_FONT_DIR, FPDF_VERSION, SYSTEM_TTFONTS, set_global, FPDF_CACHE_MODE, FPDF_CACHE_DIR
10try:
11    from .html import HTMLMixin
12except ImportError:
13    import warnings
14    warnings.warn("web2py gluon package not installed, required for html2pdf")
15
16from .template import Template
Note: See TracBrowser for help on using the repository browser.