File tree Expand file tree Collapse file tree 3 files changed +16
-5
lines changed Expand file tree Collapse file tree 3 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 11Changes
22=======
33
4+ 0.5 (2017-05-10)
5+ ----------------
6+
7+ * webstruct.model.NER now uses ``requests `` library to make HTTP requests;
8+ * changed default headers used by webstruct.model.NER;
9+ * new ``webstruct.infer_domain `` module useful for proper cross-validation;
10+ * webstruct.webannotator.to_webannotator got an option to add ``<base> ``
11+ tag with the original URL to the page;
12+ * fixed a warning in webstruct.gazetteers.geonames.read_geonames;
13+ * add a few more country names to countries.txt list.
14+
4150.4.1 (2016-11-28)
516------------------
617
@@ -16,7 +27,7 @@ Changes
1627 WebAnnotator;
1728* fixed 'dont_penalize' argument of webstruct.NER.extract_groups_from_url;
1829* new webstruct.model.extract_entity_groups utility function;
19- * HtmlTokenizer and HtmlToken are modev to their own module
30+ * HtmlTokenizer and HtmlToken are moved to their own module
2031 (webstruct.html_tokenizer);
2132* test improvements;
2233
Original file line number Diff line number Diff line change @@ -86,16 +86,16 @@ def __getattr__(cls, name):
8686
8787# General information about the project.
8888project = u'Webstruct'
89- copyright = u'2014, Scrapinghub Inc.'
89+ copyright = u'2014-2017 , Scrapinghub Inc.'
9090
9191# The version info for the project you're documenting, acts as replacement for
9292# |version| and |release|, also used in various other places throughout the
9393# built documents.
9494#
9595# The short X.Y version.
96- version = '0.4 '
96+ version = '0.5 '
9797# The full version, including alpha/beta/rc tags.
98- release = '0.4 '
98+ release = '0.5 '
9999
100100# The language for content autogenerated by Sphinx. Refer to documentation
101101# for a list of supported languages.
Original file line number Diff line number Diff line change 11#!/usr/bin/env python
22from setuptools import setup , find_packages
33
4- version = '0.4.1 '
4+ version = '0.5 '
55
66setup (
77 name = 'webstruct' ,
You can’t perform that action at this time.
0 commit comments