'How to get printer properties?

I have to get the properties of 10 printer (ip, hostname, prints, printer toner) using python, but I don't know if there is a object for printers. Somebody knows how to do it? I´ve tried with the following code, but I have differents marks and it not work.

import requests  #Importamos la librería requests


URL = 'http://192.168.10.197/sws/app/information/home/home.json'
data = requests.get(URL)
data = data.json()


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source