forked from Meiqia/serpextract
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make serpextract play nice with Python 3 and update search engine list
- Loading branch information
1 parent
606cabb
commit f9bb255
Showing
12 changed files
with
4,330 additions
and
4,393 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ build | |
dist | ||
serpextract.egg-info | ||
.DS_Store | ||
docs/_build | ||
docs/_build | ||
.cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
language: python | ||
python: | ||
- "2.7" | ||
- 2.7 | ||
- 3.3 | ||
- 3.4 | ||
install: | ||
- pip install -r requirements.txt --use-mirrors | ||
script: nosetests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
recursive-exclude tests * | ||
include *.txt | ||
include *.rst | ||
include serpextract/search_engines.pickle | ||
include serpextract/search_engines.pickle* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
iso3166>=0.4 | ||
nose==1.3.0 | ||
coverage==3.6 | ||
nose>=1.3.0 | ||
coverage>=3.6 | ||
pylru>=1.0.3 | ||
tldextract==1.2 | ||
tldextract>=1.2 | ||
six |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
from serpextract import * | ||
__version__ = '0.2.10' | ||
from __future__ import absolute_import | ||
|
||
from .serpextract import * | ||
|
||
__version__ = '0.2.11' |
Oops, something went wrong.