I'm Jayant Sogikar, a developer with interests in Python, Infrastructure, AI/ML and Design. I enjoy writing effective code that helps a project progress while also having a keen eye on the design. You'll generally find me scratching my head and writing python scripts.
class MoreInfo:
def __init__(self):
self.name = 'Jayant Sogikar'
self.role = 'Software Engineer @ Ansible'
self.education = 'Information Science from Ramaiah Institute Of Technology'
self.code = ['Python','Swift','Java','Bash','C']
self.framework = ['Docker','Kubernetes','Puppet','Ansible']
self.db = ['MongoDB','InfluxDB','Firebase','MySQL','Oracle']
def greet(self):
print('Hey, Thanks for popping by. Hope you had a great time!')
me = MoreInfo()
me.greet()

