-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmla.py
291 lines (230 loc) · 7.38 KB
/
mla.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
from tools import *
import nulldate
#get the author and title since it's the same for almost all the things
def authorTitle(subjectName):
noAuthor = False
#rawAuthors
rawAuthors = getAuthors("mla")
if rawAuthors[0]:
#first author
rawAuthors[0] = rawAuthors[0].split()
#lastname
lastname = rawAuthors[0][-1]
authors = lastname + ", "
del rawAuthors[0][-1]
#first and middle names
for name in rawAuthors[0]:
authors += name + ' '
del rawAuthors[0]
#other authors
if rawAuthors:
if rawAuthors[0] == "et al":
authors += "et al"
ILC = "(" + lastname + " et al.)"
else:
authors += "and " + rawAuthors[0]
ILC = "(" + lastname + ", and " + rawAuthors[0].split()[-1] + ")"
else:
ILC = "(" + lastname + ")"
authors = authors[:-1]
authors += ". "
else:
noAuthor = True
authors = ""
#title
title = inp("Enter the title of the " + subjectName)
#create effective title (used for alphabetizing)
eTitle = ""
delChars = 0
for word in title.split():
if not word.lower() in ("a", "an", "the"):
eTitle += word + " "
if noAuthor:
ILC = eTitle.split()[0]
return [authors, title, eTitle, ILC]
#get publication since it's the same across many modes
def publication(subjectName, italicize=False):
name = inp("Enter the " + subjectName)
if italicize:
name = '*' + name + '*'
return name + ", "
#get the database and URL since it's also common across many modes
def databaseURL(italicize=False):
db = inp("Enter database (enter 'ndb' or 'no database' if database is missing)")
#return none since there isn't an url either if theres no database
if db == "ndb" or db == "no database":
return None
#properly italisize if required
if italicize:
db = '*' + db + "*, "
#get url
url = inp("Enter URL") + ". "
return [db, url]
#journal section
def journal():
#get the author and title
aT = authorTitle("article")
authors = aT[0]
title = "\"" + aT[1] + "\" "
eTitle = aT[2]
ILC = aT[3]
#get the journal name
journalName = publication("title of the journal", True)
#get volume and issue numbers
volume = "vol. " + inp("Enter volume number") + ', '
issue = inp("Enter issue number")
if issue:
issue = "no. " + issue + ', '
strDate = getDate("mla", ',')
#get page numbers
page = ""
pg = getPages()
if pg:
page = "pp. " + str(pg[0]) + '-' + str(pg[1]) + ". "
#get database and url
dburl = databaseURL(True)
db = ""
url = ""
if dburl:
db = dburl[0]
url = dburl[1]
#create the citation and file containing the proper citation, effective title and in line citation
citation = authors + title + journalName + volume + issue + strDate + page + db + url
if authors:
createFile("Citations/MLA", authors[:-2], [ILC, citation])
else:
createFile("Citations/MLA", eTitle[:-2], [ILC, citation])
#news article
def news():
#get the author and title
aT = authorTitle("news article")
authors = aT[0]
title = "\"" + aT[1] + "\" "
eTitle = aT[2]
ILC = aT[3]
#get publisher name
publisher = publication("publisher", True)
strDate = getDate("mla", ',')
#get url
url = inp("Enter URL") + ". "
#create the citation and file containing the proper citation, effective title and in line citation
citation = authors + title + publisher + strDate + url
if authors:
createFile("Citations/MLA", authors[:-2], [ILC, citation])
else:
createFile("Citations/MLA", eTitle[:-2], [ILC, citation])
#physically printed books
def printBook():
#get author and title
aT = authorTitle("book")
authors = aT[0]
title = '*' + aT[1] + "*. "
eTitle = aT[2]
ILC = aT[3]
#get edition number
edition = ""
while True:
edition = inp("Enter edition number (if there are any)")
if not edition:
break
try:
edition = int(edition)
if edition == 1:
edition = "1st"
break
elif edition == 2:
edition = "2nd"
break
else:
edition = str(edition) + "th"
break
except:
print ("Please enter a valid number")
if edition:
edition += " ed., "
#get publisher
publisher = publication("publisher")
strDate = getDate("mla", '.')
#create the citation and file containing the proper citation, effective title and in line citation
citation = authors + title + edition + publisher + strDate
if authors:
createFile("Citations/MLA", authors[:-2], [ILC, citation])
else:
createFile("Citations/MLA", eTitle[:-2], [ILC, citation])
#eBooks
def eBook():
#get author and title
aT = authorTitle("book")
authors = aT[0]
title = '*' + aT[1] + "*, "
eTitle = aT[2]
ILC = aT[3]
#get editors
editors = "edited by " + inp("Enter editor names") + ". "
#get publisher
publisher = publication("publisher")
strDate = getDate("mla", '.')
#get database and url
dburl = databaseURL(True)
db = ""
url = ""
if dburl:
db = dburl[0]
url = dburl[1]
#create the citation and file containing the proper citation, effective title and in line citation
citation = authors + title + editors + publisher + strDate + db + url
if authors:
createFile("Citations/MLA", authors[:-2], [ILC, citation])
else:
createFile("Citations/MLA", eTitle[:-2], [ILC, citation])
#specific chapters in books
def chapter():
#get author and title of the chapter
aT = authorTitle("chapter")
authors = aT[0]
title = '\"' + aT[1] + "\" "
eTitle = aT[2]
ILC = aT[3]
#get the book name
book = publication("name of the book", True)
#get the editors
editors = "edited by " + inp("Enter editor names") + ", "
#get the publisher
publisher = publication("publisher")
strDate = getDate("mla", '.')
#get page number
page = ""
pg = getPages()
if pg:
page = "pp. " + str(pg[0]) + '-' + str(pg[1]) + ". "
#get database and url
dburl = databaseURL(True)
db = ""
url = ""
if dburl:
db = dburl[0]
url = dburl[1]
#create the citation and file containing the proper citation, effective title and in line citation
citation = authors + title + book + editors + publisher + strDate + page + db + url
if authors:
createFile("Citations/MLA", authors[:-2], [ILC, citation])
else:
createFile("Citations/MLA", eTitle[:-2], [ILC, citation])
#web pages
def web():
#get author and title
aT = authorTitle("web page")
authors = aT[0]
title = '\"' + aT[1] + "\" "
eTitle = aT[2]
ILC = aT[3]
#get publisher
publisher = publication("publisher", True)
#get url
url = inp("Enter URL") + ". "
#create the citation and file containing the proper citation, effective title and in line citation
citation = authors + title + publisher + url
if authors:
createFile("Citations/MLA", authors[:-2], [ILC, citation])
else:
createFile("Citations/MLA", eTitle[:-2], [ILC, citation])