aboutsummaryrefslogtreecommitdiff
path: root/wordcount/src/spouts/words.py
diff options
context:
space:
mode:
Diffstat (limited to 'wordcount/src/spouts/words.py')
-rw-r--r--wordcount/src/spouts/words.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/wordcount/src/spouts/words.py b/wordcount/src/spouts/words.py
deleted file mode 100644
index 6ba88c1..0000000
--- a/wordcount/src/spouts/words.py
+++ /dev/null
@@ -1,14 +0,0 @@
-from itertools import cycle
-
-from streamparse import Spout
-
-
-class WordSpout(Spout):
- outputs = ["word"]
-
- def initialize(self, stormconf, context):
- self.words = cycle(["dog", "cat", "zebra", "elephant"])
-
- def next_tuple(self):
- word = next(self.words)
- self.emit([word])