mirror of
https://github.com/dtomlinson91/street_group_tech_test
synced 2025-12-22 11:55:45 +00:00
71 lines
1.7 KiB
Python
71 lines
1.7 KiB
Python
"""
|
|
Daniel Tomlinson (dtomlinson@panaetius.co.uk).
|
|
|
|
Technical test for Street Group.
|
|
"""
|
|
|
|
import csv
|
|
import io
|
|
from importlib import resources
|
|
from itertools import chain, islice
|
|
|
|
import apache_beam as beam
|
|
from apache_beam.io import fileio
|
|
|
|
|
|
def csv_reader(csv_file):
|
|
return csv.reader(io.TextIOWrapper(csv_file.open()))
|
|
|
|
|
|
def slice_by_range(element, *ranges):
|
|
return chain(*(islice(element, *r) for r in ranges))
|
|
|
|
|
|
class SplitPAON(beam.DoFn):
|
|
def process(self, element):
|
|
paon_split = element[3].split(",")
|
|
|
|
if len(paon_split) == 0:
|
|
return element
|
|
elif len(paon_split) > 0:
|
|
pass
|
|
|
|
|
|
class DropEmptyColumn(bean.doFn):
|
|
def __init__(self, index):
|
|
self.index = index
|
|
|
|
def process(self, element):
|
|
column = element[self.index]
|
|
|
|
|
|
def main():
|
|
csv_data = resources.path(
|
|
"analyse_properties.data", "pp-monthly-update-new-version.csv"
|
|
)
|
|
|
|
with beam.Pipeline() as pipeline:
|
|
# Load the data
|
|
with csv_data as csv_data_file:
|
|
# https://github.com/apache/beam/blob/v2.32.0/sdks/python/apache_beam/io/fileio_test.py#L155-L170
|
|
load = (
|
|
pipeline
|
|
| fileio.MatchFiles(str(csv_data_file))
|
|
| fileio.ReadMatches()
|
|
| beam.FlatMap(csv_reader)
|
|
)
|
|
|
|
# Clean the data
|
|
clean = (
|
|
load
|
|
| "Drop unneeded columns"
|
|
>> beam.Map(lambda element: list(slice_by_range(element, (1, 4), (7, 14))))
|
|
| "Convert to Upper Case"
|
|
>> beam.Map(lambda element: [e.upper() for e in element])
|
|
| beam.Map(print)
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|