Skip to content

Commit 560923d

Browse files
Merge pull request #2242 from VWS-Python/vws-links
Update VWS links to work again
2 parents 2ef646c + b10ed85 commit 560923d

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
lines changed

src/vws/exceptions/base_exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class VWSError(Exception):
3737
Base class for Vuforia Web Services errors.
3838
3939
These errors are defined at
40-
https://library.vuforia.com/web-api/cloud-targets-web-services-api#result-codes.
40+
https://developer.vuforia.com/library/web-api/cloud-targets-web-services-api#result-codes.
4141
"""
4242

4343
def __init__(self, response: Response) -> None:

src/vws/exceptions/custom_exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
Exceptions which do not map to errors at
3-
https://library.vuforia.com/web-api/cloud-targets-web-services-api#result-codes
3+
https://developer.vuforia.com/library/web-api/cloud-targets-web-services-api#result-codes
44
or simple errors given by the cloud recognition service.
55
"""
66

src/vws/exceptions/vws_exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Exception raised when Vuforia returns a response with a result code matching
33
one of those documented at
4-
https://library.vuforia.com/web-api/cloud-targets-web-services-api#result-codes.
4+
https://developer.vuforia.com/library/web-api/cloud-targets-web-services-api#result-codes.
55
"""
66

77
import json

src/vws/query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def query(
7272
Use the Vuforia Web Query API to make an Image Recognition Query.
7373
7474
See
75-
https://library.vuforia.com/web-api/vuforia-query-web-api
75+
https://developer.vuforia.com/library/web-api/vuforia-query-web-api
7676
for parameter details.
7777
7878
Args:

src/vws/reports.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class DatabaseSummaryReport:
1313
A database summary report.
1414
1515
See
16-
https://library.vuforia.com/web-api/cloud-targets-web-services-api#summary-report.
16+
https://developer.vuforia.com/library/web-api/cloud-targets-web-services-api#summary-report.
1717
"""
1818

1919
active_images: int
@@ -34,7 +34,7 @@ class TargetStatuses(Enum):
3434
"""Constants representing VWS target statuses.
3535
3636
See the 'status' field in
37-
https://library.vuforia.com/web-api/cloud-targets-web-services-api#target-record
37+
https://developer.vuforia.com/library/web-api/cloud-targets-web-services-api#target-record
3838
"""
3939

4040
PROCESSING = "processing"
@@ -48,7 +48,7 @@ class TargetSummaryReport:
4848
A target summary report.
4949
5050
See
51-
https://library.vuforia.com/web-api/cloud-targets-web-services-api#summary-report.
51+
https://developer.vuforia.com/library/web-api/cloud-targets-web-services-api#summary-report.
5252
"""
5353

5454
status: TargetStatuses
@@ -68,7 +68,7 @@ class TargetRecord:
6868
A target record.
6969
7070
See
71-
https://library.vuforia.com/web-api/cloud-targets-web-services-api#target-record.
71+
https://developer.vuforia.com/library/web-api/cloud-targets-web-services-api#target-record.
7272
"""
7373

7474
target_id: str
@@ -96,7 +96,7 @@ class QueryResult:
9696
One query match result.
9797
9898
See
99-
https://library.vuforia.com/web-api/vuforia-query-web-api.
99+
https://developer.vuforia.com/library/web-api/vuforia-query-web-api.
100100
"""
101101

102102
target_id: str
@@ -109,7 +109,7 @@ class TargetStatusAndRecord:
109109
The target status and a target record.
110110
111111
See
112-
https://library.vuforia.com/web-api/cloud-targets-web-services-api#target-record.
112+
https://developer.vuforia.com/library/web-api/cloud-targets-web-services-api#target-record.
113113
"""
114114

115115
status: TargetStatuses

src/vws/vws.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def _make_request(
167167
request_path: The path to the endpoint which will be used in the
168168
request.
169169
expected_result_code: See
170-
https://library.vuforia.com/web-api/cloud-targets-web-services-api#result-codes
170+
https://developer.vuforia.com/library/web-api/cloud-targets-web-services-api#result-codes
171171
172172
Returns:
173173
The response to the request made by `requests`.
@@ -247,7 +247,7 @@ def add_target(
247247
Add a target to a Vuforia Web Services database.
248248
249249
See
250-
https://library.vuforia.com/web-api/cloud-targets-web-services-api#add
250+
https://developer.vuforia.com/library/web-api/cloud-targets-web-services-api#add
251251
for parameter details.
252252
253253
Args:
@@ -319,7 +319,7 @@ def get_target_record(self, target_id: str) -> TargetStatusAndRecord:
319319
Get a given target's target record from the Target Management System.
320320
321321
See
322-
https://library.vuforia.com/web-api/cloud-targets-web-services-api#target-record.
322+
https://developer.vuforia.com/library/web-api/cloud-targets-web-services-api#target-record.
323323
324324
Args:
325325
target_id: The ID of the target to get details of.
@@ -420,7 +420,7 @@ def list_targets(self) -> list[str]:
420420
List target IDs.
421421
422422
See
423-
https://library.vuforia.com/web-api/cloud-targets-web-services-api#details-list.
423+
https://developer.vuforia.com/library/web-api/cloud-targets-web-services-api#details-list.
424424
425425
Returns:
426426
The IDs of all targets in the database.
@@ -452,7 +452,7 @@ def get_target_summary_report(self, target_id: str) -> TargetSummaryReport:
452452
Get a summary report for a target.
453453
454454
See
455-
https://library.vuforia.com/web-api/cloud-targets-web-services-api#summary-report.
455+
https://developer.vuforia.com/library/web-api/cloud-targets-web-services-api#summary-report.
456456
457457
Args:
458458
target_id: The ID of the target to get a summary report for.
@@ -500,7 +500,7 @@ def get_database_summary_report(self) -> DatabaseSummaryReport:
500500
Get a summary report for the database.
501501
502502
See
503-
https://library.vuforia.com/web-api/cloud-targets-web-services-api#summary-report.
503+
https://developer.vuforia.com/library/web-api/cloud-targets-web-services-api#summary-report.
504504
505505
Returns:
506506
Details of the database.
@@ -546,7 +546,7 @@ def delete_target(self, target_id: str) -> None:
546546
Delete a given target.
547547
548548
See
549-
https://library.vuforia.com/web-api/cloud-targets-web-services-api#delete.
549+
https://developer.vuforia.com/library/web-api/cloud-targets-web-services-api#delete.
550550
551551
Args:
552552
target_id: The ID of the target to delete.
@@ -580,7 +580,7 @@ def get_duplicate_targets(self, target_id: str) -> list[str]:
580580
Get targets which may be considered duplicates of a given target.
581581
582582
See
583-
https://library.vuforia.com/web-api/cloud-targets-web-services-api#check.
583+
https://developer.vuforia.com/library/web-api/cloud-targets-web-services-api#check.
584584
585585
Args:
586586
target_id: The ID of the target to delete.
@@ -627,7 +627,7 @@ def update_target(
627627
Add a target to a Vuforia Web Services database.
628628
629629
See
630-
https://library.vuforia.com/web-api/cloud-targets-web-services-api#add
630+
https://developer.vuforia.com/library/web-api/cloud-targets-web-services-api#add
631631
for parameter details.
632632
633633
Args:

0 commit comments

Comments
 (0)