Skip to content
Snippets Groups Projects
Commit 41d63958 authored by Florian Jochens's avatar Florian Jochens
Browse files

acs.py

parent 515bf16a
No related branches found
No related tags found
No related merge requests found
...@@ -76,12 +76,12 @@ class AcsFetcher(JournalFetcher): ...@@ -76,12 +76,12 @@ class AcsFetcher(JournalFetcher):
# Format in acs :"month dd, yyyy" # Format in acs :"month dd, yyyy"
published = soup_header.select(".pub-date-value")[0].text published = soup_header.select(".pub-date-value")[0].text
#re_date = re.match(r'\s*(\w+) (\d+), (\d+)\s*',published) re_date = re.match(r'\s*(\w+) (\d+), (\d+)\s*',published)
# dd.mm.yyyy # dd.mm.yyyy
#if re_date is not None: if re_date is not None:
# published = (re_date[2].zfill(2) + "." published = (re_date[2].zfill(2) + "."
# + JournalFetcher.mont_to_num[re_date[1].lower()] + JournalFetcher.mont_to_num[re_date[1].lower()]
# + "." + re_date[3]) + "." + re_date[3])
subjects = ["None Found"] subjects = ["None Found"]
subject_soup = soup_header.select('.article_header-taxonomy') subject_soup = soup_header.select('.article_header-taxonomy')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment