Software Engineer
class Ines:
def __init__(self):
self.username = 'ines'
self.name = 'Ines Bouguerra'
self.code = {
'frontend': ['HTML', 'CSS', 'JavaScript', 'ReactJS', 'Vue JS', 'Boostrap'],
'backend': ['Python', 'Django', 'NodeJS'],
'database': ['PostgreSQL', 'MySQL', 'SQLite3', 'Mongo DB','Ealasticsearch'],
'devops': ['Docker', 'Jenkins', 'GitHub Actions'],
'tools': ['GIT', 'GitHub', 'Pandas', 'Jupyter notebook', 'SQLAlchemy'],
'misc': ['TDD', 'SCRUM', 'SOLID', 'GNU/Linux']
}
self.architecture = ['SPA', 'MVC', 'microservices']
def __str__(self):
return self.name
if __name__ == '__main__':
me = Ines()