Changelog
thingiverse.api.changelog
Contains endpoint functions for accessing the API
get_changelogs
asyncio(*, client)
async
Get changelogs
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 |
|---|---|
list[ChangelogSchema] | None
|
list[ChangelogSchema] |
Source code in thingiverse/api/changelog/get_changelogs.py
asyncio_detailed(*, client)
async
Get changelogs
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[list[ChangelogSchema]]
|
Response[list[ChangelogSchema]] |
Source code in thingiverse/api/changelog/get_changelogs.py
sync(*, client)
Get changelogs
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 |
|---|---|
list[ChangelogSchema] | None
|
list[ChangelogSchema] |
Source code in thingiverse/api/changelog/get_changelogs.py
sync_detailed(*, client)
Get changelogs
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[list[ChangelogSchema]]
|
Response[list[ChangelogSchema]] |