Skip to content
View Mouad-scriptz's full-sized avatar
πŸ™€
h
πŸ™€
h
Block or Report

Block or report Mouad-scriptz

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
Mouad-scriptz/README.md
class Me:
    def __init__(self):
        self.name = "Mouad"
        self.discord = "mouad.0"
        self.telegram = "@mouadscriptz"
        self.projects_in_bound = ["HCaptcha Solver (UD)"]

    def present(self):
        print("πŸŒŸπŸš€ Welcome to my Profile! πŸš€πŸŒŸ")
        print("\n - Information - ")
        print(f"Name: {self.name}")
        print(f"Discord: {self.discord}")
        print(f"Telegram: {self.telegram}")
        print("Projects:")
        for idx, project in enumerate(self.projects_in_bound, start=1):
            print(f"  {idx}. {project}")

me = Me()
me.present()

Pinned

  1. Discord-Account-CreatorPY Discord-Account-CreatorPY Public

    The revive of discord token generators with latest discord patches using tls client

    Python 64 11