WebcamLogger (version 1.0.0)
index
WebcamLogger.html

This file implements a SpyWare to take picture with Webcam.
 
~# python3 WebcamLogger.py keySpy.conf
 
>>> from os import environ
>>> environ['webcamSpy.conf'] = 'webcamSpy.conf'
>>> from SpyWare.WebcamLogger import webcamSpy
>>> webcamSpy()                  # (using env) OR
>>> webcamSpy('webcamSpy.conf')  # (using config file name) OR
>>> webcamSpy(argv=["WebcamLogger.py", "webcamSpy.conf"]) # (using argv)

 
Classes
       
builtins.object
Daemon

 
class Daemon(builtins.object)
    This class implements a loop to capture picture for ever.
 
  Methods defined here:
__init__(self)
Initialize self.  See help(type(self)) for accurate signature.
run_for_ever(self) -> None
This function takes picture from webcam and wait.

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
Functions
       
config_load(filename: str = None, argv: List[str] = ['C:\\Program Files\\Python\\lib\\pydoc.py', '-w', 'WebcamLogger']) -> int
This function loads the configuration using a the configuration file.
main(config_filename: str = None, argv: List[str] = ['C:\\Program Files\\Python\\lib\\pydoc.py', '-w', 'WebcamLogger']) -> int
This function executes this script from the command line.

 
Data
        __all__ = ['Daemon', 'main', 'config_load']
__author_email__ = 'mauricelambert434@gmail.com'
__copyright__ = '\nSpyWare Copyright (C) 2021, 2022 Maurice Lamb...ome to redistribute it\nunder certain conditions.\n'
__description__ = '\nThis file implements a complete spyware.\n'
__license__ = 'GPL-3.0 License'
__maintainer__ = 'Maurice Lambert'
__maintainer_email__ = 'mauricelambert434@gmail.com'
__url__ = 'https://github.com/mauricelambert/SpyWare'

 
Author
        Maurice Lambert