- MS Excel + VBA (Advanced)
- SQL + Data Modeling (Advanced)
- Power BI (Intermediate)
- Power Query (Advanced)
- BI Concepts
- Construction and Maintenance of Dashboards
- ETL (Intermediate)
- Python (Intermediate)
- Cloud Computing
#!/usr/bin/python
# -*- coding: utf-8 -*-
class sidekick:
def __init__(self):
self.name = "Marco Cruz"
self.role = "Consultant"
self.language_spoken = ["pt_BR"]
def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
me = sidekick()
me.say_hi()
from __future__ import annotations
import json
from dataclasses import asdict, dataclass
@dataclass
class Arsenal:
languages: tuple[str, ...] = ("Python", "R", "VBA", "DAX", "PHP")
databases: tuple[str, ...] = ("SQLite", "PostgreSQL", "MySQL", "SQL Server", "Oracle")
ongoing : tuple[str, ...] = ("API Rest", "GCP", "Big Query")
def jsonify(self) -> str:
return json.dumps(asdict(self), indent=4)
arsenal = Arsenal()
print(arsenal.jsonify())