from __future__ import annotations
import json
from dataclasses import asdict, dataclass
@dataclass
class about_me:
languages: tuple[str, ...] = ("Python", "Java", "Rust", "Go")
databases: tuple[str, ...] = ("SQLite", "PostgreSQL", "DynamoDB",
"Cassandra", "DB2", "MongoDB")
technologies: tuple[str, ...] = ("Docker", "Kubernetes", "GCP",
"Git", "SQS","AWS","GitOps")
hobbies: tuple[str, ...] = ("BJJ", "Keyboards", "Gaming", "Cryptography")
def jsonify(self):
return json.dumps(asdict(self), indent=4)
jake = about_me()
print(jake.jsonify())
jbaggs62
Follow
Pinned Loading
-
ML_interview
ML_interview PublicML interview project - continue enhancements as time allows
Jupyter Notebook
-
-
-
DataBase-API-Practice
DataBase-API-Practice PublicPractice Building API routes and interacting with DB programmatically
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.