From c2d56574d7f83fa7183bd58eb7e6c9da6cfd06af Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 27 Feb 2024 17:09:54 -0500 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 09482fd..17f5c67 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,6 @@ $ pip install neon-api ## Usage - -**[Documentation is available on ReadTheDocs](https://neon-api-python.readthedocs.io/)**. - ```python from neon_api import NeonAPI @@ -23,6 +20,9 @@ from neon_api import NeonAPI neon = NeonAPI(api_key='your_api_key') ``` +**[Documentation is available on ReadTheDocs](https://neon-api-python.readthedocs.io/)**. + + 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()`).