#!/usr/bin/python
# -*- coding: utf-8 -*-
from dataclasses import dataclass
from typing import List
@dataclasses(kw_only=True)
class SoftwareEngineer:
name: str
role: str
main_technologies: List[str]
def say_hi(self):
print("Obrigado por passar por aqui!!!")
me = SoftwareEngineer(
name="Jefferson Fragoso de Souza",
role="Backend Software Engineer",
main_technologies=["python", "FastApi", "Django", "Docker", "K8s", "AWS"],
)
me.say_hi()
Popular repositories Loading
-
template-aws-SAM-deploy-stages
template-aws-SAM-deploy-stages PublicTemplate com configs e github workflow para deploy em vários ambientes do SAM(configurados previamente na AWS).
Python 1
-
python-patterns
python-patterns PublicForked from faif/python-patterns
A collection of design patterns/idioms in Python
Python
-
dispatch
dispatch PublicForked from Netflix/dispatch
All of the ad-hoc things you're doing to manage incidents today, done for you, and much more!
Python
-
fullcycle-python-catalogo-videos
fullcycle-python-catalogo-videos PublicFull Cycle 3.0 > Projeto prático - Python ( Back-end )
Python
-
bus-on-map
bus-on-map PublicForked from paulovitorweb/bus-on-map
Python, Javascript e Kafka para geolocalização de veículos em tempo real usando stream de dados e Server-sent events.
Python
-
If the problem persists, check the GitHub status page or contact support.