GitHub

This is a simple Google App Engine application written in python. The aim is to make foursquare / last.fm mashup which looks at your foursquare history and then generates a playlist of songs related to the places you've been recently.

It's using Google's webapp2 along with pyjade through jinja2, since I've come to enjoy writing jade. I'm using clifff's fork of the javascript-last.fm-api project since it has important bug fixes that haven't been merged yet.

A working installation of this application should eventually be up and running at http://how-you-been.appspot.com/.

Installing

I've tried to set up the environment for this project as in this Stack Overflow answer. After checking out the code, cd into its root directory and run:

virtualenv -p /usr/local/bin/python --no-site-packages --distribute .
pip install pyjade
pip install lxml
cd src
ln -s ../lib/python2.7/site-packages/pyjade .
ln -s ../lib/python2.7/site-packages/lxml .
dev_appserver.py .

Read the original on github.com ↗