from dataclasses import dataclass
@dataclass
class AboutMe:
name: str = "Amritava Kole"
email: str = "[email protected]"
linkedin: str = "https://www.linkedin.com/in/amritava-kole-521bb0229/"
website: str = "https://awmie.github.io/aboutme/"
projects: list = ("Discord AI music Bot", "Chain of Though Project - ChatGroq", "Arcadia Esports", "Haven't listed all yet")
skills: list = (
"Python", "JavaScript", "TypeScript", "C++", "HTML5", "CSS3", "PHP", "TailwindCSS", "Three.js",
"MongoDB", "MySQL", "Node.js", "NPM", "Django", "Flask", "TensorFlow", "Keras", "SciPy", "NumPy",
"Pandas", "Google Cloud", "Heroku", "Vercel", "Anaconda", "Docker", "Linux",
"Adobe After Effects", "Adobe Premiere Pro", "Adobe XD", "Affinity Designer", "Canva"
)
def __str__(self):
return f"π {self.name}\nπ§ {self.email}\nπ {self.linkedin}\nπ {self.website}\n" + \
"\nπ Projects:\n" + "\n".join(f" - {p}" for p in self.projects) + \
"\n\nβ‘ Skills & Tech Stack:\n" + ", ".join(self.skills)
if __name__ == "__main__":
print(AboutMe())
equality is just a fantasy
Computers never cease to surprise me.
-
21:09
(UTC +05:30) - https://awmie.vercel.app
Highlights
- Pro
Pinned Loading
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.