I’m looking to implement a location-based recommendation service in Python (as a Django app), where based on the user’s supplied location (town, city, country), I can retrieve records for other users located within 50 miles of the user. Are there existing frameworks available to do this?
I’m looking to implement a location-based recommendation service in Python (as a Django app),
Share
I’m not entirely sure I know what you mean by framework. Getting user location is one task, getting recommendations another. Getting the location will be fairly easy (HTML5, IP lookup, etc.). The recommendation system is a more personal choice. I recommend reading this article about Amazon, then checking out the tutorial here and the github project here.