Package rekall :: Module resources
[frames] | no frames]

Module resources

source code


Author: Michael Cohen <scudette@gmail.com>

Functions
 
get_resource(filename, package='rekall-core', prefix='resources')
Use the pkg_resources API to extract resources.
source code
Variables
  __author__ = 'Michael Cohen <scudette@gmail.com>'
Finds resources which are normally bundled with Rekall.
  __package__ = 'rekall'
Function Details

get_resource(filename, package='rekall-core', prefix='resources')

source code 
Use the pkg_resources API to extract resources.

 This will extract into a temporary file in case the egg is compressed.

 Args:
   package: name of the package (e.g. rekall-core, rekall-gui).
   filename: The filename inside the package.
   prefix: The sub-directory in the source distribution which contains the
       resource.

Returns:
   A path to the actual filename.

 


Variables Details

__author__

Finds resources which are normally bundled with Rekall.

Rekall is shipped both as a python package and as a pyinstaller application. This module is the interface between the two.

Value:
'Michael Cohen <scudette@gmail.com>'