Spaces:
Sleeping
Sleeping
File size: 234 Bytes
5fdb69e |
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) |