aboutsummaryrefslogtreecommitdiff
path: root/deprecated/produce_output.py
diff options
context:
space:
mode:
Diffstat (limited to 'deprecated/produce_output.py')
-rwxr-xr-xdeprecated/produce_output.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/deprecated/produce_output.py b/deprecated/produce_output.py
new file mode 100755
index 00000000..46512c49
--- /dev/null
+++ b/deprecated/produce_output.py
@@ -0,0 +1,25 @@
+#!/usr/bin/env python2
+#
+# Copyright 2010 Google Inc. All Rights Reserved.
+"""This simulates a real job by producing a lot of output."""
+
+from __future__ import print_function
+
+__author__ = 'asharif@google.com (Ahmad Sharif)'
+
+import time
+
+
+def Main():
+ """The main function."""
+
+ for j in range(10):
+ for i in range(10000):
+ print(str(j) + 'The quick brown fox jumped over the lazy dog.' + str(i))
+ time.sleep(60)
+
+ return 0
+
+
+if __name__ == '__main__':
+ Main()