Welcome to my GitHub profile! I'm Fulvio, a Software Engineer. I work with ETL pipeline development and big data, using a variety of technologies to ensure data quality and performance.
#!/usr/bin/python3
class Me:
def __init__(self):
self.name = "Fulvio"
self.code = ["ECL", "Python", "C++"]
self.skills = ["Data Engineering", "Data Analysis", "Data Quality Assurance"]
def say_hello(self):
print("Hello there! =)")
if __name__ == "__main__":
me = Me()
me.say_hello()