Create worker.py

pull/46254/head
Sabbir Ahmed Shameem 2024-05-07 22:03:49 +06:00 committed by GitHub
parent 916440f247
commit 38d9c268a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
#!/usr/bin/env python
# Just prints standard out and sleeps for 10 seconds.
import sys
import time
print("Processing " + sys.stdin.readlines()[0])
time.sleep(10)