Hachoir core 1.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Hachoir core 1.2 (Default branch)
# 1  
Old 09-03-2008
Hachoir core 1.2 (Default branch)

ImageHachoir is a Python library used to represent abinary file as a tree of Python objects. Eachobject has a type, a value, an address, etc. Thegoal is to be able to know the meaning of each bitin a file. Hachoir is able to open invalid ortruncated files. It only reads or computes data ondemand to minimize load times. Many field typesare predefined (integer, bit, string, etc.) andstrings with a given character set (such asISO-8859-1 or UTF-8) are supported. Addresses andsizes are stored in bits.License: GNU General Public License (GPL)Changes:
Field.getFieldType() was created to describe afield type and give some useful information. TheTimestampUnix64 field type was created.GenericString now only guesses the character setonce. If the charset attribute if not set, a guessis made when it's requested by the user.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
PY3COMPILE(1)							   User Commands						     PY3COMPILE(1)

NAME
py3compile - byte compile Python 3 source files SYNOPSIS
py3compile [-V [X.Y][-][A.B]] DIR_OR_FILE [-X REGEXPR] py3compile -p PACKAGE DESCRIPTION
Wrapper around py_compile to byte-compile python files. OPTIONS
--version Show program's version number and exit. -h, --help Show this help message and exit. -f, --force Force rebuild of byte-code files even if timestamps are up-to-date. -O Byte-compile to .pyo files. -q, --quiet Be quiet. -v, --verbose Turn verbose mode on -p PACKAGE, --package=PACKAGE Specify Debian package name whose files should be bytecompiled. -V VRANGE Force private modules to be bytecompiled with Python version from given range, regardless of the default Python version in the sys- tem. If there are no other options, bytecompile all public modules for installed Python versions that match given range. VER- SION_RANGE examples: '3.1' (version 3.1 only), '3.1-' (version 3.1 or newer), '3.1-3.3' (version 3.1 or 3.2), '-4.0' (all supported 3.X versions). -X REGEXPR, --exclude=REGEXPR exclude items that match given REGEXPR. You may use this option multiple times to build up a list of things to exclude. py3compile 0.9 September 2010 PY3COMPILE(1)