mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 18:23:07 +02:00
11 lines
250 B
Python
11 lines
250 B
Python
|
|
"""Brother laser printer status checker.
|
||
|
|
|
||
|
|
Usage:
|
||
|
|
sudo python3 -m brother_printer # auto-detect
|
||
|
|
sudo python3 -m brother_printer <printer_ip> # network/SNMP mode
|
||
|
|
"""
|
||
|
|
|
||
|
|
from brother_printer.check_brother_printer import main
|
||
|
|
|
||
|
|
main()
|