I'm trying to print a simple string to a network printer. This is what I have so far: <br><br>import os<br><br>printer_path = "192.168.200.139"<br>p = os.popen(printer_path, 'w')<br>p.write("this is a printer test")<br>
p.close()<br><br>I'm trying to call the printer from its IP address. When I run the script I get:<br>sh: <a href="http://192.168.200.139">192.168.200.139</a>: not found<br><br>thanks for you help in advance.<br>