Index
API functionality for interacting with Home Assistant.
This module provides clean access to the API classes for making HTTP requests, managing WebSocket connections, and handling entity states.
Api
Bases: Resource
API service for interacting with Home Assistant.
This service provides methods to interact with the Home Assistant API, including making REST requests, managing WebSocket connections, and handling entity states.
Source code in src/hassette/api/api.py
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 | |
sync: ApiSyncFacade = self.add_child(ApiSyncFacade, api=self)
instance-attribute
Synchronous facade for the API service.
helpers: HelperClient = self.add_child(HelperClient, api=self)
instance-attribute
Client for CRUD operations on Home Assistant helper entities.
config_log_level: LOG_LEVEL_TYPE
property
Return the log level from the config for this resource.
ws_send_and_wait(**data: Any) -> Any
async
Send a WebSocket message and wait for a response.
Source code in src/hassette/api/api.py
285 286 287 | |
ws_send_json(**data: Any) -> None
async
Send a WebSocket message without waiting for a response.
Source code in src/hassette/api/api.py
289 290 291 | |
rest_request(method: str, url: str, params: dict[str, Any] | None = None, data: dict[str, Any] | None = None, suppress_error_message: bool = False, **kwargs: Any) -> aiohttp.ClientResponse
async
Make a REST request to the Home Assistant API.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
method
|
str
|
The HTTP method to use (e.g., "GET", "POST"). |
required |
url
|
str
|
The URL endpoint for the request. |
required |
params
|
dict[str, Any] | None
|
Query parameters for the request. |
None
|
data
|
dict[str, Any] | None
|
JSON payload for the request. |
None
|
suppress_error_message
|
bool
|
Whether to suppress error messages. |
False
|
Returns:
| Type | Description |
|---|---|
ClientResponse
|
The response from the API. |
Source code in src/hassette/api/api.py
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 | |
get_rest_request(url: str, params: dict[str, Any] | None = None, **kwargs: Any) -> aiohttp.ClientResponse
async
Make a GET request to the Home Assistant API.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
url
|
str
|
The URL endpoint for the request. |
required |
params
|
dict[str, Any] | None
|
Query parameters for the request. |
None
|
kwargs
|
Any
|
Additional keyword arguments to pass to the request. |
{}
|
Returns:
| Type | Description |
|---|---|
ClientResponse
|
The response from the API. |
Source code in src/hassette/api/api.py
318 319 320 321 322 323 324 325 326 327 328 329 330 331 | |
post_rest_request(url: str, data: dict[str, Any] | None = None, **kwargs: Any) -> aiohttp.ClientResponse
async
Make a POST request to the Home Assistant API.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
url
|
str
|
The URL endpoint for the request. |
required |
data
|
dict[str, Any] | None
|
JSON payload for the request. |
None
|
kwargs
|
Any
|
Additional keyword arguments to pass to the request. |
{}
|
Returns:
| Type | Description |
|---|---|
ClientResponse
|
The response from the API. |
Source code in src/hassette/api/api.py
333 334 335 336 337 338 339 340 341 342 343 344 345 346 | |
delete_rest_request(url: str, **kwargs: Any) -> aiohttp.ClientResponse
async
Make a DELETE request to the Home Assistant API.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
url
|
str
|
The URL endpoint for the request. |
required |
kwargs
|
Any
|
Additional keyword arguments to pass to the request. |
{}
|
Returns:
| Type | Description |
|---|---|
ClientResponse
|
The response from the API. |
Source code in src/hassette/api/api.py
348 349 350 351 352 353 354 355 356 357 358 | |
get_states_raw() -> list[HassStateDict]
async
Get all entities in Home Assistant as raw dictionaries.
Returns:
| Type | Description |
|---|---|
list[HassStateDict]
|
A list of states as dictionaries. |
Source code in src/hassette/api/api.py
360 361 362 363 364 365 366 367 | |
get_states() -> list[BaseState]
async
Get all entities in Home Assistant, converted to their appropriate state types.
If a state fails to convert, it is skipped with an error logged. If there is no registered state class for a domain, the generic BaseState is used.
Returns:
| Type | Description |
|---|---|
list[BaseState]
|
A list of states, converted to their appropriate state types. |
Source code in src/hassette/api/api.py
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 | |
get_config() -> dict[str, Any]
async
Get the Home Assistant configuration.
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
The configuration data. |
Source code in src/hassette/api/api.py
391 392 393 394 395 396 397 398 | |
get_services() -> dict[str, Any]
async
Get the available services in Home Assistant.
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
The services data. |
Source code in src/hassette/api/api.py
400 401 402 403 404 405 406 407 | |
get_panels() -> dict[str, Any]
async
Get the available panels in Home Assistant.
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
The panels data. |
Source code in src/hassette/api/api.py
409 410 411 412 413 414 415 416 | |
fire_event(event_type: str, event_data: dict[str, Any] | None = None) -> Coroutine[Any, Any, dict[str, Any]]
Fire a custom event in Home Assistant.
Must be awaited — a forgotten await is reported per forgotten_await_behavior (default: warn).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
event_type
|
str
|
The type of the event to fire (e.g., "custom_event"). |
required |
event_data
|
dict[str, Any] | None
|
Additional data to include with the event. |
None
|
Returns:
| Type | Description |
|---|---|
Coroutine[Any, Any, dict[str, Any]]
|
The response from Home Assistant. |
Source code in src/hassette/api/api.py
418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 | |
call_service(domain: str, service: str, target: dict[str, str] | dict[str, list[str]] | None = None, return_response: bool | None = False, **data: Any) -> Coroutine[Any, Any, ServiceResponse | None]
call_service(
domain: str,
service: str,
target: dict[str, str]
| dict[str, list[str]]
| None = None,
return_response: typing.Literal[False] | None = None,
**data: Any,
) -> Coroutine[Any, Any, None]
call_service(
domain: str,
service: str,
target: dict[str, str]
| dict[str, list[str]]
| None = None,
return_response: Literal[True] = True,
**data: Any,
) -> Coroutine[Any, Any, ServiceResponse]
Call a Home Assistant service.
Must be awaited — a forgotten await is reported per forgotten_await_behavior (default: warn).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
domain
|
str
|
The domain of the service (e.g., "light"). |
required |
service
|
str
|
The name of the service to call (e.g., "turn_on"). |
required |
target
|
dict[str, str] | dict[str, list[str]] | None
|
Target entity IDs or areas. |
None
|
return_response
|
bool | None
|
Whether to return the response from Home Assistant. Defaults to False. |
False
|
**data
|
Any
|
Additional data to send with the service call. |
{}
|
Returns:
| Type | Description |
|---|---|
Coroutine[Any, Any, ServiceResponse | None]
|
ServiceResponse | None: The response from Home Assistant if return_response is True. Otherwise None. |
Source code in src/hassette/api/api.py
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 | |
turn_on(entity_id: str | StrEnum, domain: str | None = None, **data: Any) -> Coroutine[Any, Any, None]
Turn on a specific entity in Home Assistant.
Must be awaited — a forgotten await is reported per forgotten_await_behavior (default: warn).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str | StrEnum
|
The ID of the entity to turn on (e.g., "light.office"). |
required |
domain
|
str | None
|
The domain to use for the service call. Defaults to the entity's domain,
derived from |
None
|
**data
|
Any
|
Additional service data forwarded to the service call. |
{}
|
Source code in src/hassette/api/api.py
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 | |
turn_off(entity_id: str | StrEnum, domain: str | None = None, **data: Any) -> Coroutine[Any, Any, None]
Turn off a specific entity in Home Assistant.
Must be awaited — a forgotten await is reported per forgotten_await_behavior (default: warn).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str | StrEnum
|
The ID of the entity to turn off (e.g., "light.office"). |
required |
domain
|
str | None
|
The domain to use for the service call. Defaults to the entity's domain,
derived from |
None
|
**data
|
Any
|
Additional service data forwarded to the service call. |
{}
|
Source code in src/hassette/api/api.py
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 | |
toggle(entity_id: str | StrEnum, domain: str | None = None, **data: Any) -> Coroutine[Any, Any, None]
Toggle a specific entity in Home Assistant.
Must be awaited — a forgotten await is reported per forgotten_await_behavior (default: warn).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str | StrEnum
|
The ID of the entity to toggle (e.g., "light.office"). |
required |
domain
|
str | None
|
The domain to use for the service call. Defaults to the entity's domain,
derived from |
None
|
**data
|
Any
|
Additional service data forwarded to the service call. |
{}
|
Source code in src/hassette/api/api.py
587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 | |
get_state_raw(entity_id: str) -> HassStateDict
async
Get the state of a specific entity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to get the state for. |
required |
Returns:
| Type | Description |
|---|---|
HassStateDict
|
The state of the entity as raw data. |
Source code in src/hassette/api/api.py
606 607 608 609 610 611 612 613 614 615 616 617 | |
entity_exists(entity_id: str) -> bool
async
Check if a specific entity exists.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to check. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if the entity exists, False otherwise. |
Source code in src/hassette/api/api.py
619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 | |
get_entity(entity_id: str, model: type[EntityT]) -> EntityT
async
Get an entity object for a specific entity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to get. |
required |
model
|
type[EntityT]
|
The model class to use for the entity. |
required |
Returns:
| Type | Description |
|---|---|
EntityT
|
The entity object. |
Source code in src/hassette/api/api.py
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 | |
get_entity_or_none(entity_id: str, model: type[EntityT]) -> EntityT | None
async
Get an entity object for a specific entity, or None if it does not exist.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to get. |
required |
model
|
type[EntityT]
|
The model class to use for the entity. |
required |
Returns:
| Type | Description |
|---|---|
EntityT | None
|
The entity object, or None if it does not exist. |
Source code in src/hassette/api/api.py
653 654 655 656 657 658 659 660 661 662 663 664 665 666 | |
get_state(entity_id: str) -> BaseState
async
Get the state of a specific entity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to get the state for. |
required |
Returns:
| Type | Description |
|---|---|
BaseState
|
The state of the entity converted to the specified model type. |
Source code in src/hassette/api/api.py
668 669 670 671 672 673 674 675 676 677 678 | |
get_state_or_none(entity_id: str) -> BaseState | None
async
Get the state of a specific entity, or None if it does not exist.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to get the state for. |
required |
Returns:
| Type | Description |
|---|---|
BaseState | None
|
The state of the entity converted to the specified model type, or None if it does not exist. |
Source code in src/hassette/api/api.py
680 681 682 683 684 685 686 687 688 689 690 691 692 | |
get_state_value(entity_id: str) -> Any
async
Get the state of a specific entity without converting it to a state object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to get the state for. |
required |
Returns:
| Type | Description |
|---|---|
Any
|
The state of the entity as raw data. |
Note
While most default methods in this library work with state objects for strong typing, this method is designed to return the raw state value, as it is likely overkill to convert it to a state object for simple state value retrieval.
Source code in src/hassette/api/api.py
694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 | |
get_attribute(entity_id: str, attribute: str) -> Any | FalseySentinel
async
Get a specific attribute of an entity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to get the attribute for. |
required |
attribute
|
str
|
The name of the attribute to retrieve. Can be a dot-separated path for nested attributes. |
required |
Returns:
| Type | Description |
|---|---|
Any | FalseySentinel
|
The value of the specified attribute, or MISSING_VALUE sentinel if the attribute does not exist. |
Source code in src/hassette/api/api.py
712 713 714 715 716 717 718 719 720 721 722 723 | |
get_history(entity_id: str, start_time: PlainDateTime | ZonedDateTime | Date | str, end_time: PlainDateTime | ZonedDateTime | Date | str | None = None, significant_changes_only: bool = False, minimal_response: bool = False, no_attributes: bool = False) -> list[HistoryEntry]
async
Get the history of a specific entity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to get the history for. |
required |
start_time
|
PlainDateTime | ZonedDateTime | Date | str
|
The start time for the history range. |
required |
end_time
|
PlainDateTime | ZonedDateTime | Date | str | None
|
The end time for the history range. |
None
|
significant_changes_only
|
bool
|
Whether to only include significant changes. |
False
|
minimal_response
|
bool
|
Whether to request a minimal response. |
False
|
no_attributes
|
bool
|
Whether to exclude attributes from the response. |
False
|
Returns:
| Type | Description |
|---|---|
list[HistoryEntry]
|
A list of history entries for the specified entity. |
Source code in src/hassette/api/api.py
725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 | |
get_histories(entity_ids: list[str], start_time: PlainDateTime | ZonedDateTime | Date | str, end_time: PlainDateTime | ZonedDateTime | Date | str | None = None, significant_changes_only: bool = False, minimal_response: bool = False, no_attributes: bool = False) -> dict[str, list[HistoryEntry]]
async
Get the history for multiple entities.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_ids
|
list[str]
|
The IDs of the entities to get the history for. |
required |
start_time
|
PlainDateTime | ZonedDateTime | Date | str
|
The start time for the history range. |
required |
end_time
|
PlainDateTime | ZonedDateTime | Date | str | None
|
The end time for the history range. |
None
|
significant_changes_only
|
bool
|
Whether to only include significant changes. |
False
|
minimal_response
|
bool
|
Whether to request a minimal response. |
False
|
no_attributes
|
bool
|
Whether to exclude attributes from the response. |
False
|
Returns:
| Type | Description |
|---|---|
dict[str, list[HistoryEntry]]
|
A dictionary mapping entity IDs to their respective history entries. |
Source code in src/hassette/api/api.py
769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 | |
get_logbook(entity_id: str, start_time: PlainDateTime | ZonedDateTime | Date | str, end_time: PlainDateTime | ZonedDateTime | Date | str) -> list[dict[str, Any]]
async
Get the logbook entries for a specific entity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to get the logbook entries for. |
required |
start_time
|
PlainDateTime | ZonedDateTime | Date | str
|
The start time for the logbook range. |
required |
end_time
|
PlainDateTime | ZonedDateTime | Date | str
|
The end time for the logbook range. |
required |
Returns:
| Type | Description |
|---|---|
list[dict[str, Any]]
|
A list of logbook entries for the specified entity. |
Source code in src/hassette/api/api.py
811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 | |
set_state(entity_id: str | StrEnum, state: Any, attributes: dict[str, Any] | None = None) -> Coroutine[Any, Any, dict]
Set the state of a specific entity.
Must be awaited — a forgotten await is reported per forgotten_await_behavior (default: warn).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str | StrEnum
|
The ID of the entity to set the state for. |
required |
state
|
Any
|
The new state value to set. |
required |
attributes
|
dict[str, Any] | None
|
Additional attributes to set for the entity. |
None
|
Returns:
| Type | Description |
|---|---|
Coroutine[Any, Any, dict]
|
The response from Home Assistant after setting the state. |
Source code in src/hassette/api/api.py
834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 | |
get_camera_image(entity_id: str, timestamp: PlainDateTime | ZonedDateTime | Date | str | None = None) -> bytes
async
Get the latest camera image for a specific entity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the camera entity to get the image for. |
required |
timestamp
|
PlainDateTime | ZonedDateTime | Date | str | None
|
The timestamp for the image. If None, the latest image is returned. |
None
|
Returns:
| Type | Description |
|---|---|
bytes
|
The camera image data. |
Source code in src/hassette/api/api.py
891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 | |
get_calendars() -> list[dict[str, Any]]
async
Get the list of calendars.
Source code in src/hassette/api/api.py
914 915 916 917 918 | |
get_calendar_events(calendar_id: str, start_time: PlainDateTime | ZonedDateTime | Date | str, end_time: PlainDateTime | ZonedDateTime | Date | str) -> list[dict[str, Any]]
async
Get events from a specific calendar.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
calendar_id
|
str
|
The ID of the calendar to get events from. |
required |
start_time
|
PlainDateTime | ZonedDateTime | Date | str
|
The start time for the event range. |
required |
end_time
|
PlainDateTime | ZonedDateTime | Date | str
|
The end time for the event range. |
required |
Returns:
| Type | Description |
|---|---|
list[dict[str, Any]]
|
A list of calendar events. |
Source code in src/hassette/api/api.py
920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 | |
render_template(template: str, variables: dict[str, Any] | None = None) -> str
async
Render a template with given variables.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
template
|
str
|
The template string to render. |
required |
variables
|
dict[str, Any] | None
|
Variables to use in the template. |
None
|
Returns:
| Type | Description |
|---|---|
str
|
The rendered template result. |
Source code in src/hassette/api/api.py
942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 | |
delete_entity(entity_id: str) -> None
async
Delete a specific entity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to delete. |
required |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If the deletion fails. |
Source code in src/hassette/api/api.py
962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 | |
HelperClient
Bases: Resource
Client for CRUD operations on Home Assistant helper entities.
Exposes 4 generic methods (list, create, update, delete) covering all 8 helper domains
(input_boolean, input_number, input_text, input_select, input_datetime,
input_button, counter, timer), plus 3 counter shortcuts (increment, decrement,
reset). Each CRUD method dispatches to the correct HA WebSocket command and record type via
a lookup table, with hand-maintained @overload declarations providing full static typing.
Source code in src/hassette/api/helpers.py
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 | |
config_log_level: LOG_LEVEL_TYPE
property
Return the log level from the config for this resource.
list(domain: HelperDomain) -> builtins.list[Any]
async
list(
domain: Literal["input_boolean"],
) -> builtins.list[InputBooleanRecord]
list(
domain: Literal["input_number"],
) -> builtins.list[InputNumberRecord]
list(
domain: Literal["input_text"],
) -> builtins.list[InputTextRecord]
list(
domain: Literal["input_select"],
) -> builtins.list[InputSelectRecord]
list(
domain: Literal["input_datetime"],
) -> builtins.list[InputDatetimeRecord]
list(
domain: Literal["input_button"],
) -> builtins.list[InputButtonRecord]
list(
domain: Literal["counter"],
) -> builtins.list[CounterRecord]
list(
domain: Literal["timer"],
) -> builtins.list[TimerRecord]
List all stored helpers for a given domain.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
domain
|
HelperDomain
|
The helper domain to list (e.g. "input_boolean", "counter"). |
required |
Returns:
| Type | Description |
|---|---|
list[Any]
|
List of domain-specific Record instances representing stored configs. |
Source code in src/hassette/api/helpers.py
168 169 170 171 172 173 174 175 176 177 178 179 180 181 | |
create(params: BaseModel) -> BaseModel
async
create(
params: CreateInputBooleanParams,
) -> InputBooleanRecord
create(
params: CreateInputNumberParams,
) -> InputNumberRecord
create(params: CreateInputTextParams) -> InputTextRecord
create(
params: CreateInputSelectParams,
) -> InputSelectRecord
create(
params: CreateInputDatetimeParams,
) -> InputDatetimeRecord
create(
params: CreateInputButtonParams,
) -> InputButtonRecord
create(params: CreateCounterParams) -> CounterRecord
create(params: CreateTimerParams) -> TimerRecord
Create a new helper.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
params
|
BaseModel
|
Parameters for the new helper. The concrete type determines the domain and the return type via overload resolution. |
required |
Returns:
| Type | Description |
|---|---|
BaseModel
|
The stored record returned by Home Assistant. |
Source code in src/hassette/api/helpers.py
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | |
update(helper_id: str, params: BaseModel) -> BaseModel
async
update(
helper_id: str, params: UpdateInputBooleanParams
) -> InputBooleanRecord
update(
helper_id: str, params: UpdateInputNumberParams
) -> InputNumberRecord
update(
helper_id: str, params: UpdateInputTextParams
) -> InputTextRecord
update(
helper_id: str, params: UpdateInputSelectParams
) -> InputSelectRecord
update(
helper_id: str, params: UpdateInputDatetimeParams
) -> InputDatetimeRecord
update(
helper_id: str, params: UpdateInputButtonParams
) -> InputButtonRecord
update(
helper_id: str, params: UpdateCounterParams
) -> CounterRecord
update(
helper_id: str, params: UpdateTimerParams
) -> TimerRecord
Update an existing helper.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
helper_id
|
str
|
The ID of the helper to update. |
required |
params
|
BaseModel
|
Fields to update (unset fields are left unchanged). The concrete type determines the domain and the return type via overload resolution. |
required |
Returns:
| Type | Description |
|---|---|
BaseModel
|
The updated stored record. |
Source code in src/hassette/api/helpers.py
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 | |
delete(domain: HelperDomain, helper_id: str) -> None
async
delete(
domain: Literal["input_boolean"], helper_id: str
) -> None
delete(
domain: Literal["input_number"], helper_id: str
) -> None
delete(
domain: Literal["input_text"], helper_id: str
) -> None
delete(
domain: Literal["input_select"], helper_id: str
) -> None
delete(
domain: Literal["input_datetime"], helper_id: str
) -> None
delete(
domain: Literal["input_button"], helper_id: str
) -> None
delete(domain: Literal['counter'], helper_id: str) -> None
delete(domain: Literal['timer'], helper_id: str) -> None
Delete a helper.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
domain
|
HelperDomain
|
The helper domain (e.g. "input_boolean", "counter"). |
required |
helper_id
|
str
|
The ID of the helper to delete. |
required |
Source code in src/hassette/api/helpers.py
275 276 277 278 279 280 281 282 283 284 | |
increment(entity_id: str) -> None
async
Increment a counter entity's current value (live state, not stored config).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The entity ID of the counter (e.g. |
required |
Source code in src/hassette/api/helpers.py
295 296 297 298 299 300 301 302 303 304 305 306 307 | |
decrement(entity_id: str) -> None
async
Decrement a counter entity's current value (live state, not stored config).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The entity ID of the counter (e.g. |
required |
Source code in src/hassette/api/helpers.py
309 310 311 312 313 314 315 316 317 318 319 320 321 | |
reset(entity_id: str) -> None
async
Reset a counter entity's value to its configured initial (live state, not stored config).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The entity ID of the counter (e.g. |
required |
Source code in src/hassette/api/helpers.py
323 324 325 326 327 328 329 330 331 332 333 334 335 | |
ApiSyncFacade
Bases: Resource
Synchronous facade for the API service.
This class provides synchronous methods that wrap the asynchronous methods of the Api class, allowing for blocking calls in a synchronous context.
These methods must not be called from within the event loop; doing so raises a RuntimeError.
Use the asynchronous methods on Api directly when operating within an event loop.
Source code in src/hassette/api/sync.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 | |
ws_send_and_wait(**data: Any) -> Any
Send a WebSocket message and wait for a response.
Source code in src/hassette/api/sync.py
54 55 56 | |
ws_send_json(**data: Any) -> None
Send a WebSocket message without waiting for a response.
Source code in src/hassette/api/sync.py
58 59 60 | |
rest_request(method: str, url: str, params: dict[str, Any] | None = None, data: dict[str, Any] | None = None, suppress_error_message: bool = False, **kwargs: Any) -> aiohttp.ClientResponse
Make a REST request to the Home Assistant API.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
method
|
str
|
The HTTP method to use (e.g., "GET", "POST"). |
required |
url
|
str
|
The URL endpoint for the request. |
required |
params
|
dict[str, Any] | None
|
Query parameters for the request. |
None
|
data
|
dict[str, Any] | None
|
JSON payload for the request. |
None
|
suppress_error_message
|
bool
|
Whether to suppress error messages. |
False
|
Returns:
| Type | Description |
|---|---|
ClientResponse
|
The response from the API. |
Source code in src/hassette/api/sync.py
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | |
get_rest_request(url: str, params: dict[str, Any] | None = None, **kwargs: Any) -> aiohttp.ClientResponse
Make a GET request to the Home Assistant API.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
url
|
str
|
The URL endpoint for the request. |
required |
params
|
dict[str, Any] | None
|
Query parameters for the request. |
None
|
kwargs
|
Any
|
Additional keyword arguments to pass to the request. |
{}
|
Returns:
| Type | Description |
|---|---|
ClientResponse
|
The response from the API. |
Source code in src/hassette/api/sync.py
87 88 89 90 91 92 93 94 95 96 97 98 | |
post_rest_request(url: str, data: dict[str, Any] | None = None, **kwargs: Any) -> aiohttp.ClientResponse
Make a POST request to the Home Assistant API.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
url
|
str
|
The URL endpoint for the request. |
required |
data
|
dict[str, Any] | None
|
JSON payload for the request. |
None
|
kwargs
|
Any
|
Additional keyword arguments to pass to the request. |
{}
|
Returns:
| Type | Description |
|---|---|
ClientResponse
|
The response from the API. |
Source code in src/hassette/api/sync.py
100 101 102 103 104 105 106 107 108 109 110 111 | |
delete_rest_request(url: str, **kwargs: Any) -> aiohttp.ClientResponse
Make a DELETE request to the Home Assistant API.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
url
|
str
|
The URL endpoint for the request. |
required |
kwargs
|
Any
|
Additional keyword arguments to pass to the request. |
{}
|
Returns:
| Type | Description |
|---|---|
ClientResponse
|
The response from the API. |
Source code in src/hassette/api/sync.py
113 114 115 116 117 118 119 120 121 122 123 | |
get_states_raw() -> list[HassStateDict]
Get all entities in Home Assistant as raw dictionaries.
Returns:
| Type | Description |
|---|---|
list[HassStateDict]
|
A list of states as dictionaries. |
Source code in src/hassette/api/sync.py
125 126 127 128 129 130 131 | |
get_states() -> list[BaseState]
Get all entities in Home Assistant, converted to their appropriate state types.
If a state fails to convert, it is skipped with an error logged. If there is no registered state class for a domain, the generic BaseState is used.
Returns:
| Type | Description |
|---|---|
list[BaseState]
|
A list of states, converted to their appropriate state types. |
Source code in src/hassette/api/sync.py
133 134 135 136 137 138 139 140 141 142 | |
get_config() -> dict[str, Any]
Get the Home Assistant configuration.
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
The configuration data. |
Source code in src/hassette/api/sync.py
144 145 146 147 148 149 150 | |
get_services() -> dict[str, Any]
Get the available services in Home Assistant.
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
The services data. |
Source code in src/hassette/api/sync.py
152 153 154 155 156 157 158 | |
get_panels() -> dict[str, Any]
Get the available panels in Home Assistant.
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
The panels data. |
Source code in src/hassette/api/sync.py
160 161 162 163 164 165 166 | |
fire_event(event_type: str, event_data: dict[str, Any] | None = None) -> dict[str, Any]
Fire a custom event in Home Assistant.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
event_type
|
str
|
The type of the event to fire (e.g., "custom_event"). |
required |
event_data
|
dict[str, Any] | None
|
Additional data to include with the event. |
None
|
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
The response from Home Assistant. |
Source code in src/hassette/api/sync.py
168 169 170 171 172 173 174 175 176 177 178 | |
call_service(domain: str, service: str, target: dict[str, str] | dict[str, list[str]] | None = None, return_response: bool | None = False, **data: Any) -> ServiceResponse | None
Call a Home Assistant service.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
domain
|
str
|
The domain of the service (e.g., "light"). |
required |
service
|
str
|
The name of the service to call (e.g., "turn_on"). |
required |
target
|
dict[str, str] | dict[str, list[str]] | None
|
Target entity IDs or areas. |
None
|
return_response
|
bool | None
|
Whether to return the response from Home Assistant. Defaults to False. |
False
|
**data
|
Any
|
Additional data to send with the service call. |
{}
|
Returns:
| Type | Description |
|---|---|
ServiceResponse | None
|
ServiceResponse | None: The response from Home Assistant if return_response is True. Otherwise None. |
Source code in src/hassette/api/sync.py
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 | |
turn_on(entity_id: str | StrEnum, domain: str | None = None, **data: Any) -> None
Turn on a specific entity in Home Assistant.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str | StrEnum
|
The ID of the entity to turn on (e.g., "light.office"). |
required |
domain
|
str | None
|
The domain to use for the service call. Defaults to the entity's domain,
derived from |
None
|
**data
|
Any
|
Additional service data forwarded to the service call. |
{}
|
Source code in src/hassette/api/sync.py
202 203 204 205 206 207 208 209 210 211 212 213 | |
turn_off(entity_id: str | StrEnum, domain: str | None = None, **data: Any) -> None
Turn off a specific entity in Home Assistant.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str | StrEnum
|
The ID of the entity to turn off (e.g., "light.office"). |
required |
domain
|
str | None
|
The domain to use for the service call. Defaults to the entity's domain,
derived from |
None
|
**data
|
Any
|
Additional service data forwarded to the service call. |
{}
|
Source code in src/hassette/api/sync.py
215 216 217 218 219 220 221 222 223 224 225 226 | |
toggle(entity_id: str | StrEnum, domain: str | None = None, **data: Any) -> None
Toggle a specific entity in Home Assistant.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str | StrEnum
|
The ID of the entity to toggle (e.g., "light.office"). |
required |
domain
|
str | None
|
The domain to use for the service call. Defaults to the entity's domain,
derived from |
None
|
**data
|
Any
|
Additional service data forwarded to the service call. |
{}
|
Source code in src/hassette/api/sync.py
228 229 230 231 232 233 234 235 236 237 238 239 | |
get_state_raw(entity_id: str) -> HassStateDict
Get the state of a specific entity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to get the state for. |
required |
Returns:
| Type | Description |
|---|---|
HassStateDict
|
The state of the entity as raw data. |
Source code in src/hassette/api/sync.py
241 242 243 244 245 246 247 248 249 250 | |
entity_exists(entity_id: str) -> bool
Check if a specific entity exists.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to check. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if the entity exists, False otherwise. |
Source code in src/hassette/api/sync.py
252 253 254 255 256 257 258 259 260 261 | |
get_entity(entity_id: str, model: type[EntityT]) -> EntityT
Get an entity object for a specific entity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to get. |
required |
model
|
type[EntityT]
|
The model class to use for the entity. |
required |
Returns:
| Type | Description |
|---|---|
EntityT
|
The entity object. |
Source code in src/hassette/api/sync.py
263 264 265 266 267 268 269 270 271 272 273 | |
get_entity_or_none(entity_id: str, model: type[EntityT]) -> EntityT | None
Get an entity object for a specific entity, or None if it does not exist.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to get. |
required |
model
|
type[EntityT]
|
The model class to use for the entity. |
required |
Returns:
| Type | Description |
|---|---|
EntityT | None
|
The entity object, or None if it does not exist. |
Source code in src/hassette/api/sync.py
275 276 277 278 279 280 281 282 283 284 285 | |
get_state(entity_id: str) -> BaseState
Get the state of a specific entity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to get the state for. |
required |
Returns:
| Type | Description |
|---|---|
BaseState
|
The state of the entity converted to the specified model type. |
Source code in src/hassette/api/sync.py
287 288 289 290 291 292 293 294 295 296 | |
get_state_or_none(entity_id: str) -> BaseState | None
Get the state of a specific entity, or None if it does not exist.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to get the state for. |
required |
Returns:
| Type | Description |
|---|---|
BaseState | None
|
The state of the entity converted to the specified model type, or None if it does not exist. |
Source code in src/hassette/api/sync.py
298 299 300 301 302 303 304 305 306 307 | |
get_state_value(entity_id: str) -> Any
Get the state of a specific entity without converting it to a state object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to get the state for. |
required |
Returns:
| Type | Description |
|---|---|
Any
|
The state of the entity as raw data. |
Note
While most default methods in this library work with state objects for strong typing, this method is designed to return the raw state value, as it is likely overkill to convert it to a state object for simple state value retrieval.
Source code in src/hassette/api/sync.py
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 | |
get_attribute(entity_id: str, attribute: str) -> Any | FalseySentinel
Get a specific attribute of an entity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to get the attribute for. |
required |
attribute
|
str
|
The name of the attribute to retrieve. Can be a dot-separated path for nested attributes. |
required |
Returns:
| Type | Description |
|---|---|
Any | FalseySentinel
|
The value of the specified attribute, or MISSING_VALUE sentinel if the attribute does not exist. |
Source code in src/hassette/api/sync.py
325 326 327 328 329 330 331 332 333 334 335 | |
get_history(entity_id: str, start_time: PlainDateTime | ZonedDateTime | Date | str, end_time: PlainDateTime | ZonedDateTime | Date | str | None = None, significant_changes_only: bool = False, minimal_response: bool = False, no_attributes: bool = False) -> list[HistoryEntry]
Get the history of a specific entity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to get the history for. |
required |
start_time
|
PlainDateTime | ZonedDateTime | Date | str
|
The start time for the history range. |
required |
end_time
|
PlainDateTime | ZonedDateTime | Date | str | None
|
The end time for the history range. |
None
|
significant_changes_only
|
bool
|
Whether to only include significant changes. |
False
|
minimal_response
|
bool
|
Whether to request a minimal response. |
False
|
no_attributes
|
bool
|
Whether to exclude attributes from the response. |
False
|
Returns:
| Type | Description |
|---|---|
list[HistoryEntry]
|
A list of history entries for the specified entity. |
Source code in src/hassette/api/sync.py
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 | |
get_histories(entity_ids: list[str], start_time: PlainDateTime | ZonedDateTime | Date | str, end_time: PlainDateTime | ZonedDateTime | Date | str | None = None, significant_changes_only: bool = False, minimal_response: bool = False, no_attributes: bool = False) -> dict[str, list[HistoryEntry]]
Get the history for multiple entities.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_ids
|
list[str]
|
The IDs of the entities to get the history for. |
required |
start_time
|
PlainDateTime | ZonedDateTime | Date | str
|
The start time for the history range. |
required |
end_time
|
PlainDateTime | ZonedDateTime | Date | str | None
|
The end time for the history range. |
None
|
significant_changes_only
|
bool
|
Whether to only include significant changes. |
False
|
minimal_response
|
bool
|
Whether to request a minimal response. |
False
|
no_attributes
|
bool
|
Whether to exclude attributes from the response. |
False
|
Returns:
| Type | Description |
|---|---|
dict[str, list[HistoryEntry]]
|
A dictionary mapping entity IDs to their respective history entries. |
Source code in src/hassette/api/sync.py
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 | |
get_logbook(entity_id: str, start_time: PlainDateTime | ZonedDateTime | Date | str, end_time: PlainDateTime | ZonedDateTime | Date | str) -> list[dict[str, Any]]
Get the logbook entries for a specific entity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to get the logbook entries for. |
required |
start_time
|
PlainDateTime | ZonedDateTime | Date | str
|
The start time for the logbook range. |
required |
end_time
|
PlainDateTime | ZonedDateTime | Date | str
|
The end time for the logbook range. |
required |
Returns:
| Type | Description |
|---|---|
list[dict[str, Any]]
|
A list of logbook entries for the specified entity. |
Source code in src/hassette/api/sync.py
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 | |
set_state(entity_id: str | StrEnum, state: Any, attributes: dict[str, Any] | None = None) -> dict
Set the state of a specific entity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str | StrEnum
|
The ID of the entity to set the state for. |
required |
state
|
Any
|
The new state value to set. |
required |
attributes
|
dict[str, Any] | None
|
Additional attributes to set for the entity. |
None
|
Returns:
| Type | Description |
|---|---|
dict
|
The response from Home Assistant after setting the state. |
Source code in src/hassette/api/sync.py
411 412 413 414 415 416 417 418 419 420 421 422 | |
get_camera_image(entity_id: str, timestamp: PlainDateTime | ZonedDateTime | Date | str | None = None) -> bytes
Get the latest camera image for a specific entity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the camera entity to get the image for. |
required |
timestamp
|
PlainDateTime | ZonedDateTime | Date | str | None
|
The timestamp for the image. If None, the latest image is returned. |
None
|
Returns:
| Type | Description |
|---|---|
bytes
|
The camera image data. |
Source code in src/hassette/api/sync.py
424 425 426 427 428 429 430 431 432 433 434 435 436 | |
get_calendars() -> list[dict[str, Any]]
Get the list of calendars.
Source code in src/hassette/api/sync.py
438 439 440 | |
get_calendar_events(calendar_id: str, start_time: PlainDateTime | ZonedDateTime | Date | str, end_time: PlainDateTime | ZonedDateTime | Date | str) -> list[dict[str, Any]]
Get events from a specific calendar.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
calendar_id
|
str
|
The ID of the calendar to get events from. |
required |
start_time
|
PlainDateTime | ZonedDateTime | Date | str
|
The start time for the event range. |
required |
end_time
|
PlainDateTime | ZonedDateTime | Date | str
|
The end time for the event range. |
required |
Returns:
| Type | Description |
|---|---|
list[dict[str, Any]]
|
A list of calendar events. |
Source code in src/hassette/api/sync.py
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 | |
render_template(template: str, variables: dict[str, Any] | None = None) -> str
Render a template with given variables.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
template
|
str
|
The template string to render. |
required |
variables
|
dict[str, Any] | None
|
Variables to use in the template. |
None
|
Returns:
| Type | Description |
|---|---|
str
|
The rendered template result. |
Source code in src/hassette/api/sync.py
460 461 462 463 464 465 466 467 468 469 470 | |
delete_entity(entity_id: str) -> None
Delete a specific entity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The ID of the entity to delete. |
required |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If the deletion fails. |
Source code in src/hassette/api/sync.py
472 473 474 475 476 477 478 479 480 481 | |