julien-duponchelle / python-mysql-replication

Pure Python Implementation of MySQL replication protocol build on top of PyMYSQL
2.31k stars 678 forks source link

need json feature #583

Open junha6316 opened 9 months ago

junha6316 commented 9 months ago

The Python-MySQL Replication project is designed to convert binlog events generated by the MySQL replication protocol into Python objects. As these objects are delivered to users in Python, they can be transformed flexibly according to the users' needs. However, in most cases, it has been observed that companies tend to convert these objects into JSON format for their use.

I think JSON feature within the event class to accommodate user needs! Although the feature can be implemented simply, i believe it to be a valuable contribution that sufficiently reflects the needs of our users.