Re: Manipulating raw data in Python

2007-08-21 Thread Chris Mellon
On 8/21/07, Looney, James B <[EMAIL PROTECTED]> wrote: > > > > How do I get access to a data buffer in Python so that I can directly > view/modify the data? My buffer size is 256 (for this specific case) bytes. > Most of the time, I access want to access that data in 4-byte chunks, > sometimes in

Manipulating raw data in Python

2007-08-21 Thread Looney, James B
How do I get access to a data buffer in Python so that I can directly view/modify the data? My buffer size is 256 (for this specific case) bytes. Most of the time, I access want to access that data in 4-byte chunks, sometimes in single byte chunks. How do I go about doing so? I'm certain someon