ALIZ — VSCode Mode
ALIZ
ALIZ-dir/src/experience.py
1# Work Experience
2# Professional work history following PEP 8
3
4class Experience:
5 """Professional work history with impact metrics."""
6
7 def __init__(self):
8 self.current_role = {
9 "company": "Jeevee Pvt. Ltd.",
10 "role": "Software Engineer",
11 "period": "Apr 2024 – Present",
12 "location": "Kathmandu, Nepal"
13 }
14
15 self.impact = [
16 {"metric": "+40%", "label": "Availability Boost"},
17 {"metric": "+60%", "label": "Accuracy Improvement"},
18 {"metric": "10+", "label": "Payment Gateways"},
19 {"metric": "+30%", "label": "Faster Page Loads"},
20 {"metric": "-25%", "label": "Lower Response"}
21 ]
22
23 self.highlights = [
24 "Real-time on-demand ordering → +40% availability",
25 "Agent-based recommendation for better engagement",
26 "Nationwide POS platform with thousands of SKUs",
27 "Payment Integration (AMEX, 10+ gateways)",
28 "Quickee 10-min delivery backend"
29 ]
30
31 self.tech_stack = [
32 "Python", "FastAPI", "AWS",
33 "Redis", "PostgreSQL", "RabbitMQ",
34 "Go", "Odoo"
35 ]
36
37 self.previous_role = {
38 "company": "Gokyo Labs",
39 "role": "Software Engineer",
40 "period": "Jan 2022 – Apr 2024"
41 }
42
43 def get_experience(self):
44 """Return experience data as dictionary."""
45 return {
46 "current": self.current_role,
47 "previous": self.previous_role
48 }
0↓ 0↑
0
0
Ln 1, Col 1
UTF-8
Python 3.12