Software Enginner from Bharati Vidyapeeth College Of Engineering![]()
Software Engineer at Verto
#!/usr/bin/python
# -*- coding: utf-8 -*-
class SoftwareEngineer:
def __init__(self):
self.name = "Divyansh Agarwal"
self.role = "Software Engineer"
self.company = "Verto (YC W19), ex-TCS"
self.languages = ["Go", "Python", "Java", "JavaScript", "TypeScript", "SQL", "HTML", "CSS"]
self.tools = [
"React", "Redux", "Node.js", "FastAPI", "Django", "GraphQL", "Matillion",
"Snowflake", "AWS", "Redshift", "Styled-Components", "Docker", "WebRTC"
]
self.architecture = ["Microservices", "Event-driven", "Serverless", "Distributed Systems"]
def say_hi(self):
print("Thanks for dropping by! Hope you find some of my work interesting.")
# Run the script
me = SoftwareEngineer()
me.say_hi()





