-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstory.py
43 lines (31 loc) · 1.12 KB
/
story.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Filename: story.py
# import into another file by using "from story import Story"
#=========================================
#= Story Class =
#=========================================
class Story():
#===================================================
#= Variables =
#===================================================
__title = None
__author = None
__date = None
__url = None
#==========================================================
#= Public Functions =
#==========================================================
def __init__(self, title, author, date, url):
self.__title = title
self.__author = author
self.__date = date
self.__url = url
def getTitle(self):
return self.__title
def getAuthor(self):
return self.__author
def getDate(self):
return self.__date
def getURL(self):
return self.__url
def getAll(self):
return [self.__title, self.__author, self.__date, self.__url]