We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3fda642 + 664c634 commit 31b5881Copy full SHA for 31b5881
.travis.yml
@@ -4,7 +4,7 @@ matrix:
4
include:
5
- python: 2.7
6
env: TOXENV=py27
7
- - python: 2.7
+ - python: 3.4
8
env: TOXENV=py34
9
- python: pypy
10
env: TOXENV=pypy
scrapely/template.py
@@ -98,6 +98,8 @@ def best_match(text):
98
def func(fragment, page):
99
fdata = page.fragment_data(fragment).strip()
100
if text in fdata:
101
+ if not len(fdata):
102
+ return float("inf")
103
return float(len(text)) / len(fdata) - (1e-6 * fragment.start)
104
else:
105
return 0.0
0 commit comments