Python使用PJL检测打印机状态和打印次数

Python使用PJL检测打印机状态和打印次数

# -*- coding: UTF-8 -*-
import socket
import time
from datetime import datetime

def get_printer_status(printer_ip):
    # 创建socket对象
    s = socket.socket()
    timeout = 10  # 设置socket超时时间
    s.settimeout(timeout)
    try:
        # 连接到打印机
        s.connect((printer_ip, 9100))
        # 发送PJL命令获取状态
        s.send("@PJL INFO STATUS\r\n".encode('ascii'))
        # 等待响应
        response = s.recv(1024).decode('utf-8')
        # 发送PJL命令获取打印次数
        # s.send("@PJL INFO PAGECOUNT\r\n".encode('ascii'))
        # response1 = s.recv(1024).decode('utf-8')
        current_time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
        # 使用'a'模式打开文件,如果文件不存在则创建
        # with open('result.log', 'a', encoding='utf-8') as file:
            # 使用print函数将内容追加到文件的末尾
            # print(current_time,"打印机状态:", response.replace("\r\n", " ").replace("\x0c",""),
                #   "打印次数:", response1.replace("\r\n", " ").replace("\x0c",""), file=file)
        print(current_time,"打印机状态:", response.replace("\r\n", " ").replace("\x0c",""))
    except Exception as e:
            print("Failed to get printer status:", str(e))
    finally:
        # 关闭连接
        s.close()

# 使用示例
printer_ip = 'XX.XX.XX.XX'  # 替换为打印机的IP地址
# 设置循环次数
total_iterations = 100
# 设置每次循环的间隔时间(秒)
interval = 1

for i in range(total_iterations):
    # 这里放置需要循环执行的任务
    if i % 10 == 0:  # 每隔10次循环
        print(f"执行第 {i+1} 次任务")
    get_printer_status(printer_ip)
    # 等待1秒
    time.sleep(interval)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值