-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #605 from flairNLP/add-dainik-bhaskar
Add indian publisher `Bhaskar`
- Loading branch information
Showing
6 changed files
with
103 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import datetime | ||
import re | ||
from typing import List, Optional, Pattern | ||
|
||
from lxml.etree import XPath | ||
|
||
from fundus.parser import ArticleBody, BaseParser, ParserProxy, attribute | ||
from fundus.parser.utility import ( | ||
extract_article_body_with_selector, | ||
generic_author_parsing, | ||
generic_date_parsing, | ||
generic_topic_parsing, | ||
) | ||
|
||
|
||
class BhaskarParser(ParserProxy): | ||
class V1(BaseParser): | ||
_paragraph_selector = XPath("//article //p | //article //*[@style='border-bottom:none'] //li") | ||
|
||
_topic_bloat_pattern: Pattern[str] = re.compile(r"news", flags=re.IGNORECASE) | ||
|
||
@attribute | ||
def body(self) -> ArticleBody: | ||
return extract_article_body_with_selector( | ||
doc=self.precomputed.doc, | ||
paragraph_selector=self._paragraph_selector, | ||
) | ||
|
||
@attribute | ||
def publishing_date(self) -> Optional[datetime.datetime]: | ||
return generic_date_parsing(self.precomputed.ld.bf_search("datePublished")) | ||
|
||
@attribute | ||
def authors(self) -> List[str]: | ||
return generic_author_parsing(self.precomputed.ld.bf_search("author")) | ||
|
||
@attribute | ||
def title(self) -> Optional[str]: | ||
return self.precomputed.ld.bf_search("headline") | ||
|
||
@attribute | ||
def topics(self) -> List[str]: | ||
return [ | ||
topic | ||
for topic in generic_topic_parsing(self.precomputed.ld.bf_search("keywords")) | ||
if not re.search(self._topic_bloat_pattern, topic) | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"V1": { | ||
"authors": [ | ||
"दैनिक भास्कर" | ||
], | ||
"body": { | ||
"summary": [], | ||
"sections": [ | ||
{ | ||
"headline": [], | ||
"paragraphs": [ | ||
"समस्तीपुर के बंगरा थाना क्षेत्र के रहीमाबाद गांव में 2 दिन पहले हुए मोहम्मद तबरेज के घर चोरी मामले का पुलिस ने बुधवार को खुलासा कर लिया है। पुलिस ने इस मामले में ताजपुर भेरोखड़ा गांव में छापेमारी कर चोरी का गहना आदि के साथ 2 बदमाशों को गिरफ्तार किया", | ||
"गिरफ्तार बदमाश की पहचान ताजपुर थाना क्षेत्र के भेरोखड़ा गांव निवासी विद्यानंद तिवारी का बेटा संजीत कुमार और मोहम्मद इजराइल का बेटा मोहम्मद मुराद के रूप में की गई है। दोनों बदमाशों के पास से चोरी के जेवरात बरामद किए गए हैं।", | ||
"ASP संजय पांडे ने संवाददाता सम्मेलन के दौरान जानकारी देते हुए बताया कि चोरी की घटना के बाद बंगरा थाना अध्यक्ष मनीषा कुमारी के नेतृत्व में SIT का गठन किया गया था। पुलिस ने तकनीकी और मानवीय सूचना के आधार पर भेरोखड़ा गांव में छापेमारी कर उक्त दोनों युवक को गिरफ्तार किया। उससे पूछताछ शुरू की तो इस चोरी कांड का खुलासा हो गया। पुलिस ने उसके घर से चोरी में गायब हुआ गहना और कुछ नगद राशि भी बरामद की। एसपी ने बताया कि दोनों बदमाश चोरी का गहना बेचने के फिराक में था। इसी दौरान पुलिस को भनक लग गई।", | ||
"1 सितंबर की रात हुई थी चोरी", | ||
"बता दें कि रहीमाबाद गांव निवासी मोहम्मद तबरेज 1 सितंबर को घर पर नहीं थे। इसी दौरान उनके घर में घुसकर बदमाशों ने गोदरेज का ताला काट कर एक लाख रुपए नगद के अलावा 10 लाख रुपए मूल्य से अधिक का गहना चोरी कर लिया था। चोरी की घटना के बाद पीड़ित परिवार द्वारा प्राथमिकी दर्ज कराई गई थी। प्राथमिकी दर्ज होने के बाद पुलिस ने इस मामले में अनुसंधान शुरू किया था।", | ||
"ASP ने बताया कि अब गिरफ्तार दोनों बदमाश को जेल भेजा जा रहा है। छापेमारी टीम में थाना अध्यक्ष मनीषा कुमारी के अलावा अपर थाना अध्यक्ष प्रीति कुमारी, दरोगा राम अवधेश सिंह आदि पुलिस पदाधिकारी साथ में थे।" | ||
] | ||
} | ||
] | ||
}, | ||
"publishing_date": "2024-09-04 16:20:35+05:30", | ||
"title": "समस्तीपुर पुलिस ने 2 बदमाशों को पकड़ा: दो दिनों के अंदर चोरी कांड का किया खुलासा, गहना भी बरामद", | ||
"topics": [ | ||
"Samastipur police caught 2 miscreants" | ||
] | ||
} | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters