class Collaboration:
def __init__(self):
self.interests = [
"๐ค Telegram bot development",
"๐ API integration & automation",
"๐ผ CRM platformalar",
"๐ SaaS loyihalar",
"๐ Startup g'oyalari"
]
def contact_me(self):
if self.interested_in_collaboration():
return "Telegram'ga yozing: @IbrohimBultakov"
else:
return "Portfolio'ni ko'rib chiqganingiz uchun rahmat!"
def stack_match(self, your_stack):
my_stack = {"Python", "FastAPI", "Django", "PostgreSQL", "Telegram"}
return bool(my_stack.intersection(your_stack))
collab = Collaboration()
print(collab.contact_me())"print('Hello World') - hammasi shu yerdan boshlandi!" ๐

