GithubHelp home page GithubHelp logo

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 ❤️!

Mahhheshh's Projects

chess icon chess

A multiplayer chess platform

infinite-runner icon infinite-runner

Run4Fun is knock off version of chrome t-rex game created using Pygame library.

ivy icon ivy

The Unified AI Framework

langchain icon langchain

⚡ Building applications with LLMs through composability ⚡

lenden icon lenden

LenDen is a Django app designed to help users manage their finances by keeping track of their lending and borrowing activities. With LenDen, users can easily record all of their transactions, including loans given or received, repayments, and outstanding balances

mahhheshh icon mahhheshh

Hi I am Mahesh, And you can learn more about me from here

mentorgpt icon mentorgpt

MentorGPT is a web application that uses a chatbot to answer questions about the Python, Data Science, Machine Learning. The chatbot is connected to OpenAI's GPT-3 API. The application is built using Python, Flask and Vue.

resume-matcher icon resume-matcher

Open Source Free ATS Tool to compare Resumes with Job Descriptions and create a score to rank them.

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.