## The problem
Issue googleapis/python-bigquery#1565 (closed, 16 comments): Seeing "ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with OpenSSL 1.0.2k-fips 26 Jan 2017. See: https://github.com/urllib3/urllib3/issues/2168" when I import this library. it pointed me to this issue, can someone help me with what's the fix for this?

## What to do
This error means your Python is linked against an old OpenSSL (or LibreSSL) while urllib3 v2 needs OpenSSL 1.1.1 or newer. Quick fix: pin urllib3 to the 1.26 line with pip install urllib3==1.26.15. Proper fix: upgrade OpenSSL and reinstall Python against it (on macOS: brew upgrade openssl, then reinstall Python via pyenv). In AWS Glue, pass google-cloud-bigquery==3.4.1 urllib3==1.26.15 via the --additional-python-modules job parameter, or avoid shipping a too-new requests that drags in urllib3 v2.