Skip to content

Instantly share code, notes, and snippets.

View drustam's full-sized avatar

Didi Rustam drustam

View GitHub Profile
@rm77
rm77 / course
Created May 28, 2015 07:33
model for virtual knowledge market
class Author:
def __init__(self,author_id,author_name):
self.author_id = author_id
self.author_name = author_name
def get_id(self):
return self.author_id
def get_author_name(self):
return self.author_name