Skip to content
View jeffersonfragoso's full-sized avatar

Block or report jeffersonfragoso

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
jeffersonfragoso/README.md

Olá!

Bem vindo ao meu perfil do GitHub 👋

#!/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()

Ferramentas e Tecnologias

python fastapi Django flask python Insomnia ReactJs NextJs

Popular repositories Loading

  1. template-aws-SAM-deploy-stages template-aws-SAM-deploy-stages Public

    Template com configs e github workflow para deploy em vários ambientes do SAM(configurados previamente na AWS).

    Python 1

  2. python-patterns python-patterns Public

    Forked from faif/python-patterns

    A collection of design patterns/idioms in Python

    Python

  3. dispatch dispatch Public

    Forked from Netflix/dispatch

    All of the ad-hoc things you're doing to manage incidents today, done for you, and much more!

    Python

  4. fullcycle-python-catalogo-videos fullcycle-python-catalogo-videos Public

    Full Cycle 3.0 > Projeto prático - Python ( Back-end )

    Python

  5. bus-on-map bus-on-map Public

    Forked 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

  6. url_shortener url_shortener Public

    Encurtador de URL OVER

    Python