class SoftwareEngineer:
def __init__(self):
self.technologies = {
"backend": {
"Python": ["discord.py", "flask-restful", "requests", "pytorch", "tensorflow", "mysql", "google-client-api"],
"Java": ["OpenCV", "mysql", "postgresql"]
},
"mobileApp": {
native: ["iOS Development", "tvOS Development", "watchOS Development", "visionOS Development", "Linux-ROS"]
},
"desktopApp": {
native: ["macOS Development", "Linux"]
},
"devOps": ["AWS", "Azure", "Docker", "GCP", "git", "gradle", "Maven", "Slack", "TeamCity"],
"databases": ["MySQL", "PostgreSQL", "SQLite"],
"misc": ["ffmpeg", "OpenCV"]
}
self.languages = ["Python", "Swift", "Java", "C++", "HTML", "CSS", "JavaScript"]
self.tools = ["Xcode", "VSCode", "Docker", "DataGrip"]
self.architecture = ["Single page applications", "event-driven", "design system pattern"]
def hello(self):
print("Hello, I hope you enjoy what you see!")
print("Please, let me know if you have any questions, comments, or feedback. :)")
me = SoftwareEngineer()
me.hello()