Skip to content

Instantly share code, notes, and snippets.

View tiefpunkt's full-sized avatar

Severin Schols tiefpunkt

View GitHub Profile
@tiefpunkt
tiefpunkt / export_foursquare_checkins.py
Last active October 3, 2016 19:44 — forked from dlo/export_foursquare_checkins.py
Download all your Foursquare checkins with Python.
# pip install requests
import requests
import json
url_template = 'https://api.foursquare.com/v2/users/self/checkins?limit=250&oauth_token={}&v=20131026&offset={}'
# If you navigate to https://developer.foursquare.com/docs/explore, Foursquare
# will generate an OAuth token for you automatically. Cut and paste that token
# below.
oauth_token = ""