sammy786 commited on
Commit
d456744
·
verified ·
1 Parent(s): 29b6ed6

Update config.py

Browse files
Files changed (1) hide show
  1. config.py +15 -0
config.py CHANGED
@@ -26,6 +26,21 @@ MCC_CATEGORIES = {
26
  "General Retail": "5999"
27
  }
28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  # Sample Users
30
  SAMPLE_USERS = ["u_alice", "u_bob", "u_charlie"]
31
 
 
26
  "General Retail": "5999"
27
  }
28
 
29
+ # Merchant options by category
30
+ MERCHANTS_BY_CATEGORY = {
31
+ "Groceries": ["Whole Foods", "Trader Joe's", "Safeway", "Kroger", "Costco"],
32
+ "Restaurants": ["Olive Garden", "Chipotle", "The Cheesecake Factory", "P.F. Chang's", "Red Lobster"],
33
+ "Fast Food": ["McDonald's", "Starbucks", "Subway", "Taco Bell", "Dunkin'"],
34
+ "Bars/Taverns": ["Local Bar", "Sports Bar", "Pub & Grill", "Wine Bar", "Brewery"],
35
+ "Gas Stations": ["Shell", "Chevron", "BP", "Exxon", "Mobil"],
36
+ "Airlines": ["United Airlines", "Delta", "American Airlines", "Southwest", "JetBlue"],
37
+ "Hotels": ["Marriott", "Hilton", "Hyatt", "Holiday Inn", "Best Western"],
38
+ "Movie Theaters": ["AMC Theatres", "Regal Cinemas", "Cinemark", "Alamo Drafthouse"],
39
+ "Entertainment": ["Concert Venue", "Theme Park", "Museum", "Sports Arena", "Comedy Club"],
40
+ "Drugstores": ["CVS", "Walgreens", "Rite Aid", "Duane Reade"],
41
+ "General Retail": ["Target", "Walmart", "Amazon", "Best Buy", "Home Depot"]
42
+ }
43
+
44
  # Sample Users
45
  SAMPLE_USERS = ["u_alice", "u_bob", "u_charlie"]
46