vendor-utils

Authentication

Description:

Code Snippet:

```python import os from planet import Auth

Authenticate with Planet API key

api_key = os.getenv(“PL_API_KEY”) auth = Auth.from_key(api_key) print(“Authenticated successfully!”)