Skip to content

waggle-sensor/pywaggle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

9f62a10 · Aug 17, 2023
Aug 23, 2022
Jul 12, 2022
Aug 17, 2023
Aug 14, 2023
Apr 5, 2023
Sep 17, 2021
Jan 5, 2022
Jul 13, 2022
Jan 10, 2022
Jul 12, 2022
Jan 5, 2022
Aug 14, 2023

Repository files navigation

Waggle Python Module

pywaggle is a Python module for implementing Waggle plugins and system services.

Installation Guides

Most users getting started with pywaggle will want to install latest version with all optional dependencies using:

pip install -U pywaggle[all]

Advanced users can install specific subsets of functionality using the following extras flags:

  • audio - Audio and microphone support for plugins.
  • vision - Image, video and camera support for plugins.
# install only core plugin features
pip install pywaggle

# install only audio features
pip install pywaggle[audio]

# install only vision features
pip install pywaggle[vision]

# install both audio and vision features
pip install pywaggle[audio,vision]

Usage Guides