Skip to content

Commit 4de6c13

Browse files
updating links (#96)
1 parent 4961474 commit 4de6c13

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

README.rst

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ about the json response (task_id, status, params, response, etc.).
6868

6969
Any parameter available in `Scale's API documentation`__ can be passed as an argument option with the corresponding type.
7070

71-
__ https://docs.scale.com/reference#tasks-object-overview
71+
__ https://scale.com/docs/api-reference/data-engine-reference#tasks-object-overview
7272

7373
The following endpoints for tasks are available:
7474

@@ -83,7 +83,7 @@ This method can be used for any Scale supported task type using the following fo
8383
8484
Passing in the applicable values into the function definition. The applicable fields and further information for each task type can be found in `Scale's API documentation`__.
8585

86-
__ https://docs.scale.com/reference
86+
__ https://scale.com/docs/api-reference
8787

8888
.. code-block:: python
8989
@@ -117,7 +117,7 @@ Retrieve a task
117117

118118
Retrieve a task given its id. Check out `Scale's API documentation`__ for more information.
119119

120-
__ https://docs.scale.com/reference#retrieve-tasks
120+
__ https://scale.com/docs/api-reference/tasks#retrieve-a-task
121121

122122
.. code-block :: python
123123
@@ -192,7 +192,7 @@ statement, which returns a list of Tasks by loading them into the memory.
192192

193193
Check out `Scale's API documentation`__ for more information.
194194

195-
__ https://docs.scale.com/reference#list-multiple-tasks
195+
__ https://scale.com/docs/api-reference/tasks#retrieve-multiple-tasks
196196

197197
.. code-block :: python
198198
@@ -242,7 +242,7 @@ Cancel Task
242242

243243
Cancel a task given its id if work has not started on the task (task status is ``Queued`` in the UI). Check out `Scale's API documentation`__ for more information.
244244

245-
__ https://docs.scale.com/reference#cancel-task
245+
__ https://scale.com/docs/api-reference/tasks#cancel-task
246246

247247
.. code-block :: python
248248
@@ -285,7 +285,7 @@ Update A Task's Unique Id
285285

286286
Update a given task's unique_id. Check out `Scale's API documentation`__ for more information.
287287

288-
__ https://docs.scale.com/reference/update-task-unique-id
288+
__ https://scale.com/docs/api-reference/tasks#update-unique_id
289289

290290
.. code-block :: python
291291
@@ -301,7 +301,7 @@ Clear A Task's Unique Id
301301

302302
Clear a given task's unique_id. Check out `Scale's API documentation`__ for more information.
303303

304-
__ https://docs.scale.com/reference/delete-task-unique-id
304+
__ https://scale.com/docs/api-reference/tasks#delete-unique_id
305305

306306
.. code-block :: python
307307
@@ -317,7 +317,7 @@ Set A Task's Metadata
317317

318318
Set a given task's ``metadata``. Check out `Scale's API documentation`__ for more information.
319319

320-
__ https://docs.scale.com/reference/set-metadata
320+
__ https://scale.com/docs/api-reference/tasks#set-task-metadata
321321

322322
.. code-block :: python
323323
@@ -335,7 +335,7 @@ Set A Task's Tags
335335

336336
Set a given task's ``tags``. This will replace all existing tags on a task. Check out `Scale's API documentation`__ for more information.
337337

338-
__ https://docs.scale.com/reference/setting-tags
338+
__ https://scale.com/docs/api-reference/tasks#set-task-tag
339339

340340
.. code-block :: python
341341
@@ -353,7 +353,7 @@ Add Tags to A Task
353353

354354
Add ``tags`` to a given task. Check out `Scale's API documentation`__ for more information.
355355

356-
__ https://docs.scale.com/reference/adding-tags
356+
__ https://scale.com/docs/api-reference/tasks#delete-task-tag
357357

358358
.. code-block :: python
359359
@@ -371,7 +371,7 @@ Delete Tags from A Task
371371

372372
Delete ``tags`` from a given task. Check out `Scale's API documentation`__ for more information.
373373

374-
__ https://docs.scale.com/reference/deleting-tags
374+
__ https://scale.com/docs/api-reference/tasks#delete-task-tag
375375

376376
.. code-block :: python
377377
@@ -392,7 +392,7 @@ Create Batch
392392

393393
Create a new Batch. Check out `Scale's API documentation`__ for more information.
394394

395-
__ https://docs.scale.com/reference#batch-creation
395+
__ https://scale.com/docs/api-reference/batches#create-a-batch
396396

397397
.. code-block:: python
398398
@@ -411,7 +411,7 @@ Finalize Batch
411411

412412
Finalize a Batch. Check out `Scale's API documentation`__ for more information.
413413

414-
__ https://docs.scale.com/reference#batch-finalization
414+
__ https://scale.com/docs/api-reference/batches#finalize-batch
415415

416416
.. code-block:: python
417417
@@ -426,7 +426,7 @@ Check Batch Status
426426

427427
Get the status of a Batch. Check out `Scale's API documentation`__ for more information.
428428

429-
__ https://docs.scale.com/reference#batch-status
429+
__ https://scale.com/docs/api-reference/batches#batch-status
430430

431431
.. code-block:: python
432432
@@ -442,7 +442,7 @@ Retrieve A Batch
442442

443443
Retrieve a single Batch. Check out `Scale's API documentation`__ for more information.
444444

445-
__ https://docs.scale.com/reference#batch-retrieval
445+
__ https://scale.com/docs/api-reference/batches#batch-retrieval
446446

447447
.. code-block:: python
448448
@@ -465,7 +465,7 @@ When wrapped in a ``list(...)`` statement, it returns a list of Batches by loadi
465465

466466
Check out `Scale's API documentation`__ for more information.
467467

468-
__ https://docs.scale.com/reference#batch-list
468+
__ https://scale.com/docs/api-reference/batches#list-all-batches
469469

470470
.. code-block :: python
471471
@@ -493,7 +493,7 @@ Create Project
493493

494494
Create a new Project. Check out `Scale's API documentation`__ for more information.
495495

496-
__ https://docs.scale.com/reference#project-creation
496+
__ https://scale.com/docs/api-reference/projects#create-project
497497

498498
.. code-block:: python
499499
@@ -514,7 +514,7 @@ Retrieve Project
514514

515515
Retrieve a single Project. Check out `Scale's API documentation`__ for more information.
516516

517-
__ https://docs.scale.com/reference#project-retrieval
517+
__ https://scale.com/docs/api-reference/projects#project-retrieval
518518

519519
.. code-block:: python
520520
@@ -528,7 +528,7 @@ List Projects
528528
This function does not take any arguments. Retrieve a list of every Project.
529529
Check out `Scale's API documentation`__ for more information.
530530

531-
__ https://docs.scale.com/reference#batch-list
531+
__ https://scale.com/docs/api-reference/projects#list-all-projects
532532

533533
.. code-block :: python
534534
@@ -543,7 +543,7 @@ Update Project
543543

544544
Creates a new version of the Project. Check out `Scale's API documentation`__ for more information.
545545

546-
__ https://docs.scale.com/reference#project-update-parameters
546+
__ https://scale.com/docs/api-reference/projects#update-project-parameters
547547

548548
.. code-block :: python
549549
@@ -564,7 +564,7 @@ Upload Files
564564

565565
Upload a file. Check out `Scale's API documentation`__ for more information.
566566

567-
__ https://docs.scale.com/reference#file-upload-1
567+
__ https://scale.com/docs/api-reference/file-endpoints#file-upload
568568

569569
.. code-block:: python
570570
@@ -596,7 +596,7 @@ Import Files
596596

597597
Import a file from a URL. Check out `Scale's API documentation`__ for more information.
598598

599-
__ https://docs.scale.com/reference#file-import-1
599+
__ https://scale.com/docs/api-reference/file-endpoints#file-import
600600

601601
.. code-block:: python
602602
@@ -626,7 +626,7 @@ ________________
626626

627627
Manage the members of your Scale team via API. Check out `Scale Team API Documentation`__ for more information.
628628

629-
__ https://docs.scale.com/reference/teams-overview
629+
__ https://scale.com/docs/team-getting-started
630630

631631
List Teammates
632632
^^^^^^^^^^^^^^
@@ -689,7 +689,7 @@ Create an evaluation task.
689689
690690
Passing in the applicable values into the function definition. The applicable fields are the same as for create_task. Applicable fields for each task type can be found in `Scale's API documentation`__. Additionally an expected_response is required. An optional initial_response can be provided if it's for a review phase evaluation task.
691691

692-
__ https://docs.scale.com/reference
692+
__ https://scale.com/docs/api-reference
693693

694694
.. code-block:: python
695695
@@ -899,7 +899,7 @@ as a `ScaleException` parent type and child exceptions:
899899
- ``ScaleServiceUnavailable``: 503 - Server Timeout From Request Queueing -- Try again later.
900900
- ``ScaleTimeoutError``: 504 - Server Timeout Error -- Try again later.
901901

902-
Check out `Scale's API documentation <https://docs.scale.com/reference#errors>`_ for more details.
902+
Check out `Scale's API documentation <https://scale.com/docs/api-reference/errors>`_ for more details.
903903

904904
For example:
905905

0 commit comments

Comments
 (0)