Verified
thingiverse.api.verified
Contains endpoint functions for accessing the API
get_verified
asyncio(*, client)
async
Get the latest things verified
Raises:
| Type | Description |
|---|---|
UnexpectedStatus
|
If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. |
TimeoutException
|
If the request takes longer than Client.timeout. |
Returns:
| Type | Description |
|---|---|
GetVerifiedResponse401 | GetVerifiedResponse403 | GetVerifiedResponse404 | list[VerifiedSchema] | None
|
GetVerifiedResponse401 | GetVerifiedResponse403 | GetVerifiedResponse404 | list[VerifiedSchema] |
Source code in thingiverse/api/verified/get_verified.py
asyncio_detailed(*, client)
async
Get the latest things verified
Raises:
| Type | Description |
|---|---|
UnexpectedStatus
|
If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. |
TimeoutException
|
If the request takes longer than Client.timeout. |
Returns:
| Type | Description |
|---|---|
Response[GetVerifiedResponse401 | GetVerifiedResponse403 | GetVerifiedResponse404 | list[VerifiedSchema]]
|
Response[GetVerifiedResponse401 | GetVerifiedResponse403 | GetVerifiedResponse404 | list[VerifiedSchema]] |
Source code in thingiverse/api/verified/get_verified.py
sync(*, client)
Get the latest things verified
Raises:
| Type | Description |
|---|---|
UnexpectedStatus
|
If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. |
TimeoutException
|
If the request takes longer than Client.timeout. |
Returns:
| Type | Description |
|---|---|
GetVerifiedResponse401 | GetVerifiedResponse403 | GetVerifiedResponse404 | list[VerifiedSchema] | None
|
GetVerifiedResponse401 | GetVerifiedResponse403 | GetVerifiedResponse404 | list[VerifiedSchema] |
Source code in thingiverse/api/verified/get_verified.py
sync_detailed(*, client)
Get the latest things verified
Raises:
| Type | Description |
|---|---|
UnexpectedStatus
|
If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. |
TimeoutException
|
If the request takes longer than Client.timeout. |
Returns:
| Type | Description |
|---|---|
Response[GetVerifiedResponse401 | GetVerifiedResponse403 | GetVerifiedResponse404 | list[VerifiedSchema]]
|
Response[GetVerifiedResponse401 | GetVerifiedResponse403 | GetVerifiedResponse404 | list[VerifiedSchema]] |