zz
This commit is contained in:
parent
e728134bf6
commit
3993a61899
@ -263,8 +263,13 @@ def create_indices(db):
|
||||
htmlcol = db["html"]
|
||||
htmlcol.create_index({"url":1})
|
||||
|
||||
@click.group()
|
||||
def cli():
|
||||
pass
|
||||
|
||||
@click.command()
|
||||
def simple_visit(start_link=None):
|
||||
@click.argument("start_link")
|
||||
def simple_visit(start_link):
|
||||
start_link,domain = courlan.check_url(start_link)
|
||||
myclient = pymongo.MongoClient("mongodb://root:example@localhost:27017/")
|
||||
db=myclient["crawler"]
|
||||
@ -282,3 +287,6 @@ def simple_visit(start_link=None):
|
||||
front_links = get_links(db,domain,"backlink",bl)
|
||||
process_links(db,domain,"backlink",links,rules=rules)
|
||||
link_summary(db,domain)
|
||||
|
||||
if __name__ == "__main__":
|
||||
cli()
|
||||
|
Loading…
Reference in New Issue
Block a user