From 84cc37e877aefad5fa5f7f7ac1e4b1ee77b703ca Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Tue, 13 Oct 2020 15:16:46 -0400 Subject: [PATCH] Updated Development_API (markdown) --- Development_API.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Development_API.md b/Development_API.md index 1def263..866d82e 100644 --- a/Development_API.md +++ b/Development_API.md @@ -2,10 +2,11 @@ Apprise is very easy to use as a developer. The **Apprise()** object handles everything for you, meanwhile the **AppriseAsset()** Object allows you to stray away from some default configuration to personalize the users experience (and perhaps fit your application better): * **[[The Apprise Object|Development_API#the-apprise-object]]** * **[[The Apprise Asset Object|Development_API#the-apprise-asset-object]]** -* **[[The LogCapture Object|Development_LogCapture]]** Some additional functionality is available via the **[[The Apprise Notification Object|Development_API#the-apprise-notification-object]]** for those who want to manage the notifications themselves. +Another useful class that can help you out with sending notifications is the **[[The LogCapture Object|Development_LogCapture]]**. It can be used to capture the events that surrounded the success (and potential failure) of the notifications being delivered so that you can work with them. + ## The Apprise Object The Apprise() object is the heart and soul of this library. To instantiate an instance of the object, one might do the following: ```python