Permalink
Switch branches/tags
Nothing to show
Find file
Fetching contributors…
Cannot retrieve contributors at this time
19 lines (11 sloc) 330 Bytes
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import logging
logger = logging.getLogger('GeocodingTweets')
bad_locations = ['spain', 'nowhere']
def bad_location(location):
location = location.lower()
for bad_location in bad_locations:
if (bad_location in location):
return True
return False