nrk_no_crawler
This file contains routines to crawl nrk.no containing saami text.
NrkSmeCrawler
Collect Northern Saami pages from nrk.no.
Attributes:
Name | Type | Description |
---|---|---|
language_guesser |
text_cat.Classifier
|
guess language from a given string |
goaldir |
str
|
the directory where the working copy of the corpus is |
corpus_adder |
adder.AddToCorpus
|
the working horse, adds urls to the corpus |
tags |
dict of str to str
|
numerical tags that point to a specific topic on nrk.no |
invalid_links |
set of str
|
all links containing 'gammelsystem' |
counter |
collections.defaultdict of int
|
collect interesting statistics, such number of links visited and fetched links within a tag |
fetched_links |
set of str
|
links to articles that have already been fetched |
authors |
set of str
|
authors of articles |
Source code in /home/anders/projects/CorpusTools/corpustools/nrk_no_crawler.py
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 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 |
|
__init__()
Initialise the NrkSmeCrawler class.
Source code in /home/anders/projects/CorpusTools/corpustools/nrk_no_crawler.py
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 |
|
add_metadata(path)
Get metadata from the nrk.no article.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path |
str
|
path to the nrk.no article |
required |
Source code in /home/anders/projects/CorpusTools/corpustools/nrk_no_crawler.py
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 |
|
add_nrk_article(href)
Copy an article to the working copy.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
href |
str
|
a url to an nrk article. |
required |
Source code in /home/anders/projects/CorpusTools/corpustools/nrk_no_crawler.py
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 |
|
crawl_authors()
Search for authors on nrk.no.
Not all articles have are represented under the tags found, so a search on author names is also done.
Source code in /home/anders/projects/CorpusTools/corpustools/nrk_no_crawler.py
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
|
crawl_existing_tags()
Crawl all tags found in nrk.no documents.
Source code in /home/anders/projects/CorpusTools/corpustools/nrk_no_crawler.py
282 283 284 285 286 |
|
crawl_oanehaccat()
Crawl short news, provided by a json dict.
This feed only contains Northern Sámi articles.
Source code in /home/anders/projects/CorpusTools/corpustools/nrk_no_crawler.py
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 |
|
crawl_site()
Fetch Northern Saami pages from nrk.no.
Source code in /home/anders/projects/CorpusTools/corpustools/nrk_no_crawler.py
267 268 269 270 271 272 273 |
|
crawl_tag(tag, tagname)
Look for articles in nrk.no tags.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tag |
str
|
an internal nrk.no tag |
required |
Source code in /home/anders/projects/CorpusTools/corpustools/nrk_no_crawler.py
234 235 236 237 238 239 240 241 242 243 244 245 246 247 |
|
find_nrk_files()
Find all nrk.no files.
Source code in /home/anders/projects/CorpusTools/corpustools/nrk_no_crawler.py
275 276 277 278 279 280 |
|
get_fetched_links(path)
staticmethod
Find fetched links.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path |
str
|
path to the directory where nrk articles are found. |
required |
Returns:
Type | Description |
---|---|
set[str]
|
Set of strings, where the strings are ids to the article. |
Source code in /home/anders/projects/CorpusTools/corpustools/nrk_no_crawler.py
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 |
|
get_search_page(search_link)
staticmethod
Get search pages, containing links to author search.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
search_link |
str
|
query string to nrk.no |
required |
Returns:
Type | Description |
---|---|
dict
|
dict containing search results from search |
Source code in /home/anders/projects/CorpusTools/corpustools/nrk_no_crawler.py
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 |
|
get_tag_page_trees(tag)
Fetch topic pages containing links to articles.
By using the page_links_template, one can fetch quantity
number of
links to articles within tag
at a time.
Attributes:
Name | Type | Description |
---|---|---|
page_links_template |
a url to a specific topic in nrk.no. |
|
quantity |
int
|
the number of links to fetch a time |
limit |
int
|
max number of links that one tries to fetch |
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tag |
str
|
a numerical tag, pointing to a specific topic on nrk.no |
required |
Yields:
Type | Description |
---|---|
lxml.html.HtmlElement
|
a parsed html document. |
Source code in /home/anders/projects/CorpusTools/corpustools/nrk_no_crawler.py
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 |
|
guess_lang(address)
Guess the language of the address element.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
address |
html.Element
|
An element where interesting text is found |
required |
Returns:
Type | Description |
---|---|
str
|
str containing the language of the text |
Source code in /home/anders/projects/CorpusTools/corpustools/nrk_no_crawler.py
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
|
handle_search_hits(hits)
Decide whether articles found in search results should be saved.
Source code in /home/anders/projects/CorpusTools/corpustools/nrk_no_crawler.py
310 311 312 313 314 315 316 317 318 319 320 321 |
|
interesting_links(tag)
Find interesting pages inside a topic.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tag |
str
|
a numerical tag pointing to a specific topic. |
required |
Yields:
Type | Description |
---|---|
str
|
a url to an nrk.no article |
Source code in /home/anders/projects/CorpusTools/corpustools/nrk_no_crawler.py
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
|
pick_tags(path)
staticmethod
Find tags in an nrk.no article.
Tags potientially contain more Northern Sámi articles.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path |
str
|
path to an nrk.no article |
required |
Yields:
Type | Description |
---|---|
tuple[str, str]
|
a numerical tag, used internally by nrk.no to point to a specific topic and a short description of the topic. |
Source code in /home/anders/projects/CorpusTools/corpustools/nrk_no_crawler.py
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
|
report()
Print a report on what was found.
Source code in /home/anders/projects/CorpusTools/corpustools/nrk_no_crawler.py
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 |
|
valid_authors(article)
staticmethod
Find authors with the correct roles.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
article |
etree.Element
|
The parsed html document. |
required |
Yields:
Type | Description |
---|---|
tuple[str, ...]
|
Authors |
Source code in /home/anders/projects/CorpusTools/corpustools/nrk_no_crawler.py
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 |
|