# iaptoolkit **Repository Path**: mirrors_pexip/iaptoolkit ## Basic Information - **Project Name**: iaptoolkit - **Description**: Library of common utils for interacting with Identity-Aware Proxies - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-23 - **Last Updated**: 2026-03-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # IAP Toolkit A library of utils to ease programmatic authentication with Google IAP (and ideally other IAPs in future). # PyPi https://pypi.org/project/iaptoolkit/ # Installation ### With Poetry: `poetry add iaptoolkit` ### With pip: `pip install iaptoolkit` ## Quick Start / Example Usage ```python import requests from iaptoolkit import IAPToolkit iaptk = IAPToolkit(google_iap_client_id="EXAMPLE_ID_123456789ABCDEF") allowed_domains = ["example.com", ] # Example #1 - Combined Calls def example1(url: str): headers = dict() result = iaptk.check_url_and_add_token_header( url=url, request_headers=headers, valid_domains=allowed_domains ) # result.token_added (bool) indicates if the token was added, depending on whether or not URL was valid # headers dict now contains the appropriate Bearer Token header for Google IAP # Make HTTP GET request with requests lib, with our headers containing bearer token to auth with IAP response = requests.request("GET", url, headers=headers) # Example #2 - Separate Calls - Functionally the same as Example 1 but more flexibility in URL validation def example1(url: str): is_url_safe: bool = iaptk.is_url_safe_for_token(url=url, valid_domains=valid_domains) if not is_url_safe: raise ExampleBadURLException("This URL isn't safe to send token headers to!") headers = dict() token_is_fresh: bool = iaptk.get_token_and_add_to_headers(request_headers=headers) # token_is_fresh indicates if token was newly retrieved (True), or if a cached token was reused (False) # headers dict now contains the appropriate Bearer Token header for Google IAP # Make HTTP GET request with requests lib, with our headers containing bearer token to auth with IAP response = requests.request("GET", url, headers=headers) ``` ## Disclaimer This project is not affiliated with Google. No trademark infringement intended.