| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/fpdf-stubs/ |
Upload File : |
from _typeshed import Incomplete
from typing import Any
__author__: str
__copyright__: str
__license__: str
class FlexTemplate:
pdf: Any
splitting_pdf: Any
handlers: Any
texts: Any
def __init__(self, pdf, elements: Incomplete | None = None) -> None: ...
elements: Any
keys: Any
def load_elements(self, elements) -> None: ...
def parse_csv(self, infile, delimiter: str = ",", decimal_sep: str = ".", encoding: Incomplete | None = None): ...
def __setitem__(self, name, value) -> None: ...
set: Any
def __contains__(self, name): ...
def __getitem__(self, name): ...
def split_multicell(self, text, element_name): ...
def render(self, offsetx: float = 0.0, offsety: float = 0.0, rotate: float = 0.0, scale: float = 1.0): ...
class Template(FlexTemplate):
def __init__(
self,
infile: Incomplete | None = None,
elements: Incomplete | None = None,
format: str = "A4",
orientation: str = "portrait",
unit: str = "mm",
title: str = "",
author: str = "",
subject: str = "",
creator: str = "",
keywords: str = "",
) -> None: ...
def add_page(self) -> None: ...
def render(self, outfile: Incomplete | None = None, dest: Incomplete | None = None) -> None: ... # type: ignore[override]