Skip to content

Commit 63d49e6

Browse files
authored
fix: rename to new domain (#14)
1 parent 5fd9c63 commit 63d49e6

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ about the json response (task_id, status...).
2626

2727
Any parameter available in the documentation_ can be passed as an argument option with the corresponding type.
2828

29-
.. _documentation: https://docs.scaleapi.com
29+
.. _documentation: https://scale.com/docs
3030

3131
The following endpoints for tasks are available:
3232

@@ -35,7 +35,7 @@ Create categorization task
3535

3636
Check `this`__ for further information.
3737

38-
__ https://docs.scaleapi.com/#create-categorization-task
38+
__ https://scale.com/docs/#create-categorization-task
3939

4040
.. code-block:: python
4141
@@ -52,7 +52,7 @@ Create transcription task
5252

5353
Check `this`__ for further information.
5454

55-
__ https://docs.scaleapi.com/#create-transcription-task
55+
__ https://scale.com/docs/#create-ocr-transcription-task
5656

5757
.. code-block:: python
5858
@@ -70,7 +70,7 @@ Create comparison task
7070

7171
Check `this`__ for further information.
7272

73-
__ https://docs.scaleapi.com/#create-comparison-task
73+
__ https://scale.com/docs/#create-comparison-task
7474

7575
.. code-block:: python
7676
@@ -90,7 +90,7 @@ Create annotation task
9090

9191
Check `this`__ for further information.
9292

93-
__ https://docs.scaleapi.com/#create-annotation-task-bounding-box
93+
__ https://scale.com/docs/#2d-box-annotation
9494

9595
.. code-block:: python
9696
@@ -107,7 +107,7 @@ Create datacollection task
107107

108108
Check `this`__ for further information.
109109

110-
__ https://docs.scaleapi.com/#create-data-collection-task
110+
__ https://scale.com/docs/#create-data-collection-task
111111

112112
.. code-block:: python
113113
@@ -124,7 +124,7 @@ Create audiotranscription task
124124

125125
Check `this`__ for further information.
126126

127-
__ https://docs.scaleapi.com/#create-audio-transcription-task
127+
__ https://scale.com/docs/#create-audio-transcription-task
128128

129129
.. code-block:: python
130130
@@ -140,7 +140,7 @@ Retrieve task
140140

141141
Check `this`__ for further information.
142142

143-
__ https://docs.scaleapi.com/#retrieve-a-task
143+
__ https://scale.com/docs/#retrieve-a-task
144144

145145
Retrieve a task given its id.
146146

@@ -154,7 +154,7 @@ Cancel task
154154

155155
Check `this`__ for further information.
156156

157-
__ https://docs.scaleapi.com/#cancel-a-task
157+
__ https://scale.com/docs/#cancel-a-task
158158

159159
Cancel a task given its id, only if it's not completed.
160160

@@ -167,7 +167,7 @@ List tasks
167167

168168
Check `this`__ for further information.
169169

170-
__ https://docs.scaleapi.com/#list-all-tasks
170+
__ https://scale.com/docs/#list-all-tasks
171171

172172
Retrieve a list of tasks, with optional filter by date/type. Paginated with limit/offset.
173173
The return value is a ``scaleapi.Tasklist``, which acts as a list, but also has fields

scaleapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
'cuboidannotation',
1818
'segmentannotation'
1919
]
20-
SCALE_ENDPOINT = 'https://api.scaleapi.com/v1/'
20+
SCALE_ENDPOINT = 'https://api.scale.com/v1/'
2121
DEFAULT_LIMIT = 100
2222
DEFAULT_OFFSET = 0
2323

0 commit comments

Comments
 (0)