Skip to content

Commit

Permalink
interlex client docs updated to relflect changes in auth
Browse files Browse the repository at this point in the history
  • Loading branch information
tgbugs committed Jun 4, 2019
1 parent 75b6558 commit c47475c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/interlex-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,16 @@ pytest -v test/test_interlex_client.py

##### Importing:

```bash
```python
from interlex_client import InterLexClient

```

##### Setup for **BETA**:
*This Should be used to test if your code works first*

```python
ilx_cli = InterLexClient(
api_key = os.environ.get("INTERLEX_API_KEY"),
base_url = "https://beta.scicrunch.org",
)
```
Expand All @@ -60,7 +60,6 @@ ilx_cli = InterLexClient(

```python
ilx_cli = InterLexClient(
api_key = os.environ.get("INTERLEX_API_KEY"),
base_url = "https://scicrunch.org",
)
```
Expand Down Expand Up @@ -217,7 +216,8 @@ fixed.
```

## Notes
Dictionay outputs from add_entity and add_annotation will not always have string type for the values. That does not matter for the api endpoints, but just in case this data is used somewhere else, this should be noted.
Dictionay outputs from `add_entity` and `add_annotation` will not always have string type for the values.
That does not matter for the api endpoints, but just in case this data is used somewhere else, this should be noted.

## Author

Expand Down

0 comments on commit c47475c

Please sign in to comment.