• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Makefile.amH A D03-May-2022654 1714

READMEH A D24-Jun-2017558 3121

afflib.pxdH A D24-Jun-2017769 2516

pyaff.cH A D24-Jun-2017160.1 KiB4,3643,585

pyaff.pxdH A D24-Jun-2017117 75

pyaff.pyxH A D24-Jun-20172.2 KiB7253

setup.pyH A D24-Jun-2017613 2520

README

1==================================
2PyAFF - Python bindings for AFFLIB
3==================================
4
5These bindings currently support a read-only file-like interface to AFFLIB and
6basic metadata accessor functions. The binding is not currently complete.
7
8--------
9BUILDING
10--------
11
12python setup.py build
13python setup.py install
14
15-----
16USAGE
17-----
18
19Basic usage example:
20
21  #/usr/bin/python
22  import pyaff
23
24  fd = pyaff.open("diskimage.aff")
25  data = fd.read(1000)
26  fd.seek(0, SEEK_SET)
27
28  print fd.get_seg_names()
29  print fd.get_seg("afflib_version")
30
31