Link Search Menu Expand Document

WiFi Pineapple Python Job

Table of contents

  1. Introduction
  2. Types
  3. Classes

Introduction

Python API

Types

TResult = TypeVar('TResult')

Classes

class Job(Generic[TResult])
A job to be used with the background JobManager that installs or uninstalls dependencies.

Properties

def was_successful(self) -> bool
Checks if the job complete without an error. If the job has not completed or if it complete with no errors return True. If the job completed with an error then return False.

Returns

  • bool: True if the job completed without an error, otherwise False.