Graybyt3 Was Here
Linux cloud.locucionar.com 3.10.0-1160.81.1.el7.x86_64 #1 SMP Fri Dec 16 17:29:43 UTC 2022 x86_64
Apache
91.191.211.241
/
lib
/
python2.7
/
site-packages
/
requests_toolbelt
/
adapters
[ HOME ]
Exec
Submit
File Name : fingerprint.pyo
� ӵ Yc @ s@ d Z d d l m Z d d l m Z d e f d � � YZ d S( s� 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. i����( t HTTPAdapteri ( t poolmanagert FingerprintAdapterc B s3 e Z d Z e j d g Z d � Z e d � Z RS( s> 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. t fingerprintc K s# | | _ t t | � j | � d S( N( R t superR t __init__( t selfR t kwargs( ( sJ /usr/lib/python2.7/site-packages/requests_toolbelt/adapters/fingerprint.pyR &