Techniques

class revenge.techniques.Technique(process)[source]

Bases: object

This is a base mix-in class. To implement a technique, you need to extend this class.

TYPE = None
TYPES = ('stalk', 'replace')
apply(threads=None)[source]

Applies this technique, optionally to the given threads.

remove()[source]

Removes this technique.

property threads

Threads that are being traced by this object.

Type

list

class revenge.techniques.Techniques(process)[source]

Bases: object

append(item)[source]