The get() method is a very useful method for retrieving values from dictionaries. While methods like keys(), values(), and items() are also useful for retrieving values from dictionaries, the get() method is unique in that it let’s you specify a default value that will be returned if the key you’ve tried to retrieve from the dictionary does not exist.
Upgrading Palo Alto firewalls using python
I recently came across a python script to upgrade Palo Alto firewalls. This is a short post on my experience using it. This operation utilises a python script called pan-os-upgrade In this case, I’m using a test Palo Alto firewall. My first step was to create my python virtual environment. For this project, my python … Read more