summaryrefslogtreecommitdiff
path: root/hadoop/cacheArchive/mapper.py
blob: a7dd9f4bb46911f9d8a31f1091acf1e392f65900 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python2

import sys

sys.path.append('.')
import my_module, other_module
from my_module import mod_a
from my_module import mod_b
from other_module import other

for line in sys.stdin:
  mod_a.bla(line)
  mod_b.blubb(line)
  other.foo(line)