Giter Club home page Giter Club logo

infinite-runner's Introduction

Hello There! ๐Ÿ‘‹

Profile Views OsBadge

!#/user/bin/python3
from gods_creations.living_beings.humans import Human

class Social:
    platforms = (
        "https://github.com/",
        "https://twitter.com/",
        "https://www.linkedin.com/in/"
    )
    def __init__(self, username: str) -> None:
        self.username: str = username

    def __str__(self) -> str:
        return '-\n'.join([f"{platform}{self.username}" for platform in self.platforms])

class Skills:
    def __init__(self):
        self.languages: list[str] = ["Python", "C++", "Java"]
        self.frameworks: list[str] = ["Django", "Flask", "Pandas"]
        self.databases: list[str] = ["MySQL", "MongoDB"]
        self.misc: list[str] = ["Git", "GitHub", "Ubuntu", "GCP"]

    def __str__(self) -> str:
        return f"-Languages: {', '.join(self.languages)}    \
            \n-Frameworks: {', '.join(self.frameworks)}    \
            \n-Databases: {', '.join(self.databases)}    \
            \n-Misc: {', '.join(self.misc)}"

class Location:
    def __init__(self, city: str, state: str, country: str) -> None:
        self.city: str = city
        self.state: str = state
        self.country: str = country

    def __str__(self) -> str:
        return f"{self.city}, {self.state}, {self.country}"

class Mahhheshh(Human):
    def __init__(self) -> None:
        self.name: str = "Mahesh Mulay"
        self.age: int = 20
        self.occupation: str = "Student"
        self.pronouns: str = ["He", "Him"]
        self.username: str = "Mahhheshh"
        self.location: Location = Location("Pune", "Maharashtra", "India")
        self.interests: list[str] = ["Programming", "AI/ML Enthusiast", "Open Source"]
        self.skills: Skills = Skills()
        self.social: Social = Social(self.username)
    
    def __str__(self) -> str:
            return f"""Hi there ๐Ÿ‘‹!    \
            \nI'm {self.name}, I'm {self.age} years old and I'm a {self.occupation}.    \
            \nI'm from {self.location}. \
            \nI'm interested in {', '.join(self.interests)}. \
            \nMy skills are {self.skills}.  \
            \nYou can find me on {self.social}. \
            \nHappy Coding!๐Ÿ‘จโ€๐Ÿ’ป"""

if __name__ == "__main__":
    me = Mahhheshh()
    print(me)

If you like my work, consider giving it a ๐ŸŒŸ to show some โค๏ธ!

infinite-runner's People

Contributors

mahhheshh avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.