Skip to content

Commit a5fe5db

Browse files
Merge pull request #24 from crazyministr/master
Upgrade Mystem version to 3.1
2 parents 6b1e3f2 + e12c0fa commit a5fe5db

File tree

3 files changed

+9
-12
lines changed

3 files changed

+9
-12
lines changed

README.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
==================================================================
2-
A Python wrapper of the Yandex Mystem 3.0 morphological analyzer
2+
A Python wrapper of the Yandex Mystem 3.1 morphological analyzer
33
==================================================================
44

55
.. image:: https://travis-ci.org/nlpub/pymystem3.png?branch=master
@@ -9,7 +9,7 @@
99
Introduction
1010
============
1111

12-
This module contains a wrapper for an excellent morphological analyzer for Russian language `Yandex Mystem 3.0 <http://api.yandex.ru/mystem/>`_ released in June 2014.
12+
This module contains a wrapper for an excellent morphological analyzer for Russian language `Yandex Mystem 3.1 <https://tech.yandex.ru/mystem/>`_ released in June 2014.
1313
A morphological analyzer can perform lemmatization of text and derive a set of morphological attributes for each token.
1414
For more details about the algorithm see I. Segalovich `«A fast morphological algorithm with unknown word guessing induced by a dictionary for a web search
1515
engine» <http://download.yandex.ru/company/iseg-las-vegas.pdf>`_, MLMTA-2003, Las Vegas, Nevada, USA.
@@ -28,6 +28,8 @@ The wrapper works with CPython 2.6+/3.3+ and PyPy 1.9+.
2828

2929
The wrapper was tested on Ubuntu Linux 12.04+, Mac OSX 10.9+ and Windows 7+.
3030

31+
For 32bit architectures and freebsd platform support use ver. 0.1.10.
32+
3133

3234
Installation
3335
====================

pymystem3/metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
project = "Python MyStem 3"
1010
project_no_spaces = project.replace(' ', '-')
1111
version = '0.1.10'
12-
description = 'Python wrapper for the Yandex MyStem 3.0 morpholocial analyzer of the Russian language.'
12+
description = 'Python wrapper for the Yandex MyStem 3.1 morpholocial analyzer of the Russian language.'
1313
authors = ['Denis Sukhonin', 'Alexander Panchenko', 'Daniel Brshatsky', 'Andy Fefelov', 'Anton Malashenkov']
1414
authors_string = ', '.join(authors)
1515
emails = ['panchenko.alexander@gmail.com']

pymystem3/mystem.py

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
"""
3-
A Python wrapper of the Yandex Mystem 3.0 morphological analyzer.
3+
A Python wrapper of the Yandex Mystem 3.1 morphological analyzer.
44
"""
55

66
from __future__ import print_function
@@ -27,17 +27,12 @@
2727

2828
_TARBALL_URLS = {
2929
'linux': {
30-
'32bit': "http://download.cdn.yandex.net/mystem/mystem-3.0-linux3.5-32bit.tar.gz",
31-
'64bit': "http://download.cdn.yandex.net/mystem/mystem-3.0-linux3.1-64bit.tar.gz",
30+
'64bit': "http://download.cdn.yandex.net/mystem/mystem-3.1-linux-64bit.tar.gz",
3231
},
33-
'darwin': "http://download.cdn.yandex.net/mystem/mystem-3.0-macosx10.8.tar.gz",
32+
'darwin': "http://download.cdn.yandex.net/mystem/mystem-3.1-macosx.tar.gz",
3433
'win': {
35-
'32bit': "http://download.cdn.yandex.net/mystem/mystem-3.0-win7-32bit.zip",
36-
'64bit': "http://download.cdn.yandex.net/mystem/mystem-3.0-win7-64bit.zip",
34+
'64bit': "http://download.cdn.yandex.net/mystem/mystem-3.1-win-64bit.zip",
3735
},
38-
'freebsd': {
39-
'64bit': "http://download.cdn.yandex.net/mystem/mystem-3.0-freebsd9.0-64bit.tar.gz",
40-
}
4136
}
4237

4338
_NL = unicode('\n').encode('utf-8')

0 commit comments

Comments
 (0)