#!/usr/bin/env python3 class Developer: def __init__(self): self.name = "luoyanglang (ē¼å„)" self.role = "Python Full-Stack Developer & Open Source Enthusiast" self.location = "China šØš³" self.languages = ["Python", "JavaScript", "Go"] self.focus_areas = [ "AI & Machine Learning", "Telegram Bots & Automation", "Blockchain & Web3", "Open Source Projects" ] def get_featured_projects(self): return { "š”ļø AI Anti-Spam Bot": { "description": "AI-powered Telegram anti-spam bot", "tech": ["Python", "OpenAI", "Qwen", "DeepSeek"], "stars": "ā Growing", "status": "š Active", "demo": "https://t.me/xiaolangzaibot", "link": "https://github.com/luoyanglang/AI-Anti-Spam-Bot" }, "š” Telegram Monitor": { "description": "Powerful Telegram monitoring & keyword tracking tool", "tech": ["Python", "Telegram API", "Real-time"], "stars": "ā 2+", "status": "ā Stable", "link": "https://github.com/luoyanglang/TelegramMonitor" }, "š° BEpusdt Python SDK": { "description": "Official Python SDK for BEpusdt payment gateway", "tech": ["Python", "Blockchain", "USDT"], "stars": "ā 9+", "status": "ā Stable", "link": "https://github.com/luoyanglang/bepusdt-python-sdk" } } def say_hi(self): print("š Thanks for dropping by! Feel free to explore my projects š") print("\nš Featured Projects:") for name, info in self.get_featured_projects().items(): print(f"\n {name}") print(f" š {info['description']}") print(f" š ļø Tech: {', '.join(info['tech'])}") print(f" {info['stars']} | {info['status']}") if 'demo' in info: print(f" šÆ Demo: {info['demo']}") print(f" š {info['link']}") me = Developer() me.say_hi()
š Featured Projects
š”ļø AI Anti-Spam BotAI-powered Telegram anti-spam bot with intelligent detection Features:
Try it: @xiaolangzaibot |
š” Telegram MonitorPowerful Telegram monitoring & keyword tracking tool Features:
Perfect for: Group admins & community managers |
š° BEpusdt Python SDKOfficial Python SDK for BEpusdt payment gateway Features:
|
šÆ More ProjectsExplore more of my work: Areas of Interest:
|
š» Tech Stack
š GitHub Stats
š GitHub Trophies
š Contribution Graph
šÆ Current Focus
current_goals = { "š Building": "AI-powered tools for Telegram ecosystem", "š Learning": "Advanced AI/ML techniques and LLM applications", "š¤ Contributing": "Open source projects in Python & AI space", "š” Exploring": "Web3 and blockchain payment solutions", "š§ Maintaining": "Telegram monitoring & automation tools" }