-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmoogle.py
74 lines (46 loc) · 1.63 KB
/
moogle.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
import pickle
#############################################################################
# Common part
#############################################################################
def authors():
"""Returns a string with the name of the authors of the work."""
### Please modify this function
return "Jordi Petit, Jordi Cortadella"
#############################################################################
# Crawler
#############################################################################
def store(db, filename):
with open(filename, "wb") as f:
print("store", filename)
pickle.dump(db, f)
print("done")
def crawler(url, maxdist):
"""
Crawls the web starting from url,
following up to maxdist links
and returns the buit database.
"""
### Please implement this function
return None
#############################################################################
# Answer
#############################################################################
def load(filename):
"""Reads an object from file filename and returns it."""
with open(filename, "rb") as f:
print("load", filename)
db = pickle.load(f)
print("done")
return db
def answer(db, query):
"""
Returns a list of pages for the given query.
Each page is a map with three fields:
- title: its title
- url: its url
- score: its score
The list is sorted by score in descending order.
The query is a string of cleaned words.
"""
### Please implement this function
return []