在Python中解析MySQL的二进制日志(binlog)可以使用第三方库mysql-replication。以下是使用mysql-replication库解析binlog的基本步骤:
pip install mysql-replication
from pymysqlreplication import BinLogStreamReader
from pymysqlreplication.row_event import WriteRowsEvent
# 创建一个BinLogStreamReader对象
stream = BinLogStreamReader(
    connection_settings = {
        "host": "localhost",
        "port": 3306,
        "user": "root",
        "passwd": "password"
    },
    server_id=100,
    blocking=True,
    only_events=[WriteRowsEvent]
)
# 循环读取binlog中的事件
for binlogevent in stream:
    for row in binlogevent.rows:
        print(row)
# 关闭BinLogStreamReader对象
stream.close()
在上面的示例中,我们创建了一个BinLogStreamReader对象,指定了连接到MySQL数据库的参数。然后我们循环读取binlog中的事件,并打印出每个事件中的行。
请注意,此示例只处理WriteRowsEvent事件,如果您还想处理其他类型的事件,请相应地修改only_events参数。您还可以根据您的需求进一步处理binlog中的事件和行数据。