From 0b8972b60339998ea61197ed4666eca058e27729 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 30 Jan 2024 11:58:48 -0500 Subject: [PATCH] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 930f537..62fb932 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,10 @@ from neon_client import NeonAPI neon = NeonAPI(api_key='your_api_key') ``` +Remember that you should never expose your api_key and handle it carefully since it gives access to sensitive data. It's better to set it as an environment variable (e.g. `NEON_API_KEY` + accompanying `neon_client.from_environ()`). + +------- + Methods of the `NeonAPI` class: - `me()`: Returns the current user. @@ -74,7 +78,6 @@ Methods of the `NeonAPI` class: View the [Neon API documentation](https://api-docs.neon.tech/reference/getting-started-with-neon-api) for more information on the available endpoints and their parameters. -Remember that you should never expose your api_key and handle it carefully since it gives access to sensitive data. It's better to set it as an environment variable (e.g. `NEON_API_KEY` + accompanying `neon_client.from_environ()`). ## Installation