From c13ea6b435bef7522f9118a3d579da273385e997 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 17 Jan 2024 15:51:35 -0500 Subject: [PATCH] Add API key functionality to NeonClient --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index c8b0055..ff347f1 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,12 @@ $ pip install neon-client >>> neon = NeonClient(api_key='your_api_key') +>>> # List all the API keys. +>>> api_keys = neon.api_keys() + +>>> # Get a specific API key. +>>> api_key = neon.api_key(api_key_id='your_api_key_id') + >>> # Get all the projects >>> projects = neon.projects()