Spaces:
Running
Running
Create workforce.py
Browse files- workforce.py +17 -0
workforce.py
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
workforce = {
|
2 |
+
"total_employees": 3600,
|
3 |
+
"key_executives": [
|
4 |
+
{"name": "Harshil Mathur", "role": "CEO"},
|
5 |
+
{"name": "Shashank Kumar", "role": "CTO"}
|
6 |
+
],
|
7 |
+
"hiring_trends": "Growing",
|
8 |
+
"average_tenure": "2.5 years",
|
9 |
+
"employee_reviews": {
|
10 |
+
"glassdoor": 4.5,
|
11 |
+
"ambitionbox": 4.3
|
12 |
+
},
|
13 |
+
"company_culture": {
|
14 |
+
"description": "High-trust, high-performance culture.",
|
15 |
+
"core_values": ["Innovation", "Customer-Centricity", "Trust", "Collaboration"]
|
16 |
+
}
|
17 |
+
}
|