From 0b62714ad0763e2c61530453b7ee9f24f5cf581f Mon Sep 17 00:00:00 2001 From: jblu Date: Mon, 15 May 2023 22:45:05 -0500 Subject: [PATCH] updated readme and renamed the file --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ea3a258..ea9ff2f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Apprise-Client +# apprise-client > This is meant to be a wrapper to use apprise in existing python projects. @@ -11,7 +11,7 @@ From the Apprise Developers You may simply import my wrapper *apprise_notify()* into your project > apprise_notify() - from Apprise-Client import apprise_notify + from apprise-client import apprise_notify It requires a *requests object* along with the following: @@ -25,7 +25,7 @@ It requires a *requests object* along with the following: import requests as r - from Apprise-Client import apprise_notify + from apprise-client import apprise_notify host = "192.168.1.50" port = 8088 @@ -39,7 +39,7 @@ It requires a *requests object* along with the following: import requests as r from tomllib import load - from Apprise-Client import apprise_notify + from apprise-client import apprise_notify config_file_path = './config.toml'