From b19f900b61b9aeb5e270a559cc86477a6eef460b Mon Sep 17 00:00:00 2001 From: Ryan Nikolaidis <1208590+ryannikolaidis@users.noreply.github.com> Date: Fri, 3 Nov 2023 13:33:38 -0700 Subject: [PATCH] readme bump --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1d65eb72..2bc2dc56 100755 --- a/README.md +++ b/README.md @@ -69,17 +69,13 @@ If you are self hosting the API, or developing locally, you can change the serve # Using a local server s = unstructured_client.UnstructuredClient( server_url="http://localhost:8000", - security=shared.Security( - api_key_auth=api_key, - ), + api_key_auth=api_key, ) # Using your own server s = unstructured_client.UnstructuredClient( server_url="https://your-server", - security=shared.Security( - api_key_auth=api_key, - ), + api_key_auth=api_key, ) ```