Skip to content
View ImSafone's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report ImSafone

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
ImSafone/README.md

Hi, I'm Safone | Profile Views

​
import json
from dataclasses import asdict, dataclass


@dataclass
class Stack:
    languages   : tuple[str, ...] = ("Python", "Bash", "HTML", "CSS")
    misc        : tuple[str, ...] = ("Docker", "Linux", "FastAPI")
    ongoing     : tuple[str, ...] = ("Django", "Java", "JavaScript")

    def serialize(self):
        return json.dumps(asdict(self), indent=4)


stack = Stack()
print(stack.serialize())
print("Hola! Welcome To Safone's World !! 😎")
​

Popular repositories Loading

  1. ImSafone ImSafone Public

    Config files for my GitHub profile.

  2. ImSafone.github.io ImSafone.github.io Public

  3. SafoneAPI SafoneAPI Public

    Forked from AsmSafone/SafoneAPI

    Asynchronous Python Wrapper For SafoneAPI

    Python

  4. Paste Paste Public

    A rich, simple and minimal pastebin service.

    1