In any python, is there a package out there that helps with adding and subtracting of bytes or byte arrays. Kinda like how this site does binary subtraction and addition.
http://www.csgnetwork.com/binaddsubcalc.html
I want to try to use files as a way to work with big numbers. Instead of storing the information in the memory.
I want to load bytes in, one at a time, manipulate, and keep left over for next byte, and repeat through out the file. Seems it would work. Seems like something someone somewhere would have already done. It would be slower, but it's the sacrifice for being able to work with bigger numbers without using all the ram. Any one know where i can look?