Projects tagged ‘binary’ and ‘hexadecimal’


[4 total ]

1 Users

bitstring is a pure Python module designed to help make the creation, manipulation and analysis of binary data as simple and natural as possible. BitStrings can be constructed from integers (big and ... [More] little endian), hex, octal, binary, strings or files. They can be sliced, joined, reversed, inserted into, overwritten, etc. with simple functions or slice notation. They can also be read from, searched and replaced, and navigated in, similar to a file or stream. Internally the data is efficiently stored as byte arrays, the module has been optimized for speed, and excellent code coverage is given by over 300 unit tests. It is available for Python 2.4+ and for Python 3. To get updates on new releases you can subscribe to the project on freshmeat. DocumentationThe manual for the bitstring module is available as a PDF. It contains a walk-through of all the features and a complete reference section. You can also view this on the Wiki. ExamplesCreation: >>> a = BitString(bin='00101') >>> b = BitString(a_file_object) >>> c = BitString('0xff, 0b101, 0o65, uint:6=22') >>> d = pack('intle:16, hex=a, 0b1', 100, a='0x34f') >>> e = pack('For full details on the API changes and for earlier changes, see the release notes. There is one version for Python 2.4 / 2.5 / 2.6 (version 1.0.0) and another for Python 3.0 / 3.1 (version 1.0.1). [Less]
Created 10 months ago.

0 Users

BinHexOctConversion tool for Binary, Hex, Decimal and octal. Developed for the Android mobile platform. Available to download from the market
Created 8 months ago.

0 Users

This is a java web applet/application that will convert to and from ascii, decimal, hexadecimal, binary, Morse code and semaphore. IMPORTANT: this applet was made in less than 24 hours. If you find ... [More] that there is a problem with it's translation of some given input PLEASE notify me at jesfish@gmail.com so I can fix the problem immediately. Hope you enjoy! [Less]
Created 12 months ago.

0 Users

When I doing some daily work, I found the Window's caculator can't convert float numbers from binary to decimal, so I developed this small tool to solve it. This small program is written by C#, so you need to install .net framework first.
Created 6 months ago.