Skip to content

Instantly share code, notes, and snippets.

@brunoripa
Created January 30, 2018 11:01
Show Gist options
  • Save brunoripa/684c9fd288fbec66d057f7dff67720f2 to your computer and use it in GitHub Desktop.
Save brunoripa/684c9fd288fbec66d057f7dff67720f2 to your computer and use it in GitHub Desktop.
class Split(apache_beam.DoFn):
def process(self, element):
country, duration, user = element.split(",")
return [{
'country': country,
'duration': float(duration),
'user': user
}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment