This file is indexed.

/usr/lib/python3/dist-packages/trytond/modules/stock_package_shipping_dpd/configuration.py is in tryton-modules-stock-package-shipping-dpd 4.6.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# This file is part of Tryton.  The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from urllib.parse import urljoin
from zeep import Client
from zeep.transports import Transport

from trytond.config import config

SERVER_URLS = {
    'testing': 'https://public-ws-stage.dpd.com/services/',
    'production': 'https://public-ws.dpd.com/services/',
    }

LOGIN_SERVICE = 'LoginService/V2_0?wsdl'
SHIPMENT_SERVICE = 'ShipmentService/V3_2?wsdl'


def get_client(server, service):
    api_base_url = config.get('stock_package_shipping_dpd',
        server, default=SERVER_URLS[server])
    url = urljoin(api_base_url, service)
    # Disable the cache for testing because zeep's bug
    # https://github.com/mvantellingen/python-zeep/issues/48
    # which makes testing environments fail
    transport = (Transport(cache=None)
        if url.startswith(SERVER_URLS['testing']) else None)
    return Client(url, transport=transport)