From 05c0ccb398325b96776e922fca72eeff48169a87 Mon Sep 17 00:00:00 2001 From: awkawb Date: Mon, 30 Sep 2024 12:56:57 -0400 Subject: [PATCH] Changed updated readme file --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4a22b47..7848e81 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Inspired by the [official PHP SDK](https://github.com/invoiceninja/sdk-php), a Python wrapper for Invoice Ninja's REST API. -# Models +## Model Projects Projects to look to for guidance: @@ -13,3 +13,13 @@ Projects to look to for guidance: * [python-vaultwarden](https://github.com/numberly/python-vaultwarden) - simple python wrapper for the bitwarden/vaultwarden +## How to use + +Let see some basic usage: +``` +>>> # Import client from module +>>> from pyinvoiceninja import InvoiceNinjaClient +>>> # +>>> client = InvoiceNinjaClient(base_url='https://ninja.instance/api/v1') +``` +