Hey! My name is Diego EnrÃquez, I speak Spanish (Native), English (Advanced), Italian (Intermediate) languages at different levels, I've been working as an IT specialist since 2018, working from IT support to software development using Python, JS, PHP, SQL and some of their frameworks. In my free time I like:
|
|
|
|
|
|
class Diegomca98:
def __init__(self):
self._first_name = "Diego Alberto"
self._last_name = "EnrÃquez RodrÃguez"
self._spoken_languages = {
'Spanish': 'Native',
'English': 'Advanced - C1',
'Italian': 'Intermediate - A2'
}
self._schooling = {
'Information Technologies': ['Degree', 'CUCEA', 'Jan/2017-May/2023'],
'Data Science and Machine Learning': ['Bootcamp', '4Geeks Academy', 'Nov/2023'],
'Associate Cloud Engineer': ['Certification', 'Google', 'Dec/2021'],
}
self._roles = [
'CloudOps Engineer',
'Infrastructure Engineer',
'Backend Developer',
'DB Engineer',
'DB Designer'
]
self._qualifications = {
'Hard Skills': [
'Python',
'Django',
'Jupyter Notebooks',
'VSCode',
'Pandas',
'Matplotlib',
'Seaborn',
'Web Scraping',
'File Manipulation',
'Scikit-Learn',
'TensorFlow',
'Natural Languague Processing Toolkit',
'SQL',
'APIs',
'Terraform',
'AWS',
'GCP',
'Kubernetes',
'Cloud Shell',
'Git/GitHub',
'Git Codespaces',
'Linux',
'Jenkins'
],
'Soft Skills': [
'Creativity',
'Discipline',
'Critical Thinking',
'Adaptability',
'Problem Solving',
'Communication',
'Teamwork',
'Confidence',
'Active Listening',
'Emotional Intelligence'
]
}
def presentation(self):
print(f'Hey! My name is {self._first_name} {self._last_name}, I speak {len(self._spoken_languages)} languages at different levels, I\'ve been working as an IT specialist since 2018, working from IT support to software development using Python, JS, PHP, SQL and some of their frameworks.')
def get_qualifications(self):
print('\n')
print('---------------------------------------------------')
print('------------------- Hard Skills -------------------')
print('---------------------------------------------------')
for hskill in self._qualifications['Hard Skills']:
print('|---->', hskill)
print('\n')
print('---------------------------------------------------')
print('------------------- Soft Skills -------------------')
print('---------------------------------------------------')
for sskill in self._qualifications['Soft Skills']:
print('|---->', sskill)
def get_certifications(self):
print('####################################')
print('########## Certifications ##########')
print('####################################')
for cert in self._schooling:
if self._schooling[cert][2] == '':
string_concat = 'to be obtained'
else:
string_concat = f'achived on {self._schooling[cert][2]}'
if self._schooling[cert][0].lower() == 'certification':
print(f'|----> {self._schooling[cert][1]} {cert.title()} {string_concat}')
def set_certifications(self, cert_info):
self._schooling[cert_info[0]] = ['Certification', cert_info[1], cert_info[2]]
tbo_certification = ['Solutions Architect Associate', 'AWS', '']
me = Diegomca98()
me.set_certifications(tbo_certification)
print('\n')
me.get_qualifications()
print('\n')
me.get_certifications()
print('\n')
me.presentation()