### Install ntfy_lite from Source Source: https://github.com/mpi-is/ntfy_lite/blob/master/docs/installation.md This snippet outlines the steps to clone the ntfy_lite repository from GitHub and install it locally. This method is typically used for development, contributing to the project, or when you need the latest unreleased features. ```bash git clone https://github.com/MPI-IS/ntfy_lite.git cd ntfy_lite pip install . ``` -------------------------------- ### Install ntfy_lite from PyPI Source: https://github.com/mpi-is/ntfy_lite/blob/master/docs/installation.md This snippet demonstrates how to install the stable, officially released version of ntfy_lite directly from the Python Package Index (PyPI) using pip. This is the recommended and simplest method for most users to get the package. ```bash pip install ntfy_lite ``` -------------------------------- ### Install ntfy_lite from Source Source: https://github.com/mpi-is/ntfy_lite/blob/master/README.md This snippet provides the necessary bash commands to clone the ntfy_lite repository from GitHub, navigate into its directory, and install the package in editable mode using pip. This method is suitable for developers or those who wish to modify the library. ```bash git clone https://github.com/MPI-IS/ntfy_lite.git cd ntfy_lite pip install . ``` -------------------------------- ### Install ntfy_lite from PyPI Source: https://github.com/mpi-is/ntfy_lite/blob/master/README.md This snippet shows the standard command to install the ntfy_lite package directly from the Python Package Index (PyPI) using pip. This is the recommended and simplest installation method for most users. ```bash pip install ntfy_lite ``` -------------------------------- ### Sending a Basic ntfy Notification in Python Source: https://github.com/mpi-is/ntfy_lite/blob/master/docs/index.md This snippet demonstrates the fundamental usage of the `ntfy_lite` library to send a notification. It utilizes the `ntfy.push` function, specifying a topic, message, and an optional priority level. ```python import ntfy_lite as ntfy ntfy.push( "my topic", priority=ntfy.Priority.DEFAULT, message="my message" ) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.