Skip to main content

A Python xmlrpc client library with proxy and timeout support.

Project description

A Python xmlrpc client library with proxy and timeout support.

Installation

$ pip install xmlrpclibex

Or

$ python setup.py install

Usage

  • A basic example

from xmlrpclibex import xmlrpclibex
sp = xmlrpclibex.ServerProxy(uri, timeout=30,
                    proxy={
                        'host': 'your proxy address',
                        'port': 'your proxy port',
                        'is_socks': True,
                        'socks_type': 'v5'
                    })
  • The timeout and proxy parameters

    This module subclasses the ServerProxy class from the xmlrpclib module (or the xmlrpc.client module in case of Python3), and adds two parameters timeout and proxy.

    • timeout: seconds waiting for the socket operations.

    • proxy: a dict specifies the proxy settings (supports HTTP proxy and socks proxy). The dict supports the following keys:

      • host: the address of the proxy server (IP or DNS)

      • port: the port of the proxy server. default: 8080 for http proxy, and 1080 for socks proxy

      • username: username to authenticate to the server. default None

      • password: password to authenticate to the server, only relevant when username is set. default None

      • is_socks: whether the proxy is a socks proxy, default False

      • socks_type: string, ‘v4’, ‘v5’, ‘http’ (http connect tunnel), only relevant when is_socks is True. default ‘v5’

Note

  • Sometimes, access HTTPS over HTTP Proxy (through CONNECT tunnel) may report errors, recommend using SOCKS proxy.

License

Copyright 2015 benhengx

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xmlrpclibex-0.1.0.tar.gz (8.0 kB view details)

Uploaded Source

File details

Details for the file xmlrpclibex-0.1.0.tar.gz.

File metadata

  • Download URL: xmlrpclibex-0.1.0.tar.gz
  • Upload date:
  • Size: 8.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for xmlrpclibex-0.1.0.tar.gz
Algorithm Hash digest
SHA256 527ed45c153db89ced9176d35296cb8c247fec759f6f0fc293cebd6daf1deb4d
MD5 b5e6065d3ab45bc0859fd911dc0d1ac9
BLAKE2b-256 f4cdc1f3ecc2260892cf8f66028885f4d49ce9e88119ff3f69bb765f5712323a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page