#!/usr/bin/python
# -*- coding: utf-8 -*-
from dataclasses import dataclass
@dataclass
class DataEngineer:
"""Makes data pipelines and do magic"""
name: str = "Jonas Ferreira"
role: str = "Data Engineer"
location: str = "Brazil"
knowledge_base: list = [
"Data Engineering",
"Machine Learning",
"Cloud Platforms"
]
def __post_init__(self):
self.knowledge_base.insert(0, "Clean Code")
def say_hello(self):
print(f"""Hey, whats up? My name is {self.name} and i live in {self.location}.
Nowadays i am working as a {role} and recently I am focusing on {self.knowledge_base[0]}
and {self.knowledge_base[2]} for my personal and professional growth.""")
me = DataEngineer()
me.say_hello()
🖥️
Coding the future
Machines take me by surprise with great frequency
-
Banco Itaú
- São Paulo
- https://www.linkedin.com/in/jonaseaferreira/
Pinned Loading
-
-
pydeequ-data-quality
pydeequ-data-quality PublicA data quality module for pyspark applications using Deequ
Python
-
-
nubank-data-engineer-challenge
nubank-data-engineer-challenge PublicCode Challenge: Autorizador
Python
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.