From 4cc5b8448c0abedf0c528037b77b0ffde2e3705c Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 27 Feb 2024 09:10:27 -0500 Subject: [PATCH] Update README.md --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3596704..cfe347e 100644 --- a/README.md +++ b/README.md @@ -11,11 +11,11 @@ With `neon_client`, you can automate tasks, streamline workflows, and build powe $ pip install neon-client ``` -**Please Note**: this repository is a work in progress. The package is not yet available on PyPi. The above command will not work. - - ## Usage + +**[Documentation is available on ReadTheDocs](https://neon-client-python.readthedocs.io/)**. + ```python from neon_client import NeonAPI @@ -25,7 +25,6 @@ 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()`). -**[Documentation is available on ReadTheDocs](https://neon-client-python.readthedocs.io/)**. -------