Updated Development_API (markdown)

Chris Caron 2020-10-13 15:16:46 -04:00
parent 536436d4ff
commit 84cc37e877

@ -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): 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 Object|Development_API#the-apprise-object]]**
* **[[The Apprise Asset Object|Development_API#the-apprise-asset-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. 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
The Apprise() object is the heart and soul of this library. To instantiate an instance of the object, one might do the following: The Apprise() object is the heart and soul of this library. To instantiate an instance of the object, one might do the following:
```python ```python