blob: 1e00fcf87764257c1c18b0f5b098c5a536c1218e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import sys
from threading import Thread
from window import PixDisplay
from immich import ImmichConnector
if __name__ == "__main__":
immichConnector = ImmichConnector("http://192.168.1.13", "m5nqOoBc4uhAba21gZdCP3z8D3JT4GPxDXL2psd52EA")
pd = PixDisplay()
t1 = Thread(target=immichConnector.idle, daemon=True, args=(pd,))
t1.start()
pd.main()
|