Skip to main content

Bindings to MorphoDiTa library

Project description

ufal.morphodita

The ufal.morphodita is a Python binding to MorphoDiTa library <http://ufal.mff.cuni.cz/morphodita>.

The bindings is a straightforward conversion of the C++ bindings API. Python >=3 is supported.

Wrapped C++ API

The C++ API being wrapped follows. For a API reference of the original C++ API, see <http://ufal.mff.cuni.cz/morphodita/api-reference>.

Helper Structures
-----------------

  typedef vector<int> Indices;

  typedef vector<string> Forms;

  struct TaggedForm {
    string form;
    string tag;
  };
  typedef vector<TaggedForm> TaggedForms;

  struct TaggedLemma {
    string lemma;
    string tag;
  };
  typedef vector<TaggedLemma> TaggedLemmas;
  typedef vector<TaggedLemmas> Analyses;

  struct TaggedLemmaForms {
    string lemma;
    TaggedForms forms;
  };
  typedef vector<TaggedLemmaForms> TaggedLemmasForms;

  struct TokenRange {
    size_t start;
    size_t length;
  };
  typedef vector<TokenRange> TokenRanges;

  struct DerivatedLemma {
    std::string lemma;
  };
  typedef vector<DerivatedLemma> DerivatedLemmas;


Main Classes
------------

  class Version {
   public:
    unsigned major;
    unsigned minor;
    unsigned patch;
    string prerelease;

    static Version current();
  };

  class Tokenizer {
   public:
    virtual void setText(const char* text);
    virtual bool nextSentence(Forms* forms, TokenRanges* tokens);

    static Tokenizer* newVerticalTokenizer();
    static Tokenizer* newCzechTokenizer();
    static Tokenizer* newEnglishTokenizer();
    static Tokenizer* newGenericTokenizer();
  };

  class TagsetConverter {
   public:
    static TagsetConverter* newIdentityConverter();
    static TagsetConverter* newPdtToConll2009Converter();
    static TagsetConverter* newStripLemmaCommentConverter(const Morpho& morpho);
    static TagsetConverter* newStripLemmaIdConverter(const Morpho& morpho);

    virtual void convert(TaggedLemma& lemma) const;
    virtual void convertAnalyzed(TaggedLemmas& lemmas) const;
    virtual void convertGenerated(TaggedLemmasForms& forms) const;
  };

  class Derivator {
   public:
    virtual bool parent(const char* lemma, DerivatedLemma& parent) const;
    virtual bool children(const char* lemma, DerivatedLemmas& children) const;
  };

  class DerivationFormatter {
   public:
    virtual string formatDerivation(const char* lemma) const;
    virtual void formatTaggedLemma(TaggedLemma& tagged_lemma, const TagsetConverter* converter = nullptr) const;
    virtual void formatTaggedLemmas(TaggedLemmas& tagged_lemma, const TagsetConverter* converter = nullptr) const;

    static DerivationFormatter* newNoneDerivationFormatter();
    static DerivationFormatter* newRootDerivationFormatter(const Derivator* derivator);
    static DerivationFormatter* newPathDerivationFormatter(const Derivator* derivator);
    static DerivationFormatter* newTreeDerivationFormatter(const Derivator* derivator);
    static DerivationFormatter* newDerivationFormatter(const char* name, const Derivator* derivator);
  };

  class Morpho {
   public:
    static Morpho* load(const char* fname);

    enum { NO_GUESSER = 0, GUESSER = 1, GUESSER_UNSPECIFIED = -1 };

    virtual int analyze(const char* form, int guesser, TaggedLemmas& lemmas) const;
    virtual int generate(const char* lemma, const char* tag_wildcard, int guesser, TaggedLemmasForms& forms) const;
    virtual string rawLemma(const char* lemma) const;
    virtual string lemmaId(const char* lemma) const;
    virtual string rawForm(const char* form) const;

    virtual Tokenizer* newTokenizer() const;

    virtual Derivator* getDerivator() const;
  };

  class Tagger {
   public:
    static Tagger* load(const char* fname);

    virtual const Morpho* getMorpho() const;

    virtual void tag(const Forms& forms, TaggedLemmas& tags, int guesser = Morpho::GUESSER_UNSPECIFIED) const;

    virtual void tagAnalyzed(const Forms& forms, const Analyses& analyses, Indices& tags) const;

    Tokenizer* newTokenizer() const;
  };

Examples

run_morpho_cli

Simple example performing morphological analysis and generation:

import sys

from ufal.morphodita import *

# In Python2, wrap sys.stdin and sys.stdout to work with unicode.
if sys.version_info[0] < 3:
  import codecs
  import locale
  encoding = locale.getpreferredencoding()
  sys.stdin = codecs.getreader(encoding)(sys.stdin)
  sys.stdout = codecs.getwriter(encoding)(sys.stdout)

if len(sys.argv) < 2:
  sys.stderr.write('Usage: %s dict_file\n' % sys.argv[0])
  sys.exit(1)

sys.stderr.write('Loading dictionary: ')
morpho = Morpho.load(sys.argv[1])
if not morpho:
  sys.stderr.write("Cannot load dictionary from file '%s'\n" % sys.argv[1])
  sys.exit(1)
sys.stderr.write('done\n')

lemmas = TaggedLemmas()
lemmas_forms = TaggedLemmasForms()
line = sys.stdin.readline()
while line:
  tokens = line.rstrip('\r\n').split('\t')
  if len(tokens) == 1: # analyze
    result = morpho.analyze(tokens[0], morpho.GUESSER, lemmas)

    guesser = "Guesser " if result == morpho.GUESSER else ""
    for lemma in lemmas:
      sys.stdout.write('%sLemma: %s %s\n' % (guesser, lemma.lemma, lemma.tag))
  elif len(tokens) == 2: # generate
    result = morpho.generate(tokens[0], tokens[1], morpho.GUESSER, lemmas_forms)

    guesser = "Guesser " if result == morpho.GUESSER else ""
    for lemma_forms in lemmas_forms:
      sys.stdout.write('%sLemma: %s\n' % (guesser, lemma_forms.lemma))
      for form in lemma_forms.forms:
        sys.stdout.write('  %s %s\n' % (form.form, form.tag))

  line = sys.stdin.readline()

run_tagger

Simple example performing tokenization and PoS tagging:

import sys

from ufal.morphodita import *

def encode_entities(text):
  return text.replace('&', '&amp;').replace('<', '&lt;').replace('>', '&gt;').replace('"', '&quot;')

# In Python2, wrap sys.stdin and sys.stdout to work with unicode.
if sys.version_info[0] < 3:
  import codecs
  import locale
  encoding = locale.getpreferredencoding()
  sys.stdin = codecs.getreader(encoding)(sys.stdin)
  sys.stdout = codecs.getwriter(encoding)(sys.stdout)

if len(sys.argv) == 1:
  sys.stderr.write('Usage: %s tagger_file\n' % sys.argv[0])
  sys.exit(1)

sys.stderr.write('Loading tagger: ')
tagger = Tagger.load(sys.argv[1])
if not tagger:
  sys.stderr.write("Cannot load tagger from file '%s'\n" % sys.argv[1])
  sys.exit(1)
sys.stderr.write('done\n')

forms = Forms()
lemmas = TaggedLemmas()
tokens = TokenRanges()
tokenizer = tagger.newTokenizer()
if tokenizer is None:
  sys.stderr.write("No tokenizer is defined for the supplied model!")
  sys.exit(1)

not_eof = True
while not_eof:
  text = ''

  # Read block
  while True:
    line = sys.stdin.readline()
    not_eof = bool(line)
    if not not_eof: break
    line = line.rstrip('\r\n')
    text += line
    text += '\n';
    if not line: break



  # Tag
  tokenizer.setText(text)
  t = 0
  while tokenizer.nextSentence(forms, tokens):
    tagger.tag(forms, lemmas)

    for i in range(len(lemmas)):
      lemma = lemmas[i]
      token = tokens[i]
      sys.stdout.write('%s%s<token lemma="%s" tag="%s">%s</token>%s' % (
        encode_entities(text[t : token.start]),
        "<sentence>" if i == 0 else "",
        encode_entities(lemma.lemma),
        encode_entities(lemma.tag),
        encode_entities(text[token.start : token.start + token.length]),
        "</sentence>" if i + 1 == len(lemmas) else "",
      ))
      t = token.start + token.length
  sys.stdout.write(encode_entities(text[t : ]))

AUTHORS

Milan Straka <straka@ufal.mff.cuni.cz>

Jana Straková <strakova@ufal.mff.cuni.cz>

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ufal.morphodita-1.11.0.3.tar.gz (192.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ufal.morphodita-1.11.0.3-cp311-cp311-win_amd64.whl (538.7 kB view details)

Uploaded CPython 3.11Windows x86-64

ufal.morphodita-1.11.0.3-cp311-cp311-win32.whl (417.1 kB view details)

Uploaded CPython 3.11Windows x86

ufal.morphodita-1.11.0.3-cp311-cp311-musllinux_1_1_x86_64.whl (956.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

ufal.morphodita-1.11.0.3-cp311-cp311-musllinux_1_1_i686.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

ufal.morphodita-1.11.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (424.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ufal.morphodita-1.11.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (440.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

ufal.morphodita-1.11.0.3-cp311-cp311-macosx_11_0_arm64.whl (411.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ufal.morphodita-1.11.0.3-cp311-cp311-macosx_10_9_x86_64.whl (440.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ufal.morphodita-1.11.0.3-cp310-cp310-win_amd64.whl (538.7 kB view details)

Uploaded CPython 3.10Windows x86-64

ufal.morphodita-1.11.0.3-cp310-cp310-win32.whl (417.1 kB view details)

Uploaded CPython 3.10Windows x86

ufal.morphodita-1.11.0.3-cp310-cp310-musllinux_1_1_x86_64.whl (956.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

ufal.morphodita-1.11.0.3-cp310-cp310-musllinux_1_1_i686.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

ufal.morphodita-1.11.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (425.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ufal.morphodita-1.11.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (440.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

ufal.morphodita-1.11.0.3-cp310-cp310-macosx_11_0_arm64.whl (411.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ufal.morphodita-1.11.0.3-cp310-cp310-macosx_10_9_x86_64.whl (440.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

ufal.morphodita-1.11.0.3-cp39-cp39-win_amd64.whl (538.6 kB view details)

Uploaded CPython 3.9Windows x86-64

ufal.morphodita-1.11.0.3-cp39-cp39-win32.whl (417.0 kB view details)

Uploaded CPython 3.9Windows x86

ufal.morphodita-1.11.0.3-cp39-cp39-musllinux_1_1_x86_64.whl (956.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

ufal.morphodita-1.11.0.3-cp39-cp39-musllinux_1_1_i686.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

ufal.morphodita-1.11.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (425.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ufal.morphodita-1.11.0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (440.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

ufal.morphodita-1.11.0.3-cp39-cp39-macosx_11_0_arm64.whl (411.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ufal.morphodita-1.11.0.3-cp39-cp39-macosx_10_9_x86_64.whl (440.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

ufal.morphodita-1.11.0.3-cp38-cp38-win_amd64.whl (538.7 kB view details)

Uploaded CPython 3.8Windows x86-64

ufal.morphodita-1.11.0.3-cp38-cp38-win32.whl (417.0 kB view details)

Uploaded CPython 3.8Windows x86

ufal.morphodita-1.11.0.3-cp38-cp38-musllinux_1_1_x86_64.whl (957.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

ufal.morphodita-1.11.0.3-cp38-cp38-musllinux_1_1_i686.whl (1.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

ufal.morphodita-1.11.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (425.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

ufal.morphodita-1.11.0.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (441.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

ufal.morphodita-1.11.0.3-cp38-cp38-macosx_11_0_arm64.whl (413.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

ufal.morphodita-1.11.0.3-cp38-cp38-macosx_10_9_x86_64.whl (442.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

ufal.morphodita-1.11.0.3-cp37-cp37m-win_amd64.whl (538.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

ufal.morphodita-1.11.0.3-cp37-cp37m-win32.whl (417.1 kB view details)

Uploaded CPython 3.7mWindows x86

ufal.morphodita-1.11.0.3-cp37-cp37m-musllinux_1_1_x86_64.whl (959.0 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

ufal.morphodita-1.11.0.3-cp37-cp37m-musllinux_1_1_i686.whl (1.0 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

ufal.morphodita-1.11.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (425.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

ufal.morphodita-1.11.0.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (441.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

ufal.morphodita-1.11.0.3-cp37-cp37m-macosx_10_9_x86_64.whl (441.9 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

ufal.morphodita-1.11.0.3-cp36-cp36m-win_amd64.whl (570.6 kB view details)

Uploaded CPython 3.6mWindows x86-64

ufal.morphodita-1.11.0.3-cp36-cp36m-win32.whl (438.2 kB view details)

Uploaded CPython 3.6mWindows x86

ufal.morphodita-1.11.0.3-cp36-cp36m-musllinux_1_1_x86_64.whl (959.0 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

ufal.morphodita-1.11.0.3-cp36-cp36m-musllinux_1_1_i686.whl (1.0 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

ufal.morphodita-1.11.0.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (425.9 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

ufal.morphodita-1.11.0.3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (441.3 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

ufal.morphodita-1.11.0.3-cp36-cp36m-macosx_10_9_x86_64.whl (441.8 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file ufal.morphodita-1.11.0.3.tar.gz.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3.tar.gz
  • Upload date:
  • Size: 192.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3.tar.gz
Algorithm Hash digest
SHA256 4109ec0afa098e52f73ab45dcb4f9934f2a7173c69df321b9320430566155d37
MD5 77e4895cba599a5fc7743b4b63e84cd6
BLAKE2b-256 ac8d1eb597aa6ce0116b90790891e025f240818ec89b88d46d8799b767053c75

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 538.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 14ee127745a458c93328d569f7dcefc8df2ab3a627e8837361770978b55f72b0
MD5 bcaa456e878efba94e81c38b06da001e
BLAKE2b-256 deb26708ead72b38dbd67677dc2ea7c093f54e59ae18d7b3127f07fe5688f5b4

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 417.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 560d38a32f806ca1cdc374b15c321b10539530365daa38b760fa86c0a7bc6ca3
MD5 c600439b0f7380d2f88c40d9d8599cc5
BLAKE2b-256 0c5309e39734954e9ea7c481160f08b36925e36136e7d4867e7d23ca49b51210

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 956.8 kB
  • Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bd0994dd43c5265ffb0ac863f6736ae8bad3a9d101ebe72d8e28729a05a93709
MD5 a538e2d2461f560ad6eb76df137ea7bc
BLAKE2b-256 db20a4da70ae8b3f9ef1f81eb576dad0765fa74c1fb9b85c80bea7f65bbaf8a3

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp311-cp311-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d27d91317872a27d2f1efaa10c59b1eaae6d182812577c0559a82e87a0a00405
MD5 0c0c5cbafb8337bc2bb02970a701ac56
BLAKE2b-256 f341001c79a61c237e7f647983b11e36bf35e4a0ab89843dec7063f777ddcf3c

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38c10b46ca850237172ed5d7d167ca43aedb96aba75ca7880406c2642efe55ef
MD5 06891c3fd9e926342179ac939e8d85ca
BLAKE2b-256 fd5d5006480b7d55ad2d84088f3dd6e35db85a32fd1f3fb26fa63d52ab7234ec

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1aa17722003615a67326ce7eeb44f365c0ffa3bcff529ebf85fa3acbc1a1add5
MD5 96d5df71fe072c013342244eafc02e5d
BLAKE2b-256 7cdeaa52ef682536c7df1c1a204df093f1852554fef38900fd0e18ea2a828be5

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 411.1 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ff473d4335d6efe5d9e023b5024941046f9d5de8f9e4b85a8b2dd1e122a4803
MD5 77b93bd4b0294ed4302f4d3406989072
BLAKE2b-256 a9c24c4097bae37775cafd2ad712d9c4f480e40b1ae723dee81ac9a604d4ec85

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 440.2 kB
  • Tags: CPython 3.11, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 133ce21729e3609edb2914a675eb36d0f4fe082f29b9344dc9e60c3a1ddd1f6d
MD5 094edc54330a34de30676d6caaa83ea1
BLAKE2b-256 3e72877917a268e6a4439d0810e0bf5f0df32b54bcf95d2708e8ebce95120817

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 538.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 79f69ec614eccffd51cbb54b4ff06869f6e3a228dae5d3472cad8f90f801f302
MD5 3b9e5ad8f12d7ae77713f1562a7560a6
BLAKE2b-256 ae99b46c5c62273c5efe76fc0e74744929830986f5a1af682abccca8d41ff256

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 417.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b794f45f04df31bd0a83fee0f941910ac05e7a01f656aa5d2b889fd6dfc66316
MD5 704c4a195c6195281bae68486556ee16
BLAKE2b-256 c7873fdd4cc317497f7f676e71ec646ace3f76c65d46afb1e08af16eec2986bd

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 956.8 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7ee6063bd5cfbc162d5ba9b21cc0adfa51c4f427d30e05acfd4883352c4c87c6
MD5 14fa1d22efef96bef3e23f07a7b00ece
BLAKE2b-256 882920df0eafa4f576d9849a9c811d934569ff332bfab750c69926378af5501f

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 663735a21322106b9355a7f92772da1fb8c2414a4e0391812050bf3b18d2eb56
MD5 eaa915d631d9b252656cbb3ee88b3d28
BLAKE2b-256 734f74a17423ed59899acad37e7040334a95d2472d5af9400ed02bf99eb50e24

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b70a2c3a2f36fe8c8ab567a3758bc3ae23b1ba32ebeed4a1cef1516d6511e7b
MD5 077b7d8566c2998f88e8e5b6d73790a0
BLAKE2b-256 bc13035b0d148a0cd678af2a7a378cd1cd3258d43b5ae0b91c4b5d9ef77ff2dd

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 adaef0274be6d53e3184b1cea8b9f56e0fbffa3c48722354471487dd19de4b14
MD5 9aa7977ef2d5be6f5ac201e1aae1cbd9
BLAKE2b-256 b04b0e90775868984c5a84c82dc22d66dc23157aecb266c5a8e703245ff1ea23

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 411.0 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 734bc65c1532428738f545c83e4bfefffa29193ac3bb87327cfa87c59104d926
MD5 c6ff2bb90b7ab7800ff83f739ea0508d
BLAKE2b-256 e7a8cdb57f20153b29bcea451a6135ab3658b206c54771672a73d7b8621471e5

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 440.3 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ca423af136ca93a9b746d873c3bde5e39d71f651e93c38353f11ddced5b6b450
MD5 66dc03669e4cf2e11fa96ca685f8fb16
BLAKE2b-256 025eab5152abb738130898e6c1ce1b7edbb32380744dae7eaa894a46ceba2e0f

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 538.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5f3e1d0d04333d61e420f582b83ed07f6f235fc2a5ac59f8ec47ee432264001e
MD5 9ad4d604cd76ef3d709441e1bf2517a1
BLAKE2b-256 8af0fdfb6068e27d206dc1d46e95b10ffdfe90b30ab54a7ef48424a4aba8521f

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 417.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4d49759f88e07ab7d0c79f8c2341cfc6d8f05bf73a433aec99a0c5a256540c2f
MD5 bb891015bd37d78d6111e37afc525f96
BLAKE2b-256 20793e233dd739814797fc3f4043e7471fb766816aca439124ab5ade10ebba84

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 956.8 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5f8b2f200e90b5224f40813080c855c9fd4eb4cc560c0578e984704acceb5b6a
MD5 40b74b0eefe63726904efb9958472e9b
BLAKE2b-256 ea9ff794af645dbf76b63b3302a0d8309b7177abf41de2b56200f1fe49929c50

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5f0889b8c72dbd784227ea362fe4626be5f270889c62489bf164dd72ad846a7b
MD5 530cefba1a7bf39d071bb8065b80bf04
BLAKE2b-256 2b8aa2abe0725885fe7cb9c80d656d6613ecdebfe60e80ebe226fdd0c218b629

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbd4c45a58178b7a6f706e4a1d995460409d31ece27c9e2567eadc3cfac40ef7
MD5 1901cb1c6412fc540b2b0f3be72e8056
BLAKE2b-256 595df7bf23f91aa02dbd1361bdd0879008a8bc698c49d6dfb9859cd7b71e825c

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ff8d54b39e1bf28fa3445562dac3b191cf04a32134bc31497b65038afa8f67ca
MD5 cbafbc85fa349e65cbdbd9d68bda2a98
BLAKE2b-256 bf22921aa89c90a0fb311a41fde5eb832a5e26154fa3dd446c0af71b783c5ec8

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 411.1 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 604635d3821ca40f303979bb6535c2deedfbf749eca29235ad7fbe952136f3d5
MD5 97c2c94315449388489ab6fbfff8e91c
BLAKE2b-256 41252908ad340c4d82c74ee39560dd47f04c882f44000ed1376b3bd23cbca755

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 440.2 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6147abe823ccaf98d5cbc9ff28ef5db74fd3a13f4e56edf08f0dbe9469a99a8a
MD5 12a27ff3a452cb2fe14bc89c361c99fa
BLAKE2b-256 9ff1f2eed534ace1334194bb0f7e56ecc69ed5492c618c53a11fda142875fba2

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 538.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6dae4895c2120d1d9af8d4ca48ddeaf1af6227218b760a2764db3b2eded6cda8
MD5 6988f67822408bcfb31efc02bdd5991f
BLAKE2b-256 39ce5f6a8dc9cadf8896b1c2676ef6dd75ce47f8824c2c4df5ae50ff5a24d097

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 417.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 fe684ea8f3f0fb37690a52f89f705eddc7c8a9f7bc9eba460b5c63e9cd0aedd9
MD5 dce4cf68b72e47dccd3b257688db4aa5
BLAKE2b-256 2720d50b14a6bb0d24988ff5ad9f6a46f90734573ba25f6bb18f2bb7d3bb2dee

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 957.1 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e773f05cfd7041b203f2847d7df941cd3ea2a9c80f1c5975bb7fa4b336eecc99
MD5 6be8145531693b543615b8040714f4a1
BLAKE2b-256 59d2ebe6a61a55105411f98379a406e811999779ba2f139c51cadd75377254ce

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bf6f2430ae856e34b92e616ba52a802055a39882b9caa294058d39ec6f17c4e0
MD5 de04d2f04a71daa65ca5313a38fb67ae
BLAKE2b-256 9cf7f3f460dbee129945cc7bdaef176724920d716e9947e250106d3ce6155104

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be057761268e5a98713f54948eff3056387de904e9a33292c1b79713a573db79
MD5 368ec5958b59eedb9a94a0022f9ca911
BLAKE2b-256 f8b5b5b9abe785dcd6ee3ce53427f1b2931a6f1125e7ed18b3bd0e50c91a0dd0

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c9f020c0bad67edabebcd816c8a5a1633177d8009d68e4473fa2daa5bede8690
MD5 ab1d62b0a69a6047f09a0ae737ab1f2f
BLAKE2b-256 e7ff0e3e2cebac32cadc75b0c8ed86779be9e9d2efb239621667a79b2f5bb870

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 413.6 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ec7a8685a0a45418ccb1ccbd6f38202c75bfbbc82711cc390f8063faa252495
MD5 3804e031fddc9eea140b0cc1b45b867a
BLAKE2b-256 e1a7fdb8869b77d9f734980b4ce971a9705b04ecf2988b1879796d157701591c

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 442.2 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d60a11d678a69b3df05df552143c1e2ebaf73c7d0992187f3f391d3e163de0a1
MD5 5879e596f0a85b76427df5d5fd9dbb8d
BLAKE2b-256 c371f9841c8a3d9d464aa3bc4eeb3be3b29fb0d1fc0c9ce862347b0ebedc70e1

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 538.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7fc64fdc2bdd883209e03485304408c5695313a1693394784c178c61b446652f
MD5 4af0e87b26a237290fcd44ef2497e151
BLAKE2b-256 7e6ce2394671e60122e001cebd267e6d1f91fa73ee942048e36d96a827404dbb

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp37-cp37m-win32.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 417.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 39ae2611c58145d903e3193fae0f5deb5a0506dc7ef3563e2f4c7a0e1cc09620
MD5 4c7686be7cd113d82ae3b4503de53c70
BLAKE2b-256 08cf2a584e0a530e9b2fee44a20c60bf5af7af89193b4116ee70d031e5e6a625

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 959.0 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 151459acbcd1a79fb006cd96082d2cfd60c5640646298d419c54212e8c47511e
MD5 f69cd594f07e896aa67eee016bb203b6
BLAKE2b-256 69f1d49fff8cd7159e51eb849d124391756ab4806031f6653a3733eddb6728a8

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4fe24cd7d47feec18b8a7ce178b528fb9df71657f86c5c38577b6e0c35556628
MD5 a483e97d39162f064bfd68a883282f3b
BLAKE2b-256 9719430a6e421656a530698c9585ac86a6db7b31103edadb052c9dec78c17018

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f64fb13a96e471cc2424cf0091f470e2451afe2c2f9317b1ae780c70dcb0b583
MD5 2c251f71e7b530d6e5389d9d2381b2ca
BLAKE2b-256 d14c72637538ccfd0de2dcd4d9d6ba05af0f7f088731cdc4e034610e53668be0

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 50bbc76962e99b2b344b62021c9336be6d420f70e31132cc8bea44b7f879c6a9
MD5 1ab126ff6e60607ab5d26025768ef466
BLAKE2b-256 7aa97f2ee3aae7e555a5f2678b7db01d77e84aaa867598611e8f2aa9ca4a073d

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 441.9 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ff370cf8657b012d20a4080f367ccba2d0bbc56d08eb98370b8e1daebf28d2ac
MD5 003ff0d6afc5db849170051278209409
BLAKE2b-256 b32c61b6b4af308f8d87e3c9be0249b22c092cb8b9810ad07a2d46323ead6e63

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 570.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3ae6b34947856c352c008a3e86417eeaea5222d6367c80046beb1bc08080760f
MD5 af72df066965362dd26a91861d4cfe2e
BLAKE2b-256 fbf5b89f4bb68d04b2dfb28f7ebeade58c14d576e788901e82826e5428101a1f

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp36-cp36m-win32.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 438.2 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ba969c94db7dfba34e3b1e873f1fe49dce94bff389c1837a60ede498c852a7a5
MD5 c40f5bba19ce92d10d2b5ade63fcd977
BLAKE2b-256 aeffd301c725b94e6fce461cc6506c2fbbaf4be97f124625ed8c4b196f85ccc7

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 959.0 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e6e7194ca5d7c9c2deddb1c6f6702224cc4b52f672e01f033538441dd94b6ac1
MD5 bb62ed2c6c46b21390b25481a0f2538a
BLAKE2b-256 3d1695554201cd596b89019bf05fa1cca4ae995ddf98e60892c2b44407ff5988

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e6cc48cc438a9e883f23b479aae3a19bd9dfe36d68b66b1da1d27370cbb251ee
MD5 ec55050d8b904f48856ff4f00649ade0
BLAKE2b-256 ba0de7b5b73ff3766c58c074587c632a0a56975bbae2111a0ab027a2892fae53

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b164209c6912915a02f5adf4e586c2192eae46aa64106ea48f5022ffc469a05c
MD5 17eee42c31c4855747efd7eb2ca57e82
BLAKE2b-256 2e18715edc173c30178ae30bfeeaa39f32c6862884eee90a977d7cea57bf84a9

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e1ab58ded7cfc6687e0c14686c4e198b81a572efdd092d0908a69201b293a88
MD5 b13e9281e430029b14ad5dc8a4c537ab
BLAKE2b-256 b5aa55f851526bb9f86929cef0fce6dad7897f9db3f8160884b274938c1d2772

See more details on using hashes here.

File details

Details for the file ufal.morphodita-1.11.0.3-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ufal.morphodita-1.11.0.3-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 441.8 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for ufal.morphodita-1.11.0.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8fc2aebbfba2357fceb3f0e1eeff0f954ceeb340735c26035c467558fc859f71
MD5 bc5fd6deba0018c554e96972ca726ab4
BLAKE2b-256 28953b4b9b9dbe5854a552c8d6d563b48fa58d3cb71b2b49c230114ac077c1f7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page