PDF¶
pdf(
    src: Union[str, IOBase],
    initial_page: Optional[int] = None,
    width: Optional[Union[int, str]] = "100%",
    height: Optional[Union[int, str]] = "70vh",
    style: Optional[dict[str, Any]] = None,
) -> Html
Render a PDF.
This currently uses the native browser PDF viewer, but may be replaced with a custom viewer.
Example
| PARAMETER | DESCRIPTION | 
|---|---|
| src | the URL of the pdf or a file-like object 
                  
                    TYPE:
                       | 
| initial_page | the page to open the pdf to.
only works if  
                  
                    TYPE:
                       | 
| width | the width of the pdf 
                  
                    TYPE:
                       | 
| height | the height of the pdf. for a percentage
of the user's viewport, use a string like  
                  
                    TYPE:
                       | 
| style | a dictionary of CSS styles to apply to the pdf 
                  
                    TYPE:
                       | 
| RETURNS | DESCRIPTION | 
|---|---|
| Html | 
 |