Create customer_insights.py
Browse files- customer_insights.py +13 -0
customer_insights.py
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
customer_insights = {
|
2 |
+
"customer_base": "Small and medium businesses",
|
3 |
+
"key_clients": ["Swiggy", "Zomato", "Oyo"],
|
4 |
+
"customer_reviews": {
|
5 |
+
"trustpilot": 4.6,
|
6 |
+
"google_reviews": 4.4
|
7 |
+
},
|
8 |
+
"common_feedback": {
|
9 |
+
"praises": ["Easy to use", "Great support"],
|
10 |
+
"complaints": ["High transaction fees"]
|
11 |
+
},
|
12 |
+
"nps": 72
|
13 |
+
}
|