119 """Parse the text written in green.
122 * "{authors} - {journal}, {year} - {publisher}"
123 * "{authors} - {year} - {publisher}"
124 * "{authors} - {publisher}"
126 if text
is None or text ==
"":
127 return None,
None,
None,
None
129 s_text = text.split(
' - ')
130 authors = s_text[0].split(
', ')
131 publisher = s_text[-1]
133 return authors,
None, publisher,
None
137 journal_year = s_text[1].split(
', ')
139 if len(journal_year) > 1:
140 journal =
', '.join(journal_year[0:-1])
146 year = journal_year[-1]
148 publishedDate = datetime.strptime(year.strip(),
'%Y')
151 return authors, journal, publisher, publishedDate