-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package_versions.txt
executable file
·1681 lines (1681 loc) · 143 KB
/
package_versions.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
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
NAME VERSION TYPE
Simple Launcher 1.1.0.14 dotnet (+11 duplicates)
accuweather 3.0.0 python
acme 2.11.0 python
adax 0.4.0 python
adax-local 0.1.5 python
adb-shell 0.4.4 python
adext 0.4.3 python
adguardhome 0.7.0 python
advantage-air 0.4.4 python
aemet-opendata 0.5.4 python
aenum 3.1.15 python
afsapi 0.2.7 python
agent-py 0.0.24 python
aio-geojson-client 0.20 python
aio-geojson-generic-client 0.4 python
aio-geojson-geonetnz-quakes 0.16 python
aio-geojson-geonetnz-volcano 0.9 python
aio-geojson-nsw-rfs-incidents 0.7 python
aio-geojson-usgs-earthquakes 0.3 python
aio-georss-client 0.13 python
aio-georss-gdacs 0.10 python
aioairq 0.3.2 python
aioairzone 0.9.5 python
aioairzone-cloud 0.6.10 python
aioambient 2024.8.0 python
aioapcaccess 0.4.2 python
aioaquacell 0.2.0 python
aioaseko 1.0.0 python
aioasuswrt 1.4.0 python
aioautomower 2024.10.3 python
aioazuredevops 2.2.1 python
aiobafi6 0.9.0 python
aiobotocore 2.13.1 python
aiocache 0.12.3 python
aiocoap 0.4.11 python
aiocomelit 0.9.1 python
aioconsole 0.8.1 python
aiodhcpwatcher 1.0.2 python
aiodiscover 2.1.0 python
aiodns 3.2.0 python
aiodukeenergy 0.2.2 python
aioeafm 0.1.2 python
aioeagle 1.1.0 python
aioecowitt 2024.2.1 python
aioelectricitymaps 0.4.0 python
aioemonitor 1.0.5 python
aioesphomeapi 27.0.1 python
aiofile 3.9.0 python
aiofiles 24.1.0 python
aioflo 2021.11.0 python
aioftp 0.21.3 python
aiogithubapi 24.6.0 python
aioguardian 2022.7.0 python
aiohappyeyeballs 2.4.3 python
aioharmony 0.2.10 python
aiohasupervisor 0.2.1 python
aiohomekit 3.2.6 python
aiohttp 3.10.11 python
aiohttp-cors 0.7.0 python
aiohttp-fast-zlib 0.1.1 python
aiohttp-retry 2.9.1 python
aiohttp-socks 0.9.0 python
aiohttp-sse-client2 0.3.0 python
aiohue 4.7.3 python
aioimaplib 1.1.0 python
aioitertools 0.12.0 python
aiokafka 0.10.0 python
aiokef 0.2.16 python
aiolifx 1.1.1 python
aiolifx-effects 0.3.2 python
aiolifx-themes 0.5.5 python
aiolimiter 1.1.0 python
aiolivisi 0.0.19 python
aiolookin 1.0.0 python
aiolyric 2.0.1 python
aiomealie 0.9.3 python
aiomodernforms 0.1.8 python
aiomqtt 2.0.1 python
aiomusiccast 0.14.8 python
aionanoleaf 0.2.1 python
aionotion 2024.3.0 python
aionut 4.3.3 python
aiooncue 0.3.7 python
aioopenexchangerates 0.6.8 python
aiooui 0.1.7 python
aiopegelonline 0.0.10 python
aiopulse 0.4.6 python
aiopurpleair 2022.12.1 python
aiopvapi 3.1.1 python
aiopvpc 4.2.2 python
aiopyarr 23.4.0 python
aioqsw 0.4.1 python
aioraven 0.7.0 python
aiorecollect 2023.9.0 python
aioresponses 0.7.7 python
aioridwell 2024.1.0 python
aiortsp 1.4.0 python
aioruckus 0.42 python
aiorun 2024.8.1 python
aiorussound 4.0.5 python
aioruuvigateway 0.1.0 python
aiosenz 1.0.0 python
aioserial 1.3.0 python
aioshelly 12.0.1 python
aioshutil 1.5 python
aiosignal 1.3.1 python
aioskybell 22.7.0 python
aioslimproto 3.0.0 python
aiosmtpd 1.4.6 python
aiosolaredge 0.2.0 python
aiosomecomfort 0.0.25 python
aiosqlite 0.20.0 python
aiosteamist 1.0.0 python
aiostreammagic 2.8.5 python
aioswitcher 4.4.0 python
aiosyncthing 0.5.1 python
aiotankerkoenig 0.4.2 python
aiotractive 0.6.0 python
aiounifi 80 python
aiovlc 0.5.1 python
aiovodafone 0.6.1 python
aiowaqi 3.1.0 python
aiowatttime 0.1.1 python
aiowebostv 0.4.2 python
aiowithings 3.1.3 python
aioymaps 1.2.5 python
aiozoneinfo 0.2.1 python
airgradient 0.9.1 python
airly 1.1.0 python
airthings-ble 0.9.2 python
airthings-cloud 0.2.0 python
airtouch4pyapi 1.0.5 python
airtouch5py 0.2.10 python
alarmdecoder 1.13.11 python
alpha-vantage 2.3.1 python
alpine-baselayout 3.6.5-r0 apk
alpine-baselayout-data 3.6.5-r0 apk
alpine-keys 2.4-r1 apk
alpine-release 3.20.3-r0 apk
alsa-lib 1.2.11-r0 apk
amberelectric 1.1.1 python
amcrest 1.9.8 python
android-backup 0.2.0 python
androidtv 0.0.73 python
androidtvremote2 0.1.2 python
anel-pwrctrl-homeassistant 0.0.1.dev2 python
anova-wifi 0.17.0 python
anthemav 1.4.1 python
anthropic 0.31.2 python
anyio 4.6.2.post1 python
aom-libs 3.9.1-r0 apk
apischema 0.19.0 python
apk-tools 2.14.4-r0 apk
appdirs 1.4.4 python
apple-weatherkit 1.1.3 python
apprise 1.9.0 python
aprslib 0.7.2 python
apsystems-ez1 2.2.1 python
aqipy-atmotech 0.1.5 python
aqualogic 2.6 python
aranet4 2.4.0 python
arcam-fmj 1.5.2 python
argcomplete 3.5.1 python
arris-tg2492lg 2.2.0 python
arrow 1.3.0 python
asgiref 3.8.1 python
asmog 0.0.6 python
asn1 2.7.1 python
asn1crypto 1.5.1 python
astral 2.2 python
async-interrupt 1.2.0 python
async-modbus 0.2.1 python
async-timeout 4.0.3 python
async-upnp-client 0.41.0 python
asyncarve 0.1.1 python
asyncclick 8.1.7.2 python
asyncinotify 4.0.2 python
asyncio-dgram 2.2.0 python
asyncio-throttle 1.0.2 python
asyncpysupla 0.0.5 python
asyncsleepiq 1.5.2 python
asyncssh 2.18.0 python
asyncstdlib 3.13.0 python
asynctest 0.13.0 python
atomicwrites-homeassistant 1.4.1 python
atpublic 5.0 python
attr 0.3.2 python
attrs 24.2.0 python
auroranoaa 0.0.5 python
aurorapy 0.2.7 python
autarco 3.1.0 python
authlib 1.3.2 python
autocommand 2.2.2 python
automower-ble 0.2.0 python
avahi-libs 0.8-r17 apk
awesomeversion 24.6.0 python
aws-request-signer 1.2.0 python
awscrt 0.21.1 python
awsiotsdk 1.22.0 python
axis 63 python
ayla-iot-unofficial 1.4.3 python
azure-core 1.32.0 python
azure-eventhub 5.11.1 python
azure-identity 1.19.0 python
azure-kusto-data 4.5.1 python
azure-kusto-ingest 4.5.1 python
azure-servicebus 7.10.0 python
azure-storage-blob 12.24.0 python
azure-storage-queue 12.12.0 python
babel 2.15.0 python
backoff 2.2.1 python
baidu-aip 1.6.6.0 python
base36 0.1.1 python
bash 5.2.26-r0 apk
batinfo 0.4.2 python
bcrypt 4.2.0 python
beautifulsoup4 4.12.3 python
bellows 0.42.0 python
bidict 0.23.1 python
bimmer-connected 0.16.4 python
bind-libs 9.18.27-r0 apk
bind-tools 9.18.27-r0 apk
bitarray 2.9.3 python
bitstring 4.2.3 python
bitstruct 8.19.0 python
bizkaibus 0.1.1 python
bleach 6.2.0 python
bleak 0.22.3 python
bleak-esphome 1.1.0 python
bleak-retry-connector 3.6.0 python
blebox-uniapi 2.5.0 python
blinker 1.9.0 python
blinkpy 0.23.0 python
blockchain 1.4.4 python
bluecurrent-api 1.2.3 python
bluemaestro-ble 0.2.3 python
bluetooth-adapters 0.20.0 python
bluetooth-auto-recovery 1.4.2 python
bluetooth-data-tools 1.20.0 python
bluetooth-sensor-state-data 1.7.1 python
bluez 5.76-r0 apk
bluez-deprecated 5.76-r0 apk
bluez-libs 5.76-r0 apk
blurhash 1.1.4 python
bond-async 0.2.1 python
boschshcpy 0.2.91 python
boto3 1.34.131 python
botocore 1.34.131 python
bring-api 0.9.1 python
broadlink 0.19.0 python
brother 4.3.1 python
brotli 1.1.0 python
brotli-libs 1.1.0-r2 apk
brottsplatskartan 1.0.5 python
brunt 1.2.0 python
bs4 0.0.2 python
bt-proximity 0.2.1 python
bthome-ble 3.9.1 python
bthomehub5-devicelist 0.1.1 python
btsmarthub-devicelist 0.2.3 python
btsocket 0.3.0 python
buienradar 1.0.6 python
busybox 1.36.1-r29 apk
busybox-binsh 1.36.1-r29 apk
bx-py-utils 106 python
c-ares 1.33.1-r0 apk
ca-certificates 20240705-r0 apk
ca-certificates-bundle 20240705-r0 apk
cached-ipaddress 0.8.0 python
cachetools 5.5.0 python
caio 0.9.17 python
caldav 1.3.9 python
casttube 0.2.1 python
catatonit 0.2.0-r0 apk
cbor2 5.6.5 python
certifi 2024.8.30 python
cffi 1.17.1 python
cfgv 3.4.0 python
chacha20poly1305 0.0.3 python
chacha20poly1305-reuseable 0.13.2 python
charset-normalizer 3.2.0 python
ciscomobilityexpress 0.3.9 python
ciso8601 2.3.1 python
cjson 1.7.18-r0 apk
clearpasspy 1.0.2 python
click 8.1.7 python
click-log 0.4.0 python
click-plugins 1.1.1 python
clx-sdk-xms 1.0.0 python
codecov 2.1.13 python
coinbase 2.1.0 python
coinbase-advanced-py 1.2.2 python
colorama 0.4.6 python
coloredlogs 15.0.1 python
colorlog 6.8.2 python
colorthief 0.2.1 python
colorzero 2.0 python
colour 0.1.5 python
commentjson 0.9.0 python
commonmark 0.9.1 python
concord232 0.15.1 python
config 0.5.1 python
confuse 3.3-r4 apk
connect-box 0.3.1 python
connio 0.2.0 python
construct 2.10.68 python
construct-typing 0.6.2 python
convertertools 0.5.0 python
coreutils 9.5-r1 apk
coreutils-env 9.5-r1 apk
coreutils-fmt 9.5-r1 apk
coreutils-sha512sum 9.5-r1 apk
coverage 7.6.7 python
crc 4.3.0 python
crccheck 1.3.0 python
crcmod 1.7 python
croniter 2.0.2 python
crownstone-cloud 1.4.11 python
crownstone-core 3.2.1 python
crownstone-sse 2.0.5 python
crownstone-uart 2.1.0 python
cryptography 43.0.1 python
cssselect 1.2.0 python
cups-libs 2.4.9-r1 apk
curl 8.9.1-r2 apk
dacite 1.8.1 python
dataclasses-json 0.6.7 python
datadog 0.15.0 python
datapoint 0.9.9 python
dateparser 1.2.0 python
dbus 1.14.10-r1 apk
dbus-daemon-launch-helper 1.14.10-r1 apk
dbus-fast 2.24.3 python
dbus-libs 1.14.10-r1 apk
debugpy 1.8.6 python
decorator 5.1.1 python
deebot-client 8.4.0 python
deepdiff 6.7.1 python
deepmerge 2.0 python
defusedxml 0.7.1 python
deluge-client 1.10.2 python
demetriek 0.4.0 python
demjson3 3.0.6 python
denonavr 1.0.0 python
deprecated 1.2.15 python
devialet 1.4.5 python
devolo-home-control-api 0.18.3 python
devolo-plc-api 1.4.1 python
dicttoxml 1.7.16 python
dicttoxml2 2.1.0 python
dio-chacon-wifi-api 1.2.1 python
directv 0.4.0 python
discogs-client 2.3.0 python
discovery30303 0.3.2 python
distlib 0.3.9 python
distro 1.9.0 python
dlms-cosem 21.3.2 python
dnspython 2.7.0 python
docopt 0.6.2 python
doorbirdpy 3.0.8 python
dpkt 1.9.8 python
dremel3dpy 2.1.1 python
dropmqttapi 1.0.3 python
dsmr-parser 1.4.2 python
dtlssocket 0.1.19 python
dwdwfsapi 1.0.7 python
dweepy 0.3.0 python
dynalite-devices 0.1.47 python
dynalite-panel 0.0.4 python
eagle100 0.1.1 python
easyenergy 2.1.2 python
ebusdpy 0.0.17 python
ecdsa 0.19.0 python
ecoaliface 0.4.0 python
electrickiwi-api 0.8.5 python
elementpath 4.6.0 python
elevenlabs 1.6.1 python
elgato 5.1.2 python
eliqonline 1.2.2 python
elkm1-lib 2.2.10 python
elmax-api 0.0.5 python
elvia 0.1.0 python
emoji 2.8.0 python
emulated-roku 0.3.0 python
energyflip-client 0.2.2 python
energyzero 2.1.1 python
enocean 0.50.0 python
enturclient 0.2.4 python
enum-compat 0.0.3 python
env-canada 0.7.2 python
envoy-utils 0.0.1 python
envs 1.4 python
ephem 4.1.6 python
epicstore-api 0.1.7 python
epion 0.0.3 python
epson-projector 0.5.1 python
eq3btsmart 1.2.0 python
esphome-dashboard-api 1.2.3 python
esprima 4.0.1 python
eternalegypt 0.0.16 python
eudev-libs 3.2.14-r2 apk
eufylife-ble-client 0.1.8 python
events 0.4 python
evohome-async 0.4.20 python
evolutionhttp 0.0.18 python
exceptiongroup 1.2.2 python
faadelays 2023.9.1 python
fake-useragent 1.5.1 python
fastdotcom 0.0.3 python
faust-cchardet 2.1.19 python
feedparser 6.0.11 python
ffmpeg 6.1.1-r8 apk
ffmpeg-libavcodec 6.1.1-r8 apk
ffmpeg-libavdevice 6.1.1-r8 apk
ffmpeg-libavfilter 6.1.1-r8 apk
ffmpeg-libavformat 6.1.1-r8 apk
ffmpeg-libavutil 6.1.1-r8 apk
ffmpeg-libpostproc 6.1.1-r8 apk
ffmpeg-libswresample 6.1.1-r8 apk
ffmpeg-libswscale 6.1.1-r8 apk
file-read-backwards 2.0.0 python
filelock 3.16.1 python
filetype 1.2.0 python
findutils 4.9.0-r5 apk
fints 3.1.0 python
firebase-messaging 0.4.4 python
fitbit 0.3.1 python
fivem-api 0.1.2 python
fixerio 1.0.0a0 python
fjaraskupan 2.3.0 python
flask 3.1.0 python
flexcache 0.3 python
flexit-bacnet 2.2.1 python
flexparser 0.4 python
flipr-api 1.6.1 python
flux-led 1.0.4 python
fnv-hash-fast 1.0.2 python
fnvhash 0.1.0 python
fontconfig 2.15.0-r1 apk
foobot-async 1.0.0 python
forecast-solar 3.1.0 python
fortiosapi 1.0.5 python
freebox-api 1.1.0 python
freenub 0.1.0 python
freesms 0.2.0 python
freetype 2.13.2-r0 apk
fribidi 1.0.15-r0 apk
fritzconnection 1.14.0 python
frozendict 2.4.6 python
frozenlist 1.5.0 python
fsspec 2024.10.0 python
fstrm 0.6.1-r4 apk
ftfy 6.3.1 python
future 1.0.0 python
fyta-cli 0.6.10 python
gardena-bluetooth 1.4.4 python
gassist-text 0.0.11 python
gcal-sync 6.2.0 python
gdbm 1.23-r1 apk
geniushub-client 0.7.1 python
geocachingapi 0.2.1 python
geographiclib 2.0 python
geojson 2.5.0 python
geopy 2.3.0 python
georss-client 0.17 python
georss-generic-client 0.8 python
georss-ign-sismologia-client 0.8 python
georss-qld-bushfire-alert-client 0.8 python
getmac 0.9.4 python
giflib 5.2.2-r0 apk
gios 5.0.0 python
git 2.45.2-r0 apk
git-init-template 2.45.2-r0 apk
gitterpy 0.1.7 python
glances-api 0.8.0 python
glib 2.80.5-r0 apk
glslang-libs 1.3.261.1-r0 apk
gmp 6.3.0-r1 apk
gnutls 3.8.5-r0 apk
go2rtc-client 0.1.1 python
goalzero 0.2.2 python
goodwe 0.3.6 python
google-ai-generativelanguage 0.6.10 python
google-api-core 2.23.0 python
google-api-python-client 2.71.0 python
google-auth 2.36.0 python
google-auth-httplib2 0.2.0 python
google-auth-oauthlib 1.2.1 python
google-cloud-pubsub 2.23.0 python
google-cloud-speech 2.27.0 python
google-cloud-texttospeech 2.17.2 python
google-generativeai 0.8.2 python
google-nest-sdm 6.1.5 python
google-photos-library-api 0.12.1 python
googleapis-common-protos 1.66.0 python
googlemaps 2.5.1 python
goslide-api 0.7.0 python
gotailwind 0.2.4 python
govee-ble 0.40.0 python
govee-local-api 1.5.3 python
gpiod 2.2.2 python
gpiozero 1.6.2 python
gps3 0.33.3 python
gql 3.5.0 python
graphite2 1.3.14-r6 apk
graphql-core 3.2.5 python
graphviz 0.20.3 python
greeclimate 2.1.0 python
greeneye-monitor 3.0.3 python
greenlet 3.1.1 python
greenwavereality 0.5.1 python
gridnet 5.0.1 python
growattserver 1.5.0 python
grpc-google-iam-v1 0.13.1 python
grpcio 1.66.2 python
grpcio-reflection 1.66.2 python
grpcio-status 1.66.2 python
gspread 5.5.0 python
gstreamer-player 1.1.2 python
gtts 2.2.4 python
guppy3 3.1.4.post1 python
h11 0.14.0 python
h2 4.1.0 python
ha-av 10.1.1 python
ha-ffmpeg 3.2.2 python
ha-iotawattpy 0.1.2 python
ha-philipsjs 3.2.2 python
habitipy 0.3.3 python
habluetooth 3.6.0 python
hap-python 4.9.2 python
harfbuzz 8.5.0-r0 apk
hass-nabucasa 0.83.0 python
hass-splunk 0.1.1 python
hassil 1.7.4 python
hatasmota 0.9.2 python
haversine 2.8.1 python
hdate 0.10.9 python
heatmiserv3 2.0.3 python
here-routing 1.0.1 python
here-transit 1.2.1 python
hikvision 0.4 python
hkavr 0.0.5 python
hko 0.3.2 python
hlk-sw16 0.0.9 python
hole 0.8.0 python
holidays 0.60 python
home-assistant-bluetooth 1.13.0 python
home-assistant-chip-clusters 2024.9.0 python
home-assistant-frontend 20241106.2 python
home-assistant-intents 2024.11.6 python
homeassistant 2024.11.2 python
homeconnect 0.8.0 python
homematicip 1.1.2 python
horimote 0.4.1 python
hpack 4.0.0 python
html-table-parser-python3 0.1.5 python
html5lib 1.1 python (+1 duplicate)
httmock 1.4.0 python
http-ece 1.1.0 python
httpcore 1.0.5 python
httplib2 0.20.4 python
httpsig 1.3.0 python
httpx 0.27.2 python
huawei-lte-api 1.9.3 python
huggingface-hub 0.26.2 python
humanfriendly 10.0 python
huum 0.7.10 python
hwdata-pci 0.382-r0 apk
hwdata-usb 0.382-r0 apk
hyperframe 6.0.1 python
hyperion-py 0.7.5 python
iammeter 0.2.1 python
iaqualink 0.5.0 python
ibeacon-ble 1.2.0 python
ibmiotf 0.3.4 python
ical 8.2.0 python
icalendar 6.0.1 python
icmplib 3.0 python
idasen 0.12.0 python
idasen-ha 2.6.2 python
identify 2.6.2 python
idna 3.10 python
ifaddr 0.2.0 python
iglo 1.2.7 python
ihcsdk 2.8.5 python
ijson 3.3.0 python
imageio 2.36.0 python
imath 3.1.12-r0 apk
imgw-pib 1.0.6 python
imlib2 1.12.2-r0 apk
importlib-resources 6.4.5 python
imutils 0.5.4 python
incomfort-client 0.6.3.post1 python
incremental 24.7.2 python
inflect 7.4.0 python
inflection 0.5.1 python
influxdb 5.3.1 python
influxdb-client 1.24.0 python
iniconfig 2.0.0 python
inkbird-ble 0.5.8 python
inquirerpy 0.3.4 python
insteon-frontend-home-assistant 0.5.0 python
intelhex 2.3.0 python
intellifire4py 4.1.9 python
iottycloud 0.2.1 python
iperf3 0.1.11 python
iperf3 3.17.1-r0 apk
iputils 20240117-r0 apk
iputils-arping 20240117-r0 apk
iputils-clockdiff 20240117-r0 apk
iputils-ping 20240117-r0 apk
iputils-tracepath 20240117-r0 apk
isal 1.7.1 python
ismartgate 5.0.1 python
iso4217 1.12.20240625 python
iso8601 2.1.0 python
isodate 0.7.2 python
israel-rail-api 0.1.2 python
itsdangerous 2.2.0 python
jaraco-abode 6.2.1 python
jaraco-classes 3.4.0 python
jaraco-collections 5.1.0 python
jaraco-context 6.0.1 python
jaraco-email 3.1.1 python
jaraco-functools 4.1.0 python
jaraco-itertools 6.4.1 python
jaraco-logging 3.3.0 python
jaraco-net 10.2.1 python
jaraco-text 4.0.0 python
jeepney 0.8.0 python
jellyfin-apiclient-python 1.9.2 python
jinja2 3.1.4 python
jiter 0.7.1 python
jmespath 1.0.1 python
josepy 1.14.0 python
jq 1.7.1-r0 apk
js2py 0.74 python
json-c 0.17-r0 apk
jsonpath 0.82.2 python
jsonpickle 4.0.0 python
jsonrpc-async 2.1.2 python
jsonrpc-base 2.2.0 python
jsonrpc-websocket 3.1.5 python
jsonschema 4.23.0 python
jsonschema-specifications 2024.10.1 python
justbackoff 0.6.0 python
justnimbus 0.7.4 python
kaiterra-async-client 1.0.0 python
kasa-crypt 0.4.4 python
keba-kecontact 1.1.0 python
kegtron-ble 0.4.0 python
keyring 25.5.0 python
keyrings-alt 5.0.2 python
keyutils-libs 1.6.3-r3 apk
kiwiki-client 0.1.1 python
knocki 0.3.5 python
knx-frontend 2024.9.10.221729 python
konnected 1.2.0 python
krakenex 2.2.2 python
krb5-conf 1.0-r2 apk
krb5-libs 1.21.3-r0 apk
lacrosse-view 1.0.3 python
lakeside 0.13 python
lame-libs 3.100-r5 apk
lark-parser 0.7.8 python
laundrify-aio 1.2.2 python
lcms2 2.16-r0 apk
lcn-frontend 0.2.1 python
ld2410-ble 0.1.1 python
leaone-ble 0.1.0 python
led-ble 1.0.2 python
lektricowifi 0.0.43 python
libSvtAv1Enc 2.0.0-r1 apk
libacl 2.3.2-r0 apk
libao 1.2.2-r2 apk
libass 0.17.2-r0 apk
libasyncns 0.8-r3 apk
libattr 2.5.2-r0 apk
libblkid 2.40.1-r1 apk
libbluray 1.3.4-r1 apk
libbsd 0.12.2-r0 apk
libbz2 1.0.8-r6 apk
libcap 2.70-r0 apk
libcap-getcap 2.70-r0 apk
libcap-setcap 2.70-r0 apk
libcap-utils 2.70-r0 apk
libcap2 2.70-r0 apk
libcom_err 1.47.0-r5 apk
libcrypto3 3.3.2-r1 apk
libcurl 8.9.1-r2 apk
libdav1d 1.4.2-r0 apk
libdovi 3.3.0-r0 apk
libdrm 2.4.120-r0 apk
libeconf 0.6.3-r0 apk
libecpg 16.4-r0 apk
libedit 20240517.3.1-r0 apk
libexpat 2.6.4-r0 apk
libffi 3.4.6-r0 apk
libflac 1.4.3-r1 apk
libftdi1 1.5-r3 apk
libgcc 13.2.1_git20240309-r0 apk
libgcrypt 1.10.3-r0 apk
libgomp 13.2.1_git20240309-r0 apk
libgpg-error 1.49-r0 apk
libgpiod 1.6.4-r3 apk
libhwy 1.0.7-r0 apk
libid3tag 0.16.2-r2 apk
libidn2 2.3.7-r0 apk
libintl 0.22.5-r0 apk
libjpeg-turbo 3.0.3-r0 apk
libjxl 0.10.2-r0 apk
libltdl 2.4.7-r3 apk
libmd 1.1.0-r0 apk
libmount 2.40.1-r1 apk
libncursesw 6.4_p20240420-r2 apk
libnsl 2.0.1-r0 apk
libogg 1.3.5-r5 apk
libopenmpt 0.7.7-r0 apk
libpanelw 6.4_p20240420-r2 apk
libpcap 1.10.4-r1 apk
libpciaccess 0.18.1-r0 apk
libplacebo 6.338.2-r1 apk
libpng 1.6.44-r0 apk
libpq 16.4-r0 apk
libproc2 4.0.4-r0 apk
libpsl 0.21.5-r1 apk
libpulse 17.0-r0 apk
libpyfoscam 1.2.2 python
libpyvivotek 0.4.0 python
librist 0.2.10-r1 apk
librouteros 3.2.0 python
libsharpyuv 1.3.2-r0 apk
libsndfile 1.2.2-r0 apk
libsodium 1.0.19-r0 apk
libsoundtouch 0.8.0 python
libsrt 1.5.3-r0 apk
libssh 0.10.6-r0 apk
libssh2 1.11.0-r2 apk
libssl3 3.3.2-r1 apk
libstdc++ 13.2.1_git20240309-r0 apk
libtasn1 4.19.0-r2 apk
libtheora 1.1.1-r18 apk
libtirpc 1.3.4-r0 apk
libtirpc-conf 1.3.4-r0 apk
libturbojpeg 3.0.3-r0 apk
libunibreak 6.1-r0 apk
libunistring 1.2-r0 apk
libusb 1.0.27-r0 apk
libuuid 2.40.1-r1 apk
libuv 1.48.0-r0 apk
libva 2.21.0-r0 apk
libvdpau 1.5-r3 apk
libverto 0.3.2-r2 apk
libvorbis 1.3.7-r2 apk
libvpx 1.14.1-r0 apk
libwebp 1.3.2-r0 apk
libwebpdemux 1.3.2-r0 apk
libwebpmux 1.3.2-r0 apk
libx11 1.8.9-r1 apk
libxau 1.0.11-r4 apk
libxcb 1.16.1-r0 apk
libxdmcp 1.1.5-r1 apk
libxext 1.3.6-r2 apk
libxfixes 6.0.1-r4 apk
libxml2 2.12.7-r0 apk
libxslt 1.1.39-r1 apk
libxv 1.0.12-r5 apk
libzbar 0.23.93-r1 apk
libzmq 4.3.5-r2 apk
lightify 1.0.7.3 python
lightwave 0.24 python
lilv-libs 0.24.24-r1 apk
limitlessled 1.1.3 python
linear-garage-door 0.2.9 python
linode-api 4.1.9b1 python
linux-pam 1.6.0-r0 apk
lmcloud 1.2.3 python
locationsharinglib 5.0.1 python
loguru 0.7.2 python
lomond 0.3.3 python
london-tube-status 0.5 python
loqedapi 2.1.10 python
lru-dict 1.3.0 python
lua5.4-libs 5.4.6-r1 apk
luftdaten 0.7.4 python
lupupy 0.3.2 python
lw12 0.9.2 python
lxml 5.3.0 python
mac-vendor-lookup 0.1.12 python
mariadb-connector-c 3.3.10-r0 apk
markdown 3.7 python
markupsafe 3.0.2 python
marshmallow 3.23.1 python
marshmallow-dataclass 8.7.1 python
mashumaro 3.14 python
mastodon-py 1.8.1 python
matrix-nio 0.25.2 python
maxcube-api 0.4.3 python
mbddns 0.1.2 python
mbedtls 3.6.2-r0 apk
mcstatus 11.1.1 python
meater-python 0.0.8 python
mechanize 0.4.10 python
medcom-ble 0.1.1 python
mediafile 0.13.0 python
melnor-bluetooth 0.0.25 python
messagebird 1.2.0 python
metar 1.11.0 python
meteoalertapi 0.3.1 python
meteocalc 1.1.0 python
meteofrance-api 1.3.0 python
mficlient 0.5.0 python
micloud 0.5 python
microbeespy 0.3.2 python
mii-tool 2.10-r3 apk
mill-local 0.3.0 python
millheater 0.11.8 python
miniaudio 1.61 python
minio 7.1.12 python
moat-ble 0.1.1 python
moehlenhoff-alpha2 1.3.1 python
monarchmoney 0.1.13 python
monzopy 1.3.2 python
mopeka-iot-ble 0.8.0 python
more-itertools 10.5.0 python
motionblinds 0.6.25 python
motionblindsble 0.1.2 python
motioneye-client 0.3.14 python
mozart-api 4.1.1.116.0 python
mpdecimal 4.0.0-r0 apk
mpg123-libs 1.32.8-r0 apk
ms-cv 0.1.1 python
msal 1.31.0 python
msal-extensions 1.2.0 python
msgpack 1.1.0 python
mt-940 4.30.0 python
mullvad-api 1.0.0 python
multidict 6.1.0 python
munch 4.0.0 python
musl 1.2.5-r0 apk
musl-utils 1.2.5-r0 apk
mutagen 1.47.0 python
mutesync 0.0.1 python
mypermobil 0.1.8 python
mypy-extensions 1.0.0 python
mysqlclient 2.2.4 python
myuplink 0.6.0 python
nad-receiver 0.3.0 python
nclib 1.0.5 python
ncurses-terminfo-base 6.4_p20240420-r2 apk
ndms2-client 0.1.2 python
nessclient 1.1.2 python
net-tools 2.10-r3 apk
netaddr 1.3.0 python
netcat-openbsd 1.226-r0 apk
netdata 1.1.0 python
netifaces 0.11.0 python
netmap 0.7.0.2 python
nettigo-air-monitor 3.3.0 python
nettle 3.9.1-r0 apk
neurio 0.3.1 python
nexia 2.0.8 python
nextcloudmonitor 1.5.1 python
nextcord 2.6.0 python
nextdns 3.3.0 python
nghttp2-libs 1.62.1-r0 apk
nibe 2.11.0 python
nice-go 0.3.10 python
niko-home-control 0.2.1 python
niluclient 0.1.2 python
nmap 7.95-r0 apk
noaa-coops 0.1.9 python
nodeenv 1.9.1 python
noiseprotocol 0.3.1 python
notifications-android-tv 0.1.5 python
notify-events 1.0.4 python
nsapi 3.0.5 python
nsw-fuel-api-client 1.1.0 python
nuheat 1.0.1 python
numactl 2.0.18-r0 apk
numato-gpio 0.13.0 python
numpy 1.26.4 python
nyt-games 0.4.4 python
oasatelematics 0.3 python
oathtool 2.3.2 python
oauth2client 4.1.3 python
oauthlib 3.2.2 python
objgraph 3.5.0 python
odp-amsterdam 6.0.2 python
oemthermostat 1.1.1 python
ollama 0.3.3 python
omnilogic 0.4.5 python
ondilo 0.5.0 python
onevpl-libs 2023.3.1-r2 apk
oniguruma 6.9.9-r0 apk
onvif-zeep-async 3.1.12 python
open-garage 0.2.0 python
open-meteo 0.3.1 python
openai 1.35.7 python
openerz-api 0.3.0 python
openevsewifi 1.1.2 python
openexr-libiex 3.1.13-r1 apk
openexr-libilmthread 3.1.13-r1 apk
openexr-libopenexr 3.1.13-r1 apk
openhomedevice 2.2 python
opensensemap-api 0.2.0 python
openssh-client-common 9.7_p1-r4 apk
openssh-client-default 9.7_p1-r4 apk
openssh-keygen 9.7_p1-r4 apk
openssl 3.3.2-r1 apk
openwebifpy 4.2.7 python
openwrt-luci-rpc 1.1.17 python
openwrt-ubus-rpc 0.0.2 python
opower 0.8.6 python
opus 1.5.2-r0 apk
opuslib 3.0.1 python
oralb-ble 0.17.6 python
orc 0.4.40-r0 apk
ordered-set 4.1.0 python
orjson 3.10.10 python
oru 0.1.11 python
orvibo 1.1.2 python
ourgroceries 1.5.4 python
outcome 1.3.0.post0 python
ovoenergy 2.0.0 python
oyaml 1.0 python
p11-kit 0.25.3-r0 apk
p1monitor 3.1.0 python
packaging 24.2 python
paho-mqtt 1.6.1 python
panacotta 0.2 python
panasonic-viera 0.4.2 python
pandas 2.1.4 python
paramiko 3.3.1 python
path 17.0.0 python
pathvalidate 3.2.1 python
pbr 6.1.0 python
pcre2 10.43-r0 apk
pdunehd 1.3.2 python
peco 0.0.30 python
pencompy 0.0.3 python
pescea 1.0.12 python
pexpect 4.6.0 python
pfzy 0.3.4 python
phone-modem 0.1.1 python
pianobar 2022.04.01-r1 apk
pigpio 1.78 python
pilight 0.1.1 python
pillow 10.4.0 python
pint 0.24.4 python
pip 24.1.2 python
pizzapi 0.0.6 python
pkce 1.0.3 python
platformdirs 4.3.6 python
plexapi 4.15.16 python
plexauth 0.0.6 python
plexwebsocket 0.0.14 python
pluggy 1.5.0 python
plugwise 1.4.4 python
plumbum 1.9.0 python
plumlightpad 0.0.11 python
ply 3.11 python
pmsensor 0.4 python
poolsense 0.0.8 python
portalocker 2.10.1 python
pprintpp 0.4.0 python
praw 7.5.0 python
prawcore 2.4.0 python
prayer-times-calculator-offline 1.0.3 python
pre-commit 4.0.1 python
pre-commit-package dev-1 lua-rocks
prettytable 3.12.0 python
procps-ng 4.0.4-r0 apk
progettihwsw 0.1.3 python
proliphix 0.4.1 python
prometheus-client 0.21.0 python
prompt-toolkit 3.0.48 python
propcache 0.2.0 python
proto-plus 1.25.0 python
protobuf 5.28.3 python
protobuf-c 1.5.0-r0 apk
proxmoxer 2.0.1 python
psutil 6.0.0 python
psutil-home-assistant 0.0.1 python
psychrolib 2.5.0 python
psycopg2 2.9.9 python
ptyprocess 0.7.0 python
pulseaudio-alsa 17.0-r0 apk
pulsectl 23.5.2 python
pure-pcapy3 1.0.1 python
pure-python-adb 0.3.0.dev0 python
pushbullet-py 0.11.0 python
pushover-complete 1.1.1 python
pvo 2.1.1 python
py-aosmith 1.0.10 python
py-canary 0.5.4 python
py-ccm15 0.0.9 python
py-cpuinfo 9.0.0 python
py-dormakaba-dkey 1.0.5 python