diff --git a/README.md b/README.md index c723c964..43466c42 100644 --- a/README.md +++ b/README.md @@ -28,19 +28,21 @@ pip install UnleashClient ### Initialization -``` +```Python from UnleashClient import UnleashClient + client = UnleashClient( url="https://unleash.herokuapp.com", app_name="my-python-app", custom_headers={'Authorization': ''}) + client.initialize_client() ``` If you're running Unleash in a Docker container or self hosting, your URL should look like `http://localhost:4242/api` (with the `/api` suffix). To clean up gracefully: -``` +```Python client.destroy() ```