merge method

merge(output_stream, input_streams)

Merges the given input PDF documents into a single output PDF document using specified input and output streams.

def merge(self, output_stream: io.BytesIO, input_streams: List[io.BytesIO]):
    ...
ParameterTypeDescription
output_streamio.BytesIOThe output stream.
input_streamsList[io.BytesIO]The input streams.

See Also