Getting Started with the f5-common-python SDK
If you have dabbled with python and iControl over the years, you might be familiar with some of my other “Getting Stared with …” articles on python libraries. I started my last, on Bigsuds, this way:...
Updated Jun 06, 2023
Version 2.0JRahm
Admin
Joined January 20, 2005
adamfitz
Apr 13, 2020Nimbostratus
You can use the below line in your script to remove the stdout warning spam when you have self signed certificates configured:
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
Note that you need to explicitly import urllib3 module in your script for this to work.