commit 398bd8160f4485f1cae625bffd42f075657617ca Author: mattbk Date: Wed Apr 5 16:28:39 2023 -0500 Init. diff --git a/app.py b/app.py new file mode 100644 index 0000000..851dcd4 --- /dev/null +++ b/app.py @@ -0,0 +1,6 @@ +from flask import Flask +from flask_restful import Resource, Api, reqparse +import pandas as pd +import ast +app = Flask(__name__) +api = Api(app) \ No newline at end of file diff --git a/locations.csv b/locations.csv new file mode 100644 index 0000000..259ec0c --- /dev/null +++ b/locations.csv @@ -0,0 +1,8 @@ +locationId,name,rating +1,Café de Flore,4.0 +2,Café Tabac,4.6 +3,Rosslyn Coffee,4.8 +4,Three Wheels Coffee,4.6 +5,Roasting Plant Coffee,4.4 +6,Distrikt coffee,4.4 +7,Westberlin,4.4 diff --git a/users.csv b/users.csv new file mode 100644 index 0000000..c770199 --- /dev/null +++ b/users.csv @@ -0,0 +1,5 @@ +userId,name,city,locations +a1b,Joe,Paris,"['0001', '0002', '0008']" +a2c,Jenny,London,"['0003', '0004']" +b1b,Jack,London,"['0003', '0005']" +b2c,Jill,Berlin,"['0006', '0007']"