Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
malmans2 committed Oct 3, 2024
1 parent 8ea4b34 commit 4639ea9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ Draft Python API:

```python
>>> import logging
>>> logging.basicConfig(level="INFO")
>>> import os

>>> import cads_api_client
>>> client = cads_api_client.ApiClient()
>>> from cads_api_client import ApiClient
>>> logging.basicConfig(level="INFO")
>>> client = ApiClient(url=os.getenv("CADS_API_URL"), key=os.getenv("CADS_API_KEY"))
>>> client.check_authentication()
{...}

Expand Down

0 comments on commit 4639ea9

Please sign in to comment.