class Cytro():
def __init__(self):
self.name = "Dibashi John";
self.username = "Cytro";
self.location = "Lagos, Nigeria";
self.twitter = "@cytro";
self.projects = [
{
"name": "Cylip Notes",
"description": "A real-time note-taking app with labels, backgrounds, and SSE/WebSockets.",
"link": "https://cylip-notes.cytro.com.ng"
},
{
"name": "Cy Paid",
"description": "An invoicing tool for freelance gigs with multi-currency, PDFs, and tracking.",
"link": "https://cy-paid.cytro.com.ng"
}
];
def __str__(self):
return self.name
if __name__ == '__main__':
me = Cytro()