Skip to content

Commit a3f5d98

Browse files
authored
Merge pull request #1 from predict-idlab/stable-obelisk-v3
Move to Obelisk stable
2 parents 5fb853b + 763d816 commit a3f5d98

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

obelisk/client.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ class ObeliskClient:
2121
"""
2222
Component that contains all the logic to access the Obelisk API (e.g. Authentication).
2323
Obelisk Documentation:
24-
https://rc.obelisk.ilabt.imec.be/docs/guides/auth.html
24+
https://obelisk.ilabt.imec.be/docs/guides/auth.html
2525
"""
26-
TOKEN_URL = 'https://rc.obelisk.ilabt.imec.be/api/v3/auth/token'
27-
ROOT_URL = 'https://rc.obelisk.ilabt.imec.be/api/v3'
28-
METADATA_URL = 'https://rc.obelisk.ilabt.imec.be/api/v3/catalog/graphql'
29-
EVENTS_URL = 'https://rc.obelisk.ilabt.imec.be/api/v3/data/query/events'
30-
INGEST_URL = 'https://rc.obelisk.ilabt.imec.be/api/v3/data/ingest'
31-
STREAMS_URL = 'https://rc.obelisk.ilabt.imec.be/api/v3/data/streams'
26+
TOKEN_URL = 'https://obelisk.ilabt.imec.be/api/v3/auth/token'
27+
ROOT_URL = 'https://obelisk.ilabt.imec.be/api/v3'
28+
METADATA_URL = 'https://obelisk.ilabt.imec.be/api/v3/catalog/graphql'
29+
EVENTS_URL = 'https://obelisk.ilabt.imec.be/api/v3/data/query/events'
30+
INGEST_URL = 'https://obelisk.ilabt.imec.be/api/v3/data/ingest'
31+
STREAMS_URL = 'https://obelisk.ilabt.imec.be/api/v3/data/streams'
3232

3333
def __init__(self, client_id: str, client_secret: str, debug: bool = False):
3434
"""

0 commit comments

Comments
 (0)