Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python binary diff

Tags:

python

diff

I'm trying to use bsdiff (or any binary diff implementation you come up with) to compute and apply diff onto random binary data. I would like to use it on data from a database, so it would be better not to have to write those onto disk and pass them to bsdiff.exe.

Is there any wrapper library or way in python to do that?

like image 862
sharvey Avatar asked Feb 28 '23 01:02

sharvey


1 Answers

From the bsdiff website:

It has also been made into a Python extension module, and there is a Windows port available.

Following the link brings you to the module's page.

like image 146
Claudiu Avatar answered Mar 07 '23 07:03

Claudiu