Skip to content
View JnsFerreira's full-sized avatar
🖥️
Coding the future
🖥️
Coding the future

Block or report JnsFerreira

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse
JnsFerreira/README.md

Hi there, welcome!

Open Source Love svg3

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

🔧 Technologies & Tools

Pinned Loading

  1. aws-glue-job-boilerplate aws-glue-job-boilerplate Public template

    AWS Glue Job boilerplate

    HCL

  2. pydeequ-data-quality pydeequ-data-quality Public

    A data quality module for pyspark applications using Deequ

    Python

  3. itidigital-data-challenge itidigital-data-challenge Public

    Python

  4. nubank-data-engineer-challenge nubank-data-engineer-challenge Public

    Code Challenge: Autorizador

    Python