From 7d29923890d5005b45fdde423f69a04efeab6dad Mon Sep 17 00:00:00 2001 From: powermaker450 <89703358+powermaker450@users.noreply.github.com> Date: Fri, 31 May 2024 14:06:23 -0400 Subject: [PATCH] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3910f5f..4733924 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# puffpan +# puffb -puffpan is a small Python module for interacting with a Pufferpanel daemon. +puffb is a small Python module for interacting with a Pufferpanel daemon. Made this in my spare time because I needed it. @@ -18,22 +18,22 @@ Make sure you have the requests and json modules available. ### Usage ```python -import puffpan +import puffb ... ``` -Now you are ready to create a puffpan! +Now you are ready to create a puffb! Using the information you gathered before, create an object: ```python -server = puffpan.Panel('your-server-url', 'your-client-id', 'your-secret-key', 'your-server-id') +server = puffb.Panel('your-server-url', 'your-client-id', 'your-secret-key', 'your-server-id') ``` Or, alternatively, if you want to use a client that has access to multiple servers at once: ```python -admin = puffpan.Panel('your-server-url', 'your-client-id', 'your-secret-key') +admin = puffb.Panel('your-server-url', 'your-client-id', 'your-secret-key') ``` Keep in mind that with this method, you will have to specify the server ID for most commands. Instead of