File size: 243 Bytes
540f246
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import time
import modal
from datetime import datetime

Pricer = modal.Cls.lookup("pricer-service", "Pricer")
pricer = Pricer()
while True:
    reply = pricer.wake_up.remote()
    print(f"{datetime.now()}: {reply}")
    time.sleep(30)