websucker-pip/mongo/mongocwarler.py

578 lines
18 KiB
Python
Raw Normal View History

2023-03-05 14:44:49 +00:00
import pymongo
2023-04-01 18:44:37 +00:00
import pymongo.errors
2023-03-05 14:44:49 +00:00
import trafilatura
import trafilatura.feeds
import trafilatura.sitemaps
import trafilatura.spider
2023-03-10 12:01:11 +00:00
import trafilatura.utils
2023-03-16 15:06:07 +00:00
import trafilatura.external
2023-03-05 14:44:49 +00:00
import sys
2023-03-07 07:58:28 +00:00
import courlan
2023-03-11 13:14:39 +00:00
import urllib
2023-03-12 05:16:47 +00:00
from datetime import datetime
import click
2023-03-12 08:50:22 +00:00
import logging as LOGGER
import os
2023-03-16 15:06:07 +00:00
import pprint
2023-04-01 08:49:28 +00:00
import re
2023-04-03 14:37:01 +00:00
import time
import collections
import math
2023-03-05 14:44:49 +00:00
2023-03-12 08:50:22 +00:00
LANGUAGE= os.getenv("SUCKER_LANGUAGE","sk")
DOMAIN = os.getenv("SUCKER_DOMAIN","sk")
2023-04-03 14:37:01 +00:00
BATCHSIZE=os.getenv("SUCKER_BATCHSIZE",100)
2023-03-12 08:50:22 +00:00
CONNECTION=os.getenv("SUCKER_CONNECTION","mongodb://root:example@localhost:27017/")
DBNAME=os.getenv("SUCKER_DBNAME","crawler")
2023-03-11 13:14:39 +00:00
MINFILESIZE=300
2023-03-12 05:16:47 +00:00
MAXFILESIZE=10000000
MINTEXTSIZE=200
2023-04-01 04:47:12 +00:00
CHECK_PARAGRAPH_SIZE=150
TEXT_TRASH_SIZE=200
TEXT_TRASH_RATIO=0.6
2023-03-05 17:53:14 +00:00
2023-03-17 15:40:55 +00:00
def put_queue(db,channel,message):
queuecol = db["queue"]
queuecol.insert_one({"channel":channel,"message":message,"created_at":datetime.utcnow(),"started_at":None})
def reserve_queue(db,channel,message):
queuecol = db["queue"]
r = queuecol.find_one_and_delete({"channel":channel},sort={"created_at":-1})
def delete_queue(db,channel):
queuecol = db["queue"]
pass
2023-03-07 15:18:32 +00:00
def calculate_checksums(text):
2023-03-05 17:53:14 +00:00
"""
@return fingerprints of a paragraphs in text. Paragraphs are separated by a blank line
"""
checksums = []
sizes = []
hval = 0
hsz = 0
sz = 0
for c in text:
cv = ord(c)
sz += 1
if cv > 64:
hval += (hval << 3) + cv
zv = hval >> 31
hval &= 0x7fffffff
hval += zv
hsz += 1
if c == "\n" and hsz > 0:
2023-04-01 04:47:12 +00:00
if hsz > CHECK_PARAGRAPH_SIZE:
2023-03-05 17:53:14 +00:00
checksums.append(hval)
sizes.append(sz)
sz = 0
hsz = 0
2023-04-01 04:47:12 +00:00
if hsz > CHECK_PARAGRAPH_SIZE:
2023-03-05 17:53:14 +00:00
checksums.append(hval)
sizes.append(sz)
return checksums, sizes
2023-03-11 10:30:30 +00:00
def is_robot_good(link,rules):
# check robots.txt rules
2023-03-12 08:50:22 +00:00
if rules is not None and not rules.can_fetch("*", link):
2023-03-11 10:30:30 +00:00
return False
return True
def is_link_good(link):
2023-03-11 13:14:39 +00:00
r = courlan.check_url(link,strict=True,language=LANGUAGE)
2023-03-11 10:30:30 +00:00
if r is None:
return None
2023-03-17 11:30:53 +00:00
llink,lhostname = r
#print(llink,lhostname)
# hostname rules
if not lhostname.endswith(DOMAIN):
LOGGER.debug("bad hostname")
2023-03-11 10:30:30 +00:00
return None
if courlan.is_not_crawlable(llink):
2023-03-12 08:50:22 +00:00
LOGGER.debug("not crawlable")
2023-03-11 10:30:30 +00:00
return None
2023-03-11 13:14:39 +00:00
return llink
2023-03-11 10:30:30 +00:00
2023-03-08 09:56:39 +00:00
def get_link_doc(link,status="frontlink"):
r = courlan.check_url(link)
assert r is not None
2023-03-09 12:29:34 +00:00
link,host = r
2023-03-10 05:23:30 +00:00
domain = courlan.extract_domain(link)
2023-03-12 05:16:47 +00:00
return {"url":link,"host":host,"domain":domain,"status":status,"created_at":datetime.utcnow()}
2023-03-05 17:53:14 +00:00
2023-03-07 15:18:32 +00:00
2023-03-08 09:56:39 +00:00
def fetch_pages(link_batch):
2023-03-07 07:58:28 +00:00
htmls = []
2023-03-11 13:14:39 +00:00
#print(link_batch)
#print("zzzzzzzzzz")
2023-03-07 07:58:28 +00:00
for link in link_batch:
2023-03-08 09:56:39 +00:00
print("fetching:::::")
2023-03-07 15:18:32 +00:00
print(link)
2023-03-11 13:14:39 +00:00
final_link = link
2023-03-11 10:30:30 +00:00
response = trafilatura.fetch_url(link,decode=False)
2023-04-03 14:37:01 +00:00
time.sleep(2)
2023-03-11 13:14:39 +00:00
html = None
if response is not None :
good = True
if response.status != 200:
good = False
2023-03-12 08:50:22 +00:00
LOGGER.error('not a 200 response: %s for URL %s', response.status, url)
2023-03-11 13:14:39 +00:00
elif response.data is None or len(response.data) < MINFILESIZE:
2023-03-25 12:48:38 +00:00
LOGGER.error('too small/incorrect for URL %s', link)
2023-03-11 13:14:39 +00:00
good = False
# raise error instead?
elif len(response.data) > MAXFILESIZE:
good = False
2023-03-25 12:48:38 +00:00
LOGGER.error('too large: length %s for URL %s', len(response.data), link)
2023-03-11 13:14:39 +00:00
if good:
html = trafilatura.utils.decode_response(response)
final_link = response.url
if html is not None:
html, final_link = trafilatura.spider.refresh_detection(html, final_link)
# is there a meta-refresh on the page?
if final_link is None: # malformed or malicious content
html = None
htmls.append((final_link,html))
2023-03-07 15:18:32 +00:00
return htmls
2023-03-07 09:57:47 +00:00
2023-03-11 13:14:39 +00:00
def fetch_robot(base_url):
2023-03-10 12:01:11 +00:00
try:
2023-03-29 08:17:57 +00:00
rawrules = trafilatura.fetch_url("https://"+ base_url + "/robots.txt")
#print(rawrules)
rules = urllib.robotparser.RobotFileParser()
rules.parse(rawrules.split("\n"))
2023-03-14 09:59:58 +00:00
LOGGER.info('got robots')
2023-03-10 12:01:11 +00:00
except Exception as exc:
2023-03-12 08:50:22 +00:00
LOGGER.error('cannot read robots.txt: %s', exc)
2023-03-10 12:01:11 +00:00
rules = None
2023-03-29 08:17:57 +00:00
# exceptions happening here
2023-03-10 15:19:24 +00:00
return rules
2023-03-07 09:57:47 +00:00
2023-03-10 05:23:30 +00:00
def extract_pages(link_batch,responses):
2023-03-07 09:57:47 +00:00
out = []
2023-03-11 13:14:39 +00:00
for original_link,(final_link,html) in zip(link_batch,responses):
2023-03-07 09:57:47 +00:00
doc = None
2023-03-11 13:14:39 +00:00
assert original_link is not None
2023-03-07 09:57:47 +00:00
if html is not None:
2023-03-29 08:17:57 +00:00
doc = trafilatura.bare_extraction(html,url=final_link,with_metadata=True,include_formatting=False,target_language=LANGUAGE,favor_precision=True)
2023-03-12 05:16:47 +00:00
if doc is not None:
if not "text" in doc or len(doc["text"]) < MINTEXTSIZE:
# text too small
doc = None
2023-03-16 15:06:07 +00:00
2023-03-11 13:14:39 +00:00
out.append((original_link,final_link,html,doc))
2023-03-07 09:57:47 +00:00
return out
2023-03-08 09:56:39 +00:00
2023-03-17 11:30:53 +00:00
def index_pages(db,hostname,extracted_pages):
2023-03-07 09:57:47 +00:00
linkcol = db["links"]
htmlcol = db["html"]
2023-03-07 15:18:32 +00:00
contentcol = db["content"]
2023-04-01 04:47:12 +00:00
checkcol = db["check"]
2023-03-11 13:14:39 +00:00
links = []
2023-03-10 12:01:11 +00:00
for original_link,final_link,html,doc in extracted_pages:
2023-03-07 09:57:47 +00:00
state = "good"
2023-03-12 08:50:22 +00:00
link = original_link
if original_link != final_link:
2023-03-12 09:08:21 +00:00
linkcol.update_one({"url":original_link},{"$set":{"status":"redirect"}})
2023-03-12 08:50:22 +00:00
link = final_link
2023-03-07 09:57:47 +00:00
if html is None:
state = "html_error"
elif doc is None:
state = "content_error"
if doc is not None:
2023-03-14 09:59:58 +00:00
text = doc["text"]
checksums,sizes = calculate_checksums(text)
doc["text_size"] = len(text)
2023-03-07 09:57:47 +00:00
doc["paragraph_checksums"] = checksums
doc["paragraph_sizes"] = sizes
2023-03-14 09:59:58 +00:00
goodsz = sum(sizes)
2023-04-01 08:49:28 +00:00
# Not enough larger paragraphs
2023-04-01 04:47:12 +00:00
if len(text) < TEXT_TRASH_SIZE or goodsz/len(text) < TEXT_TRASH_RATIO:
2023-03-29 09:04:29 +00:00
state = "trash"
2023-04-01 08:49:28 +00:00
end_sentence_marker = re.compile("\w[\.]")
sentences = 0
for item in re.finditer(end_sentence_marker,text):
t = item.group(0)
if t[0].islower():
sentences += 1
doc["sentences"] = sentences
# check copy
if state == "good":
copysz = len(text) - goodsz
for chs,paragraph_size in zip(doc["paragraph_checksums"],doc["paragraph_sizes"]):
# index paragraph checksums
nd = checkcol.find_one({"_id":chs})
if nd is not None:
copysz += paragraph_size
2023-04-01 18:44:37 +00:00
if (copysz / len(text)) > TEXT_TRASH_RATIO:
2023-04-01 08:49:28 +00:00
state = "copy"
print(copysz)
2023-03-12 08:50:22 +00:00
if state == "good":
htdoc = get_link_doc(link,state)
htdoc["html"] = html
htdoc["html_size"] = len(html)
2023-03-14 12:54:40 +00:00
# can be revisited - upsert
del htdoc["url"]
htmlcol.update_one({"url":link},{"$set":htdoc},upsert=True)
2023-03-12 08:50:22 +00:00
doc.update(get_link_doc(link,"good"))
2023-03-10 12:01:11 +00:00
# todo extract links
print(doc)
2023-03-14 12:54:40 +00:00
del doc["url"]
contentcol.update_one({"url":link},{"$set":doc},upsert=True)
2023-04-01 08:49:28 +00:00
for chs in doc["paragraph_checksums"]:
2023-04-01 18:44:37 +00:00
try:
checkcol.insert_one({"_id":chs})
except pymongo.errors.DuplicateKeyError as err:
pass
2023-03-12 08:50:22 +00:00
linkcol.update_one({"url":original_link},{"$set":{"status":state}})
2023-03-10 15:19:24 +00:00
2023-03-11 10:30:30 +00:00
2023-03-17 11:30:53 +00:00
def extract_links(link_batch,responses,hostname,rules,default_status="frontlink"):
2023-03-11 10:30:30 +00:00
links = {}
2023-03-29 08:17:57 +00:00
badrobot = 0
2023-03-11 13:14:39 +00:00
for original_link,(final_link,html) in zip(link_batch,responses):
2023-03-11 10:30:30 +00:00
status = default_status
2023-03-12 12:53:17 +00:00
external_links = courlan.extract_links(html,final_link,external_bool=True,language=LANGUAGE)
for link in external_links:
links[link] = "frontlink"
2023-03-14 07:59:23 +00:00
internal_links = courlan.extract_links(html,final_link,external_bool=False,language=LANGUAGE)
2023-03-11 13:14:39 +00:00
#print(extracted_links)
2023-03-12 12:53:17 +00:00
for link in internal_links:
2023-03-29 08:17:57 +00:00
if not is_robot_good(link,rules):
badrobot += 1
continue
2023-03-12 12:53:17 +00:00
status = str(default_status)
2023-03-11 13:14:39 +00:00
#print(link,status)
2023-03-11 10:30:30 +00:00
links[link] = status
outlinks = []
2023-03-14 09:59:58 +00:00
badlink = 0
2023-03-11 10:30:30 +00:00
for link,status in links.items():
link = is_link_good(link)
if link is None:
2023-03-14 09:59:58 +00:00
badlink += 1
2023-03-11 10:30:30 +00:00
continue
outlinks.append((link,status))
2023-03-14 09:59:58 +00:00
print(f"{len(links)} total links, {badrobot} badrobot {badlink} badlinks")
2023-03-11 10:30:30 +00:00
return outlinks
def index_links(db,extracted_links):
linkcol=db["links"]
for link,status in extracted_links:
2023-04-03 14:37:01 +00:00
if not is_link_good(link):
continue
2023-03-11 10:30:30 +00:00
doc = get_link_doc(link,status)
2023-03-12 09:08:21 +00:00
try:
linkcol.insert_one(doc)
except pymongo.errors.DuplicateKeyError as ex:
pass
2023-03-07 09:57:47 +00:00
2023-04-03 07:39:10 +00:00
def get_link_features(link):
a, urlpath = courlan.get_host_and_path(link)
2023-04-03 14:37:01 +00:00
features = re.split("[/?&]",urlpath)
#features = re.split("[/?-_=]",urlpath)
res = []
for feature in features:
if len(feature) < 1:
continue
if feature.isdigit():
feature = "<NUM>"
res.append(feature)
if len(res) < 2:
2023-04-03 07:39:10 +00:00
return None
2023-04-03 14:37:01 +00:00
res = res[:-1]
print(res)
return res
class LinkClassifier:
def __init__(self):
self.goodcounter = collections.Counter()
self.badcounter = collections.Counter()
self.good_count = 0
self.bad_count = 0
self.alpha = 0.001
def train(self,db,hostname):
linkcol = db["links"]
res = linkcol.find({"host":hostname,"status": {"$not":{"$in":["frontlink","backlink"]}}})
testset = []
for i,item in enumerate(res):
link = item["url"]
state = item["status"]
cl = 0
if state == "good":
cl = 1
print(cl,state,link)
if i % 10 == 1:
testset.append((link,cl))
continue
features = get_link_features(link)
if features is None:
continue
lf = len(features)
if state == "good":
for feature in features:
self.good_count += 1
self.goodcounter[feature] += 1
else:
for feature in features:
self.bad_count += 1
self.badcounter[feature] += 1
self.bdictsize = len(self.badcounter)
self.gdictsize = len(self.goodcounter)
# eval
gg = 0
for l,cl in testset:
pcp = self.classify(l)
r = 0
if pcp > 0:
r = 1
if r == cl:
gg += 1
else:
print("MISS",l,cl,pcp)
print("Accuracy:")
print(len(testset))
print(gg / len(testset))
2023-04-03 07:39:10 +00:00
2023-04-03 14:37:01 +00:00
def classify(self,link):
2023-04-03 07:39:10 +00:00
features = get_link_features(link)
2023-04-03 14:37:01 +00:00
res = 0
gp = math.log(self.good_count) - math.log(self.good_count + self.bad_count)
bp = math.log(self.bad_count) - math.log(self.good_count + self.bad_count)
2023-04-03 07:39:10 +00:00
if features is None:
2023-04-03 14:37:01 +00:00
return math.exp(gp) - math.exp(bp)
gcc = math.log(self.gdictsize * self.alpha + self.good_count)
bcc = math.log(self.bdictsize * self.alpha + self.bad_count)
goodprob = 0
badprob = 0
2023-04-03 07:39:10 +00:00
for feature in features:
2023-04-03 14:37:01 +00:00
g = math.log((self.goodcounter[feature] + self.alpha)) - gcc
goodprob += g
b = math.log(self.badcounter[feature] + self.alpha) - bcc
badprob += b
print(feature,g,b)
if (goodprob + gp) > (badprob + bp):
#if goodprob > badprob:
res = 1
pa = math.exp(goodprob + gp)
pb = math.exp(badprob + bp)
return pa - pb
2023-04-03 07:39:10 +00:00
2023-03-29 08:17:57 +00:00
def get_links(db,hostname,status,batch_size):
2023-03-08 09:56:39 +00:00
linkcol = db["links"]
2023-04-03 14:37:01 +00:00
# count downloaded links
2023-04-01 18:44:37 +00:00
res = linkcol.aggregate([
2023-04-03 14:37:01 +00:00
{ "$match": { "status": {"$not":{"$in":["frontlink","backlink"]}},"host":hostname } },
{"$group":{"_id":None,
"count":{"$count":{}},
}
},
2023-04-01 18:44:37 +00:00
])
links = set()
2023-04-04 12:04:33 +00:00
out = list(res)
if len(out) == 0:
return list()
if out[0]["count"] < 200:
2023-04-03 14:37:01 +00:00
#res = linkcol.find({"status":status,"host":hostname},{"url":1},limit=batch_size)
# get random links
res = linkcol.aggregate([
{ "$match": { "status": status,"host":hostname } },
{ "$sample": { "size": batch_size } }
])
for i,doc in enumerate(res):
#print(">>>>>" + status)
#print(doc);
links.add(doc["url"])
if i >= batch_size:
break
else:
cl = LinkClassifier()
cl.train(db,hostname)
res = linkcol.aggregate([
{ "$match": { "status": status,"host":hostname } },
2023-04-04 12:04:33 +00:00
{ "$sample": { "size": batch_size * 100 } }
2023-04-03 14:37:01 +00:00
])
outlinks = []
for i,doc in enumerate(res):
#print(">>>>>" + status)
#print(doc);
link = doc["url"]
outlinks.append((doc["url"],cl.classify(link)))
outlinks = sorted(outlinks, key=lambda x: x[1],reverse=True)
links = [l[0] for l in outlinks[0:batch_size]]
# todo remove very bad links
2023-04-01 18:44:37 +00:00
return list(links)
2023-03-07 07:58:28 +00:00
2023-04-01 18:44:37 +00:00
def fetch_sitemap_links(start_link):
out = []
navigation_links = trafilatura.sitemaps.sitemap_search(start_link,target_lang=LANGUAGE)
for link in navigation_links:
out.append((link,"frontlink"))
return out
2023-03-05 14:44:49 +00:00
2023-03-17 11:30:53 +00:00
def process_links(db,hostname,status,links=[],rules=None,batch_size=BATCHSIZE):
2023-03-11 13:14:39 +00:00
#print(links)
2023-03-11 10:30:30 +00:00
responses = fetch_pages(links)
2023-03-11 13:14:39 +00:00
#print(responses)
2023-03-11 10:30:30 +00:00
extracted_pages = extract_pages(links,responses)
2023-03-11 13:14:39 +00:00
#print(extracted_pages)
2023-03-17 11:30:53 +00:00
extracted_links = extract_links(links,responses,hostname,rules,status)
2023-03-12 12:53:17 +00:00
#print(extracted_links)
2023-03-11 10:30:30 +00:00
index_links(db,extracted_links)
2023-03-17 11:30:53 +00:00
index_pages(db,hostname,extracted_pages)
2023-03-11 10:30:30 +00:00
2023-03-12 05:16:47 +00:00
2023-03-17 11:30:53 +00:00
def link_summary(db,hostname):
2023-03-12 05:16:47 +00:00
linkcol = db["links"]
2023-03-17 11:30:53 +00:00
#res = linkcol.distinct("hostname",{"hostname":hostname})
2023-03-12 08:50:22 +00:00
# count links
2023-03-12 05:16:47 +00:00
res = linkcol.aggregate([
2023-03-17 11:30:53 +00:00
{"$match":{"host":hostname}},
2023-03-12 05:16:47 +00:00
{"$group":{"_id":"$status","count":{"$sum":1}}},
])
2023-04-04 12:04:33 +00:00
badcount = 0
goodcount = 0
out = ["good","frontlink","backlink"]
info = {}
2023-03-12 05:16:47 +00:00
for item in res:
2023-04-04 12:04:33 +00:00
if item["_id"] not in out:
badcount += item["count"]
if item["_id"] == "good":
goodcount = item["count"]
info[item["_id"]] = item["count"]
good_prob = goodcount / (goodcount + badcount)
info["good_prob"] = good_prob
info["bad_documents"] = badcount
2023-03-25 13:39:36 +00:00
print(">>>Domain Content")
2023-03-12 08:50:22 +00:00
contentcol = db["content"]
res = contentcol.aggregate([
2023-03-25 13:39:36 +00:00
{"$match":{"host":hostname}},
#{"$project": {"textsum":{"$sum":"$text_size"}}}
2023-03-29 08:17:57 +00:00
{"$group":{"_id":None,
"text_size_sum":{"$sum":"$text_size"},
}
},
2023-03-12 08:50:22 +00:00
])
2023-04-04 12:04:33 +00:00
text_size = 0
2023-03-12 08:50:22 +00:00
for item in res:
2023-04-04 12:04:33 +00:00
text_size = item["text_size_sum"]
good_document_characters = text_size / goodcount
fetch_average_characters = text_size / (goodcount + badcount)
info["total_good_characters"] = text_size
info["average_good_characters"] = good_document_characters
info["average_fetch_characters"] = fetch_average_characters
domaincol = db["domain"]
print(json.dumps(info))
domaincol.update_one({"host":domain},{"$set":info},usert=True)
2023-03-12 05:16:47 +00:00
2023-04-03 07:39:10 +00:00
def domain_summary(db,hostname):
linkcol = db["links"]
#res = linkcol.distinct("hostname",{"hostname":hostname})
# count links
res = linkcol.aggregate([
{"$group":{"_id":"$hostname","text_size_sum":{"$sum":"$text_size"}}},
])
for item in res:
print(item)
2023-03-12 08:50:22 +00:00
@click.group()
def cli():
pass
@cli.command()
2023-03-12 09:08:21 +00:00
def createdb():
2023-03-12 08:50:22 +00:00
myclient = pymongo.MongoClient(CONNECTION)
db=myclient[DBNAME]
2023-03-12 05:16:47 +00:00
linkcol = db["links"]
2023-03-12 09:08:21 +00:00
linkcol.create_index("url",unique=True)
linkcol.create_index("host")
2023-03-12 05:16:47 +00:00
contentcol = db["content"]
2023-03-12 09:08:21 +00:00
contentcol.create_index("url",unique=True)
#contentcol.create_index({"paragraph_checksums":1})
2023-03-29 08:17:57 +00:00
contentcol.create_index("host")
2023-03-12 05:16:47 +00:00
htmlcol = db["html"]
2023-03-12 09:08:21 +00:00
htmlcol.create_index("url",unique=True)
2023-04-04 12:04:33 +00:00
domaincol = db["domains"]
domaincol.create_index("host",unique=True)
2023-03-12 05:16:47 +00:00
2023-03-25 12:48:38 +00:00
@cli.command()
@click.argument("link")
def parseurl(link):
2023-03-25 13:39:36 +00:00
link,hostname = courlan.check_url(link)
rawrules = trafilatura.fetch_url("https://"+ hostname + "/robots.txt")
print(rawrules)
rules = urllib.robotparser.RobotFileParser()
rules.parse(rawrules.split("\n"))
print(rules.can_fetch("*",link))
print(rules.site_maps())
print(rules.crawl_delay("*"))
2023-03-25 12:48:38 +00:00
html = trafilatura.fetch_url(link,decode=True)
doc = trafilatura.bare_extraction(html)
import pprint
pprint.pprint(doc)
@cli.command()
@click.argument("link")
def externaldomains(link):
html = trafilatura.fetch_url(link,decode=True)
external_links = courlan.extract_links(html,link,external_bool=True,language=LANGUAGE)
domains = set()
for l in external_links:
r = courlan.check_url(l)
if r is None:
pass
link,domain = r
domains.add(domain)
for d in domains:
print(d)
2023-04-03 14:37:01 +00:00
@cli.command()
@click.argument("start_link")
def classify(start_link):
myclient = pymongo.MongoClient(CONNECTION)
db=myclient[DBNAME]
start_link,hostname = courlan.check_url(start_link)
cl = LinkClassifier()
cl.train(db,hostname)
2023-03-16 15:06:07 +00:00
2023-03-12 08:50:22 +00:00
@cli.command()
2023-03-12 05:56:08 +00:00
@click.argument("start_link")
2023-03-12 08:50:22 +00:00
def visit(start_link):
myclient = pymongo.MongoClient(CONNECTION)
db=myclient[DBNAME]
2023-03-17 11:30:53 +00:00
start_link,hostname = courlan.check_url(start_link)
2023-03-11 17:41:20 +00:00
batch_size = BATCHSIZE
2023-04-01 18:44:37 +00:00
print("Getting frontlinks")
2023-03-17 11:30:53 +00:00
links = get_links(db,hostname,"frontlink",batch_size)
2023-03-14 07:59:23 +00:00
print(f"Got {len(links)} frontlinks")
2023-04-01 18:44:37 +00:00
if len(links) < batch_size:
print("Fetching sitemap links")
sitemap_links = fetch_sitemap_links(start_link)
index_links(db,sitemap_links)
2023-04-04 12:04:33 +00:00
links = get_links(db,hostname,"frontlink",batch_size)
links.insert(0,start_link)
if len(links) < batch_size:
back_links = get_links(db,hostname,"backlink",batch_size - len(links))
links += back_links
2023-04-01 18:44:37 +00:00
2023-04-04 12:04:33 +00:00
print("Processing links")
2023-04-01 18:44:37 +00:00
rules = fetch_robot(hostname)
2023-04-04 12:04:33 +00:00
responses = fetch_pages(links)
extracted_pages = extract_pages(links,responses)
extracted_links = extract_links(links,responses,hostname,rules,"backlink")
index_links(db,extracted_links)
index_pages(db,hostname,extracted_pages)
2023-03-17 11:30:53 +00:00
link_summary(db,hostname)
2023-03-12 05:56:08 +00:00
if __name__ == "__main__":
cli()