Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /lib/python3/dist-packages/requests_toolbelt/adapters/__pycache__/ |
Upload File : |
o �ˀX| � @ s0 d Z ddlmZ ddlmZ G dd� de�ZdS )z�Submodule containing the implementation for the FingerprintAdapter. This file contains an implementation of a Transport Adapter that validates the fingerprints of SSL certificates presented upon connection. � )�HTTPAdapter� )�poolmanagerc s6 e Zd ZdZejdg Z� fdd�Zddd�Z� ZS ) �FingerprintAdaptera> A HTTPS Adapter for Python Requests that verifies certificate fingerprints, instead of certificate hostnames. Example usage: .. code-block:: python import requests import ssl from requests_toolbelt.adapters.fingerprint import FingerprintAdapter twitter_fingerprint = '...' s = requests.Session() s.mount( 'https://twitter.com', FingerprintAdapter(twitter_fingerprint) ) The fingerprint should be provided as a hexadecimal string, optionally containing colons. �fingerprintc s || _ tt| �jdi |�� d S )N� )r �superr �__init__)�selfr �kwargs�� __class__r �H/usr/lib/python3/dist-packages/requests_toolbelt/adapters/fingerprint.pyr &