Skip to content

Instantly share code, notes, and snippets.

@dgellow
Created March 3, 2014 09:53
Show Gist options
  • Save dgellow/9321707 to your computer and use it in GitHub Desktop.
Save dgellow/9321707 to your computer and use it in GitHub Desktop.
Get only tweets tagged as 'fixme'
def filter_fixme(data):
return filter(
lambda x: 'fixme' in x.get('tags', []), data
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment