PiKVM Client¶
PiKVM
¶
Async client for PiKVM API.
Usage:
async with PiKVM("https://pikvm.local", user="admin", passwd="admin") as kvm:
await kvm.atx.power_on()
An external httpx.AsyncClient can be provided via http_client; in that case the caller is responsible for closing it.
The lifecycle follows the one httpx.AsyncClient has, so that wrapping
one does not change the rules: a client is used once and then closed.
aclose() — which async with calls on the
way out — releases the resources and leaves the object closed for good,
whether the underlying HTTP client was built here or handed in.
Reopening and nesting both raise
ConfigurationError. Reopening used to
build a second connection pool under the same object, rereading the
credentials as they stood at that moment; nesting used to leave the inner
block's exit closing the connection the outer one was still using.
Source code in src/aiopikvm/_client.py
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 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 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 | |
base_url
property
¶
Base URL every request is sent relative to.
Returns:
| Type | Description |
|---|---|
URL
|
The underlying client's base URL. With an external http_client this is whatever that client was configured with, not the url passed to this constructor. |
Raises:
| Type | Description |
|---|---|
PiKVMError
|
If this client has been closed, or the async context has not been entered yet. |
cookies
property
¶
Cookies the underlying HTTP client carries.
AuthResource.login()
leaves kvmd's auth_token here, and every later request sends it
back.
Whether the token is the credential depends on the auth mode
(AuthMode). kvmd reads the X-KVMD-*
headers, then this cookie, then HTTP Basic, and the first source
present decides the request — a token it does not know is refused
outright rather than retried against what comes after it. So which
mode this client is in settles what the jar is for.
Under auth="headers" the pair goes out with every request and is
read first, so a token here decides nothing. It is then only ever
what authenticates an httpx.AsyncClient passed in as http_client
without a credential of its own:
async with httpx.AsyncClient(base_url=url, verify=False) as http:
http.cookies.set("auth_token", saved_token)
async with PiKVM(url, http_client=http) as kvm:
...
Under auth="basic" there is no X-KVMD-User, so kvmd reaches
this cookie before the Basic credential: a token left here by
AuthResource.login()
authenticates every later request instead, and once it expires those
requests fail although the password is good — this mode opens no
session of its own to replace it. Drop the cookie to go back to the
password.
Under auth="cookie" the token is the credential: this client
sends no X-KVMD-User at all, and what is in this jar is what
every request and every socket handshake carries. The first request
logs in on its own; ws() is not a coroutine
and cannot, so opening a socket before anything else has authenticated
raises rather than dialling with nothing.
The other two modes hand ws() the user and
passwd this client was built with, which are the defaults when an
http_client carries the credentials instead.
Returns:
| Type | Description |
|---|---|
Cookies
|
The live cookie jar — mutating it affects subsequent requests.
Set a cookie through |
Raises:
| Type | Description |
|---|---|
PiKVMError
|
If this client has been closed, or the async context has not been entered yet. |
auth
cached
property
¶
Authentication resource.
atx
cached
property
¶
ATX power control resource.
hid
cached
property
¶
HID keyboard and mouse resource.
msd
cached
property
¶
Mass Storage Device resource.
gpio
cached
property
¶
GPIO channels resource.
streamer
cached
property
¶
Streamer snapshots and OCR resource.
media
cached
property
¶
Live video from the kvmd-media daemon.
switch
cached
property
¶
Multi-port KVM switch resource.
redfish
cached
property
¶
Redfish DMTF BMC resource.
prometheus
cached
property
¶
Prometheus metrics resource.
system
cached
property
¶
System information and logs resource.
__init__(url, *, user='admin', passwd='', totp=None, auth=DEFAULT_AUTH, session_expire=0, verify_ssl=DEFAULT_VERIFY_SSL, cert=None, proxy=None, trust_env=True, timeout=DEFAULT_TIMEOUT, follow_redirects=DEFAULT_FOLLOW_REDIRECTS, http_client=None)
¶
Create a client.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
url
|
str
|
PiKVM base URL, including the scheme. |
required |
user
|
str
|
kvmd user name. |
'admin'
|
passwd
|
str
|
kvmd password. |
''
|
totp
|
str | Callable[[], str] | None
|
TOTP code, appended to the password. A string is used
as given, which is good for the one window it belongs to;
pass a zero-argument callable — |
None
|
auth
|
AuthMode
|
Which credential to send; see
|
DEFAULT_AUTH
|
session_expire
|
int
|
Lifetime, in seconds, of a session opened that
way. |
0
|
verify_ssl
|
VerifyTypes
|
What to trust; see
|
DEFAULT_VERIFY_SSL
|
cert
|
CertTypes | None
|
Client certificate to present: a combined PEM path, or
|
None
|
proxy
|
str | None
|
Proxy URL to reach the device through. |
None
|
trust_env
|
bool
|
Read proxy settings and the certificate bundle from
the environment. |
True
|
timeout
|
float
|
Default per-request timeout in seconds. |
DEFAULT_TIMEOUT
|
follow_redirects
|
bool
|
Follow HTTP redirects instead of raising
|
DEFAULT_FOLLOW_REDIRECTS
|
http_client
|
AsyncClient | None
|
Pre-built httpx client. When given, this client does
not close it, and over HTTP the arguments above are ignored
— except under |
None
|
Source code in src/aiopikvm/_client.py
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 | |
request(method, path, *, params=None, json=None, data=None, content=None, headers=None, timeout=None)
async
¶
Send an HTTP request and return the raw response.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
method
|
str
|
HTTP method (GET, POST, etc.). |
required |
path
|
str
|
URL path relative to the PiKVM base URL. |
required |
params
|
dict[str, Any] | None
|
Query parameters. |
None
|
json
|
dict[str, Any] | None
|
JSON body. |
None
|
data
|
dict[str, str] | None
|
Form fields, sent as |
None
|
content
|
bytes | AsyncByteStream | None
|
Raw body bytes or async byte stream. |
None
|
headers
|
dict[str, str] | None
|
Extra HTTP headers. |
None
|
timeout
|
float | Timeout | None
|
Override the client-level timeout for this request. |
None
|
Returns:
| Type | Description |
|---|---|
Response
|
The httpx.Response object. |
Raises:
| Type | Description |
|---|---|
ConfigurationError
|
The base URL has no usable scheme, the URL this call builds is one httpx will not parse, or the credential is not ASCII — which for a TOTP code produced by a callable is only known here. |
ConnectError
|
Connection to PiKVM failed or broke mid-request. |
ConnectionTimeoutError
|
Request timed out. |
AuthError
|
Authentication failed (401/403). |
BusyError
|
PiKVM is busy with another operation (409). |
UnavailableError
|
The subsystem is disabled or offline (503). |
RedirectError
|
PiKVM answered with a redirect (3xx) and the
client was not created with |
ResponseError
|
The body did not survive its |
APIError
|
Server returned any other error status (>= 400). |
Source code in src/aiopikvm/_client.py
stream(method, path, *, params=None, headers=None, timeout=None)
async
¶
Open a streaming HTTP connection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
method
|
str
|
HTTP method. |
required |
path
|
str
|
URL path. |
required |
params
|
dict[str, Any] | None
|
Query parameters. |
None
|
headers
|
dict[str, str] | None
|
Extra HTTP headers. |
None
|
timeout
|
float | Timeout | None
|
Override request timeout. |
None
|
Under auth="cookie" this opens a session first, and reopens one
if the token is refused — the same preamble
request() runs. Nothing has been yielded
when the refusal arrives, so the connection is simply made again.
Yields:
| Type | Description |
|---|---|
AsyncIterator[Response]
|
The httpx.Response with an unconsumed body. |
Raises:
| Type | Description |
|---|---|
ConfigurationError
|
The base URL has no usable scheme, the URL this call builds is one httpx will not parse, or the credential is not ASCII. |
ConnectError
|
Connection to PiKVM failed or broke mid-request. |
ConnectionTimeoutError
|
Request timed out. |
AuthError
|
Authentication failed (401/403). |
BusyError
|
PiKVM is busy with another operation (409). |
UnavailableError
|
The subsystem is disabled or offline (503). |
RedirectError
|
PiKVM answered with a redirect (3xx) and the
client was not created with |
ResponseError
|
The body did not survive its |
APIError
|
Server returned any other error status (>= 400). |
Source code in src/aiopikvm/_client.py
ws(*, stream=True, binary=False, open_timeout=None, close_timeout=None, max_size=_WS_MAX_SIZE, max_queue=_WS_MAX_QUEUE, ping_interval=_WS_PING_INTERVAL, ping_timeout=_WS_PING_TIMEOUT)
¶
Create a WebSocket connection.
The socket carries whichever credential this client's auth mode
says. Under "headers" and "basic" those are the user and
passwd it was built with; under "cookie" it is the session
token from cookies, read when the socket
is opened rather than here — so something must have logged in by
then, though not necessarily before this call. Neither this method
nor the socket logs in: it is a request that opens a session, or
AuthResource.login().
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
stream
|
bool
|
Count this client as a video viewer, which is also kvmd's
own default. kvmd runs the streamer while at least one
connected session asked for it, so a socket opened with
|
True
|
binary
|
bool
|
Send HID input over kvmd's binary channel instead of as
JSON events, the way kvmd's own web UI does. Both reach the
same handlers; see
|
False
|
open_timeout
|
float | None
|
Timeout for opening the connection (defaults to the client timeout). |
None
|
close_timeout
|
float | None
|
Timeout for closing the connection (defaults to the client timeout). |
None
|
max_size
|
int | None
|
Largest frame to accept, in bytes, or |
_WS_MAX_SIZE
|
max_queue
|
int
|
How many frames the transport may buffer before it pauses reading. The socket is drained continuously, so this is here for a caller who knows their case is unusual. |
_WS_MAX_QUEUE
|
ping_interval
|
float | None
|
Seconds between the protocol keepalive pings, or
|
_WS_PING_INTERVAL
|
ping_timeout
|
float | None
|
Seconds to wait for a keepalive pong before the
connection is failed, or |
_WS_PING_TIMEOUT
|
Returns:
| Type | Description |
|---|---|
PiKVMWebSocket
|
A PiKVMWebSocket async context manager. It inherits this
client's verify_ssl and follow_redirects. It does not go
through httpx, so with an external http_client it still dials
the URL passed to this constructor — but under |
Raises:
| Type | Description |
|---|---|
ConfigurationError
|
If this client has been closed, or the URL it
was built with has no usable scheme. Under |
Source code in src/aiopikvm/_client.py
1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 | |
media_ws(*, video='h264', max_size=None, max_queue=None, ping_interval=_WS_PING_INTERVAL, ping_timeout=_WS_PING_TIMEOUT, open_timeout=None, close_timeout=None)
¶
Open a live video socket to the kvmd-media daemon.
This is a different daemon from the one
ws() talks to, and it does not count as a video
viewer: kvmd runs the streamer while at least one kvmd session asks
for video, and this socket is not one. Hold a
ws() open alongside it, or the frames stop
arriving with nothing to say why.
The socket carries whichever credential this client's auth mode
says, the same way ws() does.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
video
|
str | None
|
The format to stream. Naming one opens the pure socket,
which starts sending during the handshake and sends nothing
but raw frames; |
'h264'
|
max_size
|
int | None
|
Largest message to accept, in bytes. |
None
|
max_queue
|
int | None
|
How many frames to buffer before websockets stops
reading the socket. |
None
|
ping_interval
|
float | None
|
Seconds between websockets' own keepalive pings,
|
_WS_PING_INTERVAL
|
ping_timeout
|
float | None
|
Seconds to wait for a keepalive pong before
declaring the link dead, |
_WS_PING_TIMEOUT
|
open_timeout
|
float | None
|
Timeout for opening the connection (defaults to the client timeout). |
None
|
close_timeout
|
float | None
|
Timeout for closing the connection (defaults to the client timeout). |
None
|
Returns:
| Type | Description |
|---|---|
MediaWebSocket
|
A MediaWebSocket async context manager. It inherits this client's verify_ssl, proxy configuration and follow_redirects. |
Raises:
| Type | Description |
|---|---|
ConfigurationError
|
If this client has been closed, or the URL it
was built with has no usable scheme. Under |
Source code in src/aiopikvm/_client.py
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 | |
webrtc(*, audio=False, orientation=0, ice_servers=None, frame_buffer=_FRAME_BUFFER, keepalive_interval=_KEEPALIVE_INTERVAL, open_timeout=None, close_timeout=None, negotiate_timeout=_NEGOTIATE_TIMEOUT, ping_interval=_WS_PING_INTERVAL, ping_timeout=_WS_PING_TIMEOUT)
¶
Open a WebRTC session against the device's Janus gateway.
This is the lowest-latency of the three video paths, and the one
kvmd's own web UI takes. It is also the only one that needs an extra:
pip install 'aiopikvm[webrtc]', for aiortc and the FFmpeg it
bundles. The frames it hands over are decoded, where
media_ws() hands over the encoded stream
and StreamerResource
hands over MJPEG.
Like media_ws(), this needs a
ws() held open beside it. kvmd runs ustreamer
only while a session has asked to be counted as a viewer, and the
Janus plugin reads its frames out of ustreamer, so without one the
negotiation succeeds in every visible way — Janus even reports the
peer connection up — and not a single frame ever arrives.
The signalling socket carries whichever credential this client's
auth mode says, the same way ws() does. The
media does not: it is UDP between this process and the device, and it
is secured by DTLS-SRTP rather than by TLS.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
audio
|
bool
|
Ask for the host's audio alongside the video. The device
needs a capture device for it, which
|
False
|
orientation
|
int
|
Rotate the video, |
0
|
ice_servers
|
Sequence[str] | None
|
STUN or TURN URLs to gather candidates through.
|
None
|
frame_buffer
|
int
|
How many decoded frames to hold per track before the oldest is dropped. Live video wants this small. |
_FRAME_BUFFER
|
keepalive_interval
|
float
|
Seconds between Janus session keepalives. Janus drops a session silent for sixty. |
_KEEPALIVE_INTERVAL
|
open_timeout
|
float | None
|
Timeout for opening the connection and for each individual Janus message (defaults to the client timeout). |
None
|
close_timeout
|
float | None
|
Timeout for closing the connection (defaults to the client timeout). |
None
|
negotiate_timeout
|
float
|
Seconds to allow the whole negotiation, from the session being created to the peer connection coming up. |
_NEGOTIATE_TIMEOUT
|
ping_interval
|
float | None
|
Seconds between websockets' own keepalive pings
on the signalling socket, |
_WS_PING_INTERVAL
|
ping_timeout
|
float | None
|
Seconds to wait for a keepalive pong before
declaring the signalling link dead, |
_WS_PING_TIMEOUT
|
Returns:
| Type | Description |
|---|---|
WebRTCSession
|
A WebRTCSession async context manager. It inherits this client's verify_ssl, proxy configuration and follow_redirects. |
Raises:
| Type | Description |
|---|---|
ConfigurationError
|
If this client has been closed, or the URL it
was built with has no usable scheme. The missing |
Source code in src/aiopikvm/_client.py
1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 | |
aclose()
async
¶
Close the client and release resources.
An HTTP client built here is closed; one handed in as http_client is left alone, since the caller owns it. Either way this client lets go of it and will not serve another request: the alternative is an object that keeps working after the block that owned it ended, which is only ever a bug waiting to be found somewhere else.
Calling this more than once does nothing the second time.
Source code in src/aiopikvm/_client.py
AuthMode = Literal['headers', 'basic', 'cookie']
¶
Which credential PiKVM sends.
kvmd tries four sources in a fixed order — the X-KVMD-* headers, the
auth_token cookie, HTTP Basic, then the unix socket peer — and the first
one present decides the request. It never falls through to the next after
a wrong password, so sending more than one credential is not a fallback: it
picks the earlier one and hides the rest.
"headers"
X-KVMD-User and X-KVMD-Passwd. kvmd's own web UI and this client
have always sent these, and they are the default here.
"basic"
Authorization: Basic. The same credentials at the same cost — kvmd
runs the auth plugin either way — spelled the way Redfish tooling and
ordinary HTTP clients expect. kvmd splits the decoded pair on the first
:, so a password containing one cannot be sent this way.
"cookie"
A session token, obtained by logging in once. kvmd looks it up in a
table it holds in memory instead of calling the auth plugin, so it does
not run PAM or read htpasswd on every request, and its log gets one
authorization line per session rather than one per call. That is the
mode for anything that polls.
VerifyTypes = bool | str | ssl.SSLContext
¶
What verify_ssl accepts, mirroring httpx.
True
Verify against the system trust store.
False
Verify nothing. The default, because PiKVM ships a self-signed
certificate and refusing it out of the box would make the client
unusable on an untouched device.
str
Path to a CA bundle, or to a directory of hashed certificates. This is
the one for a PiKVM re-issued a certificate from a private CA.
ssl.SSLContext
Used as it is, for anything the two above cannot express.
CertTypes = str | tuple[str, str] | tuple[str, str, str]
¶
A client certificate: a combined PEM, or (cert, key), or
(cert, key, password). Mirrors httpx.
TOTP
¶
The current code for a shared secret, recomputed on every call.
Pass one to PiKVM as totp and the code is worked
out per request rather than frozen at construction::
from aiopikvm import PiKVM, TOTP
async with PiKVM(url, passwd="secret", totp=TOTP(secret)) as kvm:
...
Any zero-argument callable returning a string works there too; this one is for the ordinary case where the secret is what is on hand.
Attributes:
| Name | Type | Description |
|---|---|---|
digits |
Length of the code. |
|
interval |
Seconds each code is valid for. |
Source code in src/aiopikvm/_totp.py
__init__(secret, *, digits=DEFAULT_DIGITS, interval=DEFAULT_INTERVAL)
¶
Prepare a generator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
secret
|
str
|
The shared secret, base32 as |
required |
digits
|
int
|
Length of the code. kvmd reads six. |
DEFAULT_DIGITS
|
interval
|
int
|
Seconds per step. kvmd uses thirty. |
DEFAULT_INTERVAL
|
Raises:
| Type | Description |
|---|---|
ConfigurationError
|
If the secret is not base32, or digits or interval is not positive. |
Source code in src/aiopikvm/_totp.py
__call__()
¶
at(timestamp)
¶
Return the code for a point in time.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
timestamp
|
float
|
Unix time the code should be valid at. |
required |
Returns:
| Type | Description |
|---|---|
str
|
The code, zero-padded to digits. |