What would be the equivalent to "kubectl describe nodes" in python k8s client?

In python what would be the equivalent of “kubectl describe nodes”? In particular I want a list of nodes with their labels, taints and resource availability. I’m not having an easy time navigating the documentation for the python api.

Found an example that helped:

Example 8 did the job.