Пример #1
0
 def get_date (info):
     return convert_date(
         info.cssselect('#greyBox')[0].text_content().split(',')[1].split('and')[0]
     )
Пример #2
0
 def get_date (el):
     return convert_date(P4News.get_posted(el)[1])
Пример #3
0
 def get_date (info):
     return convert_date(
         QuietusNews.get_subline_content(info)[1]
     )
Пример #4
0
 def get_date (info):
     return convert_date(
         info.cssselect('.content .byline .date')[0].text
     )
Пример #5
0
 def get_date(el):
     return convert_date(P4News.get_posted(el)[1])
Пример #6
0
 def get_pubdate (info):
     return convert_date(
         info.cssselect('.hreview .byline .date')[0].text
     )
Пример #7
0
 def get_date (el):
     return convert_date(
         el.cssselect('.postmetadata')[0].text_content().split('|')[0]
     )
Пример #8
0
 def get_date(info):
     return convert_date(info.cssselect('.content .byline .date')[0].text)
Пример #9
0
 def get_date(info):
     return convert_date(QuietusNews.get_subline_content(info)[1])
Пример #10
0
 def get_date(info):
     return convert_date(DustedReviews.handle_topblock(info, 3))
Пример #11
0
 def get_date(el):
     return convert_date(
         el.cssselect('.postInfo .pageTitleR')[0].text_content())
Пример #12
0
 def get_date (info):
     return convert_date(DustedReviews.handle_topblock(info, 3))
Пример #13
0
 def get_pubdate(info):
     return convert_date(info.cssselect('.hreview .byline .date')[0].text)
Пример #14
0
 def get_releasedate(info):
     return convert_date(
         info.cssselect('.hreview .release_header .release_details')[0].text_content()\
             .strip().split()[-1]
     )
Пример #15
0
 def get_date(info):
     return convert_date(info.find('div')[0].text.split(';')[1])
Пример #16
0
 def get_date(info):
     return convert_date(
         info.cssselect('#greyBox')[0].text_content().split(',')[1].split(
             'and')[0])
Пример #17
0
 def get_releasedate (info):
     return convert_date(
         info.cssselect('.hreview .release_header .release_details')[0].text_content()\
             .strip().split()[-1]
     )
Пример #18
0
 def get_date(el):
     return convert_date(
         el.cssselect('.postmetadata')[0].text_content().split('|')[0])
Пример #19
0
 def get_date(el):
     return convert_date(el.cssselect(".postInfo .pageTitleR")[0].text_content())
Пример #20
0
 def get_date (info):
     return convert_date(info.find('div')[0].text.split(';')[1])