Abhishek Pathak | About
01
class Abhishek:
02
··
03
··
def  __init__(self):
04
····
self.name = 'Abhishek Pathak'
05
····
self.dob_timestamp = 916787400
06
····
self.email = '[email protected]'
07
··
08
··
def work_experience(self):
09
····
return [
11
········
{'2022-now' : 'Junior Python Developer at Planet-Odoo'  },
12
····
]
13
··
14
··
def education(self):
15
····
return [
16
········
{range(2017, 2022) : 'Thakur College Of Engineering and Technology - B.E. Certification'  },
17
········
{range(2014, 2017) : 'Shree T.P Bhatia College of Science - HSC Certification from Computer Science' },
18
····
]
19
··
21
··
def skills(self):
22
····
return [
23
········
'Python',
24
········
'HTML/CSS/JS',
25
········
'Bootstrap',
26
········
'API',
27
········
'WebSockets',
28
········
'MySQL/PostgreSQL/ORM',
29
········
'AWS/GCP',
30
········
,
31
··
]
32
··