Skip to content Skip to sidebar Skip to footer
Showing posts with the label Binary Data

Storing A Binary Hash Value In A Django Model Field

I have a twenty byte hex hash that I would like to store in a django model. If I use a text field,… Read more Storing A Binary Hash Value In A Django Model Field

Ignore Newline Character In Binary File With Python?

I open my file like so : f = open('filename.ext', 'rb') # ensure binary reading wit… Read more Ignore Newline Character In Binary File With Python?