Re: Viewing Binary Data

2006-01-08 Thread [EMAIL PROTECTED]
This recipe is a good place to start: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/440528 Cheers Rich. -- http://mail.python.org/mailman/listinfo/python-list

Re: Viewing Binary Data

2006-01-08 Thread Claudio Grondi
Cuyler wrote: Hello, I would like to display a file in its binary form (1s and 0s), but I'm having no luck... Any thoughts would be most appreciated. Cheers! Cuyler You may consider to check out the latest by me started thread in this newsgroup with the subject: Does Python allow

Re: Viewing Binary Data

2006-01-08 Thread Peter Hansen
Cuyler wrote: I would like to display a file in its binary form (1s and 0s), but I'm having no luck... Any thoughts would be most appreciated. I'm sure the list archives (visible via Google Groups and other means) has answers to similar questions in the past. Also the online Python CookBook

Re: Viewing Binary Data

2006-01-08 Thread Paul Watson
Cuyler wrote: I would like to display a file in its binary form (1s and 0s), but I'm having no luck... Any thoughts would be most appreciated. If you are on a UNIX system, or on Windows with Cygwin, you can use the 'od' command to dump a file in hex or octal. man od od -Ax

Re: Viewing Binary Data

2006-01-08 Thread Bengt Richter
On 6 Jan 2006 09:15:50 -0800, Cuyler [EMAIL PROTECTED] wrote: Hello, I would like to display a file in its binary form (1s and 0s), but I'm having no luck... Any thoughts would be most appreciated. What have you tried? having no luck doesn't tell us much, although it is a phrase previously seen

Re: Viewing Binary Data

2006-01-08 Thread Rod Haper
Paul Watson wrote: Cuyler wrote: I would like to display a file in its binary form (1s and 0s), but I'm having no luck... Any thoughts would be most appreciated. If you are on a UNIX system, or on Windows with Cygwin, you can use the 'od' command to dump a file in hex or octal.

Viewing Binary Data

2006-01-07 Thread Cuyler
Hello, I would like to display a file in its binary form (1s and 0s), but I'm having no luck... Any thoughts would be most appreciated. Cheers! Cuyler -- http://mail.python.org/mailman/listinfo/python-list