Skip to content

Instantly share code, notes, and snippets.

@shaisachs
Created July 15, 2016 20:17
Show Gist options
  • Save shaisachs/1e5072e25c1626d8e803185392788c2e to your computer and use it in GitHub Desktop.
Save shaisachs/1e5072e25c1626d8e803185392788c2e to your computer and use it in GitHub Desktop.
Find meetup groups of interest in a local area
# make sure to clone https://github.com/shaisachs/python-api-client
apikey=asdf # get key from https://secure.meetup.com/meetup_api/key/
for z in 20005 02143 ; do
for t in ".net" "c#" azure ; do
echo "$t within 5 miles of $z"
python python-api-client/findGroups.py --apikey=$apikey --radius=5 --zip=$z --text="$t"
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment