Skip to content

Commit 763d816

Browse files
committed
Move to Obelisk stable
As Obelisk v3 is now stable, the rc.obelisk.ilabt.imec.be should no longer be used.
1 parent 5fb853b commit 763d816

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)