Skip to main content

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>

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.3.3.tar.gz (199.7 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.3.3-cp314-cp314t-win_arm64.whl (694.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

ufal_morphodita-1.11.3.3-cp314-cp314t-win_amd64.whl (512.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

ufal_morphodita-1.11.3.3-cp314-cp314t-win32.whl (438.3 kB view details)

Uploaded CPython 3.14tWindows x86

ufal_morphodita-1.11.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

ufal_morphodita-1.11.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

ufal_morphodita-1.11.3.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (406.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ufal_morphodita-1.11.3.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (377.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ufal_morphodita-1.11.3.3-cp314-cp314t-macosx_11_0_arm64.whl (419.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

ufal_morphodita-1.11.3.3-cp314-cp314t-macosx_10_15_x86_64.whl (441.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

ufal_morphodita-1.11.3.3-cp314-cp314-win_arm64.whl (686.9 kB view details)

Uploaded CPython 3.14Windows ARM64

ufal_morphodita-1.11.3.3-cp314-cp314-win_amd64.whl (503.5 kB view details)

Uploaded CPython 3.14Windows x86-64

ufal_morphodita-1.11.3.3-cp314-cp314-win32.whl (433.1 kB view details)

Uploaded CPython 3.14Windows x86

ufal_morphodita-1.11.3.3-cp314-cp314-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

ufal_morphodita-1.11.3.3-cp314-cp314-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

ufal_morphodita-1.11.3.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (410.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ufal_morphodita-1.11.3.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (380.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ufal_morphodita-1.11.3.3-cp314-cp314-macosx_11_0_arm64.whl (414.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ufal_morphodita-1.11.3.3-cp314-cp314-macosx_10_15_x86_64.whl (437.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

ufal_morphodita-1.11.3.3-cp313-cp313-win_arm64.whl (657.1 kB view details)

Uploaded CPython 3.13Windows ARM64

ufal_morphodita-1.11.3.3-cp313-cp313-win_amd64.whl (487.5 kB view details)

Uploaded CPython 3.13Windows x86-64

ufal_morphodita-1.11.3.3-cp313-cp313-win32.whl (420.4 kB view details)

Uploaded CPython 3.13Windows x86

ufal_morphodita-1.11.3.3-cp313-cp313-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

ufal_morphodita-1.11.3.3-cp313-cp313-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ufal_morphodita-1.11.3.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (410.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ufal_morphodita-1.11.3.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (379.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ufal_morphodita-1.11.3.3-cp313-cp313-macosx_11_0_arm64.whl (414.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ufal_morphodita-1.11.3.3-cp313-cp313-macosx_10_13_x86_64.whl (437.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ufal_morphodita-1.11.3.3-cp312-cp312-win_arm64.whl (657.5 kB view details)

Uploaded CPython 3.12Windows ARM64

ufal_morphodita-1.11.3.3-cp312-cp312-win_amd64.whl (487.6 kB view details)

Uploaded CPython 3.12Windows x86-64

ufal_morphodita-1.11.3.3-cp312-cp312-win32.whl (420.5 kB view details)

Uploaded CPython 3.12Windows x86

ufal_morphodita-1.11.3.3-cp312-cp312-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ufal_morphodita-1.11.3.3-cp312-cp312-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ufal_morphodita-1.11.3.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (411.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ufal_morphodita-1.11.3.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (380.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ufal_morphodita-1.11.3.3-cp312-cp312-macosx_11_0_arm64.whl (409.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ufal_morphodita-1.11.3.3-cp312-cp312-macosx_10_13_x86_64.whl (419.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ufal_morphodita-1.11.3.3-cp311-cp311-win_arm64.whl (659.9 kB view details)

Uploaded CPython 3.11Windows ARM64

ufal_morphodita-1.11.3.3-cp311-cp311-win_amd64.whl (487.1 kB view details)

Uploaded CPython 3.11Windows x86-64

ufal_morphodita-1.11.3.3-cp311-cp311-win32.whl (419.8 kB view details)

Uploaded CPython 3.11Windows x86

ufal_morphodita-1.11.3.3-cp311-cp311-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ufal_morphodita-1.11.3.3-cp311-cp311-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ufal_morphodita-1.11.3.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (409.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ufal_morphodita-1.11.3.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (380.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ufal_morphodita-1.11.3.3-cp311-cp311-macosx_11_0_arm64.whl (407.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ufal_morphodita-1.11.3.3-cp311-cp311-macosx_10_9_x86_64.whl (417.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ufal_morphodita-1.11.3.3-cp310-cp310-win_arm64.whl (659.9 kB view details)

Uploaded CPython 3.10Windows ARM64

ufal_morphodita-1.11.3.3-cp310-cp310-win_amd64.whl (487.1 kB view details)

Uploaded CPython 3.10Windows x86-64

ufal_morphodita-1.11.3.3-cp310-cp310-win32.whl (419.8 kB view details)

Uploaded CPython 3.10Windows x86

ufal_morphodita-1.11.3.3-cp310-cp310-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

ufal_morphodita-1.11.3.3-cp310-cp310-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

ufal_morphodita-1.11.3.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (409.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ufal_morphodita-1.11.3.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (380.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ufal_morphodita-1.11.3.3-cp310-cp310-macosx_11_0_arm64.whl (407.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ufal_morphodita-1.11.3.3-cp310-cp310-macosx_10_9_x86_64.whl (417.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

ufal_morphodita-1.11.3.3-cp39-cp39-win_arm64.whl (659.9 kB view details)

Uploaded CPython 3.9Windows ARM64

ufal_morphodita-1.11.3.3-cp39-cp39-win_amd64.whl (487.1 kB view details)

Uploaded CPython 3.9Windows x86-64

ufal_morphodita-1.11.3.3-cp39-cp39-win32.whl (419.8 kB view details)

Uploaded CPython 3.9Windows x86

ufal_morphodita-1.11.3.3-cp39-cp39-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

ufal_morphodita-1.11.3.3-cp39-cp39-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

ufal_morphodita-1.11.3.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (409.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ufal_morphodita-1.11.3.3-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (380.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ufal_morphodita-1.11.3.3-cp39-cp39-macosx_11_0_arm64.whl (407.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ufal_morphodita-1.11.3.3-cp39-cp39-macosx_10_9_x86_64.whl (417.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

ufal_morphodita-1.11.3.3-cp38-cp38-win_amd64.whl (487.1 kB view details)

Uploaded CPython 3.8Windows x86-64

ufal_morphodita-1.11.3.3-cp38-cp38-win32.whl (419.7 kB view details)

Uploaded CPython 3.8Windows x86

ufal_morphodita-1.11.3.3-cp38-cp38-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

ufal_morphodita-1.11.3.3-cp38-cp38-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

ufal_morphodita-1.11.3.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (409.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ufal_morphodita-1.11.3.3-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (380.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ufal_morphodita-1.11.3.3-cp38-cp38-macosx_11_0_arm64.whl (407.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

ufal_morphodita-1.11.3.3-cp38-cp38-macosx_10_9_x86_64.whl (416.8 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file ufal_morphodita-1.11.3.3.tar.gz.

File metadata

  • Download URL: ufal_morphodita-1.11.3.3.tar.gz
  • Upload date:
  • Size: 199.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for ufal_morphodita-1.11.3.3.tar.gz
Algorithm Hash digest
SHA256 26f59be734227d2f8017131e94dc5198fccb4d71d7f3fad0b04f3bfa1858d59b
MD5 b8c2936cceb67bb515a25f04bb6895bc
BLAKE2b-256 508433e291dc9b67d1d1f8bb346c895b6481c4713a78d7530ad477cfa3dc6f79

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 978c898d9ce7af027207411db258ddbf3aa01c8b449b261be42fefd319185b90
MD5 a0f2c17a202a46715ebaff0c052f2907
BLAKE2b-256 c9e3081008b9d728604bb3257d7a906c9a15a6b4331b4222b242a1762e8f8163

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ecaf4f0ad3c43db075df2dd7ea2fa044772af1a7601975eaa88c9260504820eb
MD5 51f55c9ee1b91d24143edbc3f5089aab
BLAKE2b-256 7ee3c95bacd29f94d012adf99ef85fe507df2cb9a7feb9957eb43adca52c89a1

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 db3f97095c76e7b8baef0ceeda30286453a873f7f777a63717da52360ae9f22c
MD5 7a8e1029e35069e9ce815af15524fd54
BLAKE2b-256 0c66c6bae969170af6785acc2b4cdcc198de464b7d657733bf2344fa2e8d2718

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63ba6cb84b42213368b8b4131a0a2c1545383071c699a3952fa77237b73579a0
MD5 ae1e833d9a95fce92ce604c0a0adc0d4
BLAKE2b-256 782e7632ced000eeb961b9eafac13c150ba7131c0d3efaed59c897fdaa7ea3ad

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 064bb89f5a39afdd2e1b07b22dada9b64c3c14db08c3711af83b488743e46ceb
MD5 102f5410e2086a16caf878b06ce3763c
BLAKE2b-256 e97b0ab47620ceab06442fb473fa259d5160e6f36bdc5ff2cac6a774ea7aace5

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36930287edd44e324dbbbbf730caaa35d3501582f9cb23760acaf41bed3e3ca9
MD5 c900888fbcf1ad11f8076d3e84b1a4d7
BLAKE2b-256 fbba53d6502f09c80d0e3e67e384c63a12a40ed99e1aefa48b172e35d1defb2a

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 49ad9596519a83eed9d83c556606c3fce791d27889ab630c9823485c330b238d
MD5 5a1d7a19220fb7819544921fb0c48f3a
BLAKE2b-256 59b6ec1504bf45bc6ba3640ee25e3907a718a6640e711bd6c939199d242fc682

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9858883f55c857f1d0e4b4cbc6cb7dafe74db8359300b38fd873e33f867674b0
MD5 d4d08cbd7801c8392c8dba7c6ae1bb8e
BLAKE2b-256 c856cb77cf4a9496714d9fb414ceb497b3b506601180e08a9a6ae6db87684b48

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8bf175ba249131356b72449a70d21f453f3c4b95c249239e0278da98055e8329
MD5 bd77d6ab3a795785538c7009f54fd0dd
BLAKE2b-256 36a64d43181cdfdb90443353b28f056a402b709fdafed5c0b7ac11a97eec7315

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4c809ecfd006f1b80a0eca5a1eaa247731c35db8995c5b7d50c961de937a2a6d
MD5 2dfbec1d853e274c7bade7b3083977e3
BLAKE2b-256 af15a0eb921a28438753620740bf252f6c6645d2d764da42be177b09617d1a44

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 429df2408ae5385f6a524433a8574e81ce7746e72a8673cd292950b37499c113
MD5 5c6ead84982331afae00231f22c252a8
BLAKE2b-256 217a4c680d8c2ea423486deb9f086f0e61b9c983e4b83ba6282e6e2d6b86ebb5

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8fcb2a80904467aae1a0159daaa6a1cfef8b895b72c9e2620eb2a68aad44e50a
MD5 1a46b6850292bfafe0790c4d557edac4
BLAKE2b-256 e8f30456fbc1a460d5ab23e6311edc4f60b1a6f801eb0d933c12dd8071447c55

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6cb8711fd7e9597be77531f4b24f40baee3f1f13fe44e6497b66e3c973f7aea
MD5 524395770222ae4db66a5e6e713b5fc4
BLAKE2b-256 1df0df2dddb5db57fb6e885493a16cf1346856a2571481f4d7659ceceb920623

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab1a49790b0641413bc4e4d41ca4a0e7bc53584cd38ef9c2dcc4683ba8c7e6d0
MD5 ef95e0f34f234cdc9e45242eacb6bcaa
BLAKE2b-256 0127b4c5883e1f4bd4c0e7eccc9c19c0c3da023aec8d2a289465dd613d186ac8

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 863fe9a5308f88ef9112501ec15e0365b5e8d483deab9d16b995df20d7fedb31
MD5 efb73d50a628b3173c670635df0eb339
BLAKE2b-256 b5f55fd1026b55b29a1bc3b66bedb6f760948b45670dd72da954f1b6cbf0d2e4

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0746fc4e828e80eb3104182209525b4fde0246c1d285c5796e07853f97a580d1
MD5 4d7a0f4eddcf80eea7d6968ecbb09669
BLAKE2b-256 7b8526d5cbd2543d7634797326fd03268a950c69275c62c7f2b0d29c4037a1b9

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7db11860c99bc08187f61d340a49476c059d0d601fc49f818d9ea0adff2bcc7
MD5 419c8666cd1e3d20a75aeeed23ed162f
BLAKE2b-256 2b187b22b87e36fcd7fa6771b2032ba628e7b46325a01deb6aa769ebd448eeb2

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 87e6d786a29ea1c79c9386b7e807752c9e4bc9ca797232c6e5122fa959b0d2fa
MD5 485d9a76e5afe1fac2a69fa9d31cd8f6
BLAKE2b-256 4c569c278c480adf4510b3269db20681734b900c820f97d560e8a06e7955dd26

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 74c15441d41395e7d118ad13cb1c1e74bc02007ec8acba20df70c3baa801e0d6
MD5 95dcfb3ef9c79f705ad6b0b5251e60f1
BLAKE2b-256 76f281b878e4a886d633361196aa7d9bddd144be74ff47ebe0a5087e27680ae9

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 48a608befcf65bf671428ed77f10a4ecd0bf9a04aa7dfbb5069d657917b6c167
MD5 5203ad04dfdfbade59d280eda29e9a25
BLAKE2b-256 f72a484af58f85c64021450fdd02212d6c740d17ab553d9578a13dacaf2b85a7

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0d0d490fabdfa7f0bfc957eef8ace4c4bdf9545e1aa8e77ca85fdd2f2632235e
MD5 793afb8bd67e7f5c5591bf7c4013ae39
BLAKE2b-256 262e0354c3ea2016d80a2b580b355b16aee5fd924ee3de86c00ec02d1486411a

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fbf9f44aace5738cb9ca8206aa1349ee248557f37c3c35cc44bf4a1cc3d10d4
MD5 9e6e3958f1d564968f13381a53ae92f6
BLAKE2b-256 b12c190dae71690d40020795a1b67e7947a847c4c6d2191cf987253f6f63bef0

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 078ce676bfd4662616e590972379e29f310998fdb3e9eba0fbe8bf66d6f3238d
MD5 aad739155e39bb95125dd34be6097eee
BLAKE2b-256 5c042504417b04b92068ef0ce75aa37720bbc9a2994334ee01f15702ac5f7e14

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 79af9a2ca580654cdaf9e76d6aa97160147eeddd2ee2a554d4e37c45e6c4eb13
MD5 97d6b1757f1e34ef3745ad28d4d80a3b
BLAKE2b-256 78ee2028e35a53de106282aeccb87fc6310a6dad34ec05ec2c7820b2d55f638f

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 10345c54c922eca19f749ce23057ae9d26f20a955d2d8c9ebce57d528ef73a78
MD5 dfe8bc776dca9ff6585351ad736f8e5d
BLAKE2b-256 a9a34625efefe32abde60141d15cf3dac80b7315a2bf813e95628c3a2d96bd11

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10cf62aca1e609079cec4a4991d7cb31cf1ca4d036702b3e90256a73b46e8bae
MD5 530c66eec186475a1c0ac8a54c1d1eb2
BLAKE2b-256 8ae3df9a6800b7378299353823f06d50fa6eef1c97be8a98d60d5f3ae4453c0d

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 61a63010af0ef10b963a0948103a5a07b8973ac29709c51045fbbbd8d77d284a
MD5 3ea396307cb7b5f68fdd4999897d9ee0
BLAKE2b-256 1b570363f3dfaca485bff06436d1cc1ed422ad4fce629deb94ed4b8de3179582

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 fb97fc513ff102d572b15b1d11e8f1c276beb4bb8fee13587c3cd8e2ffd17cf4
MD5 6afbb652e444a05fc844e366ef8d38c4
BLAKE2b-256 d6e282649e0fbf7f1d9b6b7062efae6a948072132dde73aca9d3426be9c07001

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5a1127943efcdd9efb4fdcea1b5296d25566c2d1d502c4bd169abb753a45b530
MD5 d95dcfdbae8a19a009e9b50d7d1c2166
BLAKE2b-256 03efb9fa9d625824dd14c716b6fe622ebc6607ed93efcc4bd16fa4560eadf0df

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f014e185d8029e1ee9f1f07387427aa8dda9a2ef0bc6665e14842c682c98b123
MD5 4430e88dd0fa136939fe471a1f7713d6
BLAKE2b-256 c364172524e5cb0c9b34890ea162b623debe2f1f1360fb61dfc7f75533751a9a

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c47dda133f1f1a2ed040a8778ef97862af5825857b7e7e5540ab610a00c2f3b
MD5 05960e3d0feaf1c63ade1d072704ed76
BLAKE2b-256 484cc71b30be581f070509b81e018ac39354a365107a7b4c11c948ffb2283978

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f183292256283ada01652a381a3f51c68e8efd7ebe617700f972561bb8972121
MD5 4c568ff3c0184dfcc7c26d74b017d53e
BLAKE2b-256 a8050b4799a01b9c59a662ef5a078961dad8e78a32a0ff56db95d6aea28b235b

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 545ad07278b73923a6edb5d9360f51fa0d1755ba9e904fe5146927a446c80caa
MD5 c78c365a0b38a93e76f6cb1c499eb64f
BLAKE2b-256 da5cf2864b059b37e189bd4ef6559d5b8a7414e78a698cd8087c9b9328cb2468

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9049fa45a3f38fb6da2cdb45b344299fe0abe79cf68a9232b9816feec536672c
MD5 c93ba52894e4aef0c18b7ba5b060faec
BLAKE2b-256 804a28d01614ab73f1274429fecfeafd8a4f5f7a4c22015f9bd93f324ef46cca

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1448496fd7d1afc085a0423b7110f5485fac0c6a77114cea99e8bed0f5bdf7bb
MD5 39768e5d6c85d8ec0d753a105f98ed7b
BLAKE2b-256 98f69fc8e91b9d9a5f432c8df7e860847a769492f159d1a2a6542f6f9fad4e44

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9e0e618026324ec8e2148bba2a0cca2ecc503121d4525d54e31407adeefdaf63
MD5 f9a92873c0b20614449c2d354fecd3ab
BLAKE2b-256 eb7b9ca3fe922530c51d65c9b9cd1f2201b2c3e948274a017e6ab9ef84cfca7a

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 998bb059a07b12f46a24352905042ed035fd585288e910bda0c14fb60286f896
MD5 735764b17a1ee562b6b07286d2637d57
BLAKE2b-256 8b60879dab1ba448047b9ff439f738b19b5394c1223cf8c6ded3d050f115406d

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e6b373695349c646c91a11c86339767e8811aa3ca3cb9a7fb0fce2314c57e958
MD5 21420596bad9c819312cb0a70a653395
BLAKE2b-256 bf6db3f1c3abf3c5daeb5e25eae410aac34ab237e96dadb53e3f9caed464b494

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 88ee6235ff8185be78e28edccd949f80076577dd09e70a5c0e20aac710acb1f8
MD5 3699275ad08bb69c790474ba346904f4
BLAKE2b-256 c24d050807b83c7e727f592d4671a982a4fb11bb7b733e4d63e8d3c299da3bf0

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b3c53589ff3842243678425ef2ff5c1961933320b15c8fc096685021f7927b8
MD5 0c64b9a538852bf4e345f2ab73206d17
BLAKE2b-256 7a9a227b925a5871c0ca86a883a230f7a84ebf47fa79193c38a20cb6d6caab71

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8cc6ed371164cc0ef40ce7c343bd49c4a3c945f2b0f3df2b0d8b073acd1d7322
MD5 dc3c9a5b515228360c278c48dbb814e5
BLAKE2b-256 9381da064d300762f471c31285b320f499e33556113224491343c0bb5b388db1

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 169bd96820669cc579356cc6a90b7216a8872f6107d5e8d0ae739b4ce43238f4
MD5 4519393c2d832a7931aea1c6a482ce7b
BLAKE2b-256 45bcde0bbea3af85b44aa6e198abd0f9c1400bb813e2aa75f6829657c9de2c64

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84d6c31f460b8715e9cd282bf3c39b4db00b870c444cb4cf29537aa1700088be
MD5 7973aae92e8b221381080bc2fe971084
BLAKE2b-256 6fcbb7e8b4f785160501df72293cab7fc031e0e5bd6e8985d702256d0f45fe6a

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0d2d002a7347a19ba6f6cce2a033ced96fa8fc83bd1be6663144123adc5b763
MD5 e512c97c8c61d0fb8050fb5b1fe4d581
BLAKE2b-256 9bf1525648043afbaa08422125799db7cdea71df7978c25bf17d6ad8209d7a0c

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 37772961c13d9a83509852eda68162c97fafeb040d23cbe0bf864404c1ac43cf
MD5 c5e8757ea2fff719f80962c7a96202d2
BLAKE2b-256 1aa3bf580895e622ed52e084979bff61b9977831fbfeac29249f885d45df0f2f

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 036eb7a342ec6bc058cd101f26bb09f9ac4019877efe92d511853ade6e655f56
MD5 d66f71df15ca35f988e766bbbd3c4060
BLAKE2b-256 4f3fcc5b277bc19d3619f3300512146073fe6f0fad5be34184d3232a8d4d6eb9

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 82279c80d4acf84f7219356e2f21bfe4c862618dc0e013cb7a4e31fe389b31c8
MD5 c475b316146d5236e850305f458746eb
BLAKE2b-256 abba687bab1d265843da0573b60475c7d892783034fceef3d8f3ab79277b57f9

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4c830f44986052e9e99394047b5c33189d747f43f5d1be4589d48839d3435115
MD5 26ec8656aefdcc016551baa099388455
BLAKE2b-256 b634381261328a27b6e1a2d08da2c41d7e402ad003f003af5e7be24290f8e46d

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f9c8785e1891b171789c57438daadb7273c108a4ad127aeb1b9d2e8b99d3115
MD5 c0abcf2c5e085b75edc06abdcdc57387
BLAKE2b-256 81ac26ffc5bddd57339bca62abd3a7dcf7c8eccbebd35e6bba482eefd8a1c692

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2cb36916b209ce23dc2e92f6d6241aad175b80c6623ddd0e483b8257427fe0fe
MD5 7e264a6862b92e51ce6c1aa7d79f385c
BLAKE2b-256 63b56fffaf62d5c8adb792ee15fee266a61023d447a781c4b580d7283b68b235

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9656e21d01b9e6159ba91f8e8b5acf7f63272cc7c6f2bc74e27950c62ff97668
MD5 b79aaf033a3bd079b8b66cd6009decca
BLAKE2b-256 368298048e4d448e6cc330326da1f409989850f11d40542fbfa0fff53fd3488c

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 217f8cc6ae74d36574b0118e80ebb8eb6eb4445935dc5d62a7f9e74a14cbb293
MD5 c0a2fad80c4e77fe47271eb9bdac6a5b
BLAKE2b-256 f273b9e0ef4d499174385ed4852520cc2bba3320e320ef79f1ebd15fbaf533f4

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1cd6ffc69a91db7d8cc6e7dd26f0d654140344d0ea5e45b5c1179336f07f56f
MD5 cff8ec7617be1e410f222fcd1b115918
BLAKE2b-256 702d2f58a182b1a6fea9537ed0d6f182fc0e908a7107bacaafae6738859de0fe

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 39e4de66d2af4239d41ea4a33de3b4158119290b719355a7a7151d6f103d7912
MD5 7536bf2180263a904c700f84dceedff2
BLAKE2b-256 672e7d12e97d3596ceb51b1b3363256aa7c84f18dccde5404396426034043e32

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 0f1b0354c2d3f5407ee5c8678d1ad951444b215bd31ec6f910a638e5c5fd9ec4
MD5 b227b33e15d45e20db2e0d6e0235318e
BLAKE2b-256 263939d884a8e35370966a94b15b8ee41a0ab3154fada87f8559d9134cc47952

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f31b495ba43aa69911648a2f968a2219b34237c31c1ed5149990f1155b41a347
MD5 ba7fe6f99ebf724a44f287770b6bb2f1
BLAKE2b-256 53c0df33464a0eb7c1e35349674aaa3edd0cfdfb074a2130e98493790bd2dad5

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cf35160726be3a685ee923c06d889d0fb6ad28351da623eb788115a0bc30825a
MD5 0e68f277b8560972f87e40a827819804
BLAKE2b-256 70df94b82ede9d3f627cf5513e1f3a24e2cb905faf64613193c9346a54b78cba

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75e754946e7e395468d8dcea6a69eb69f994a0046c71836b13669bff61a600f9
MD5 5eaf4ba3871a19f93c7d4afc09b65930
BLAKE2b-256 bc50ae14d72cb30f5cb5b53e57573643add91ae009dd0c9aa1a9a9837b81cdad

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fee76f42f7da67bbdf71b4b23f20bc487986d9bf1ad24f8e0c7d8646b1421226
MD5 c4715c30b08c5dd05429419ef13b9f80
BLAKE2b-256 78212b3961816a02d31fdeb551a8fce3dc4869aecb4b02a95e2fb205dd4627e3

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad60f9371c3a63b5429090cb4834c2ed4b5d6ffa03a74cc4a0f236d95bd070dd
MD5 d4322b9f4bca0b319f31928820467e4e
BLAKE2b-256 9976a958e1b1b0fd0c6aee59fb1eddc9acdd9b5dc9367f5f1f972049dcf9fc4d

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2272c01ad97edcba1b3d5e75214726f001b15e05f58c0a58d6dda76dc8c93771
MD5 8919fd2025a5294e9f7ac7273514b1f9
BLAKE2b-256 ce6e7d4355d7cb3f1ac439394eda006fd755725623629f0adcdca24a6fce021a

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b57e376e6ab7762024f8e6487a0f033082f9ff4ce3ec569795f8203b8cd0762
MD5 f71a40c43843ce5af7a1a134adb1e5fe
BLAKE2b-256 b8e5d1a0806daf306d06bd65bb5abf11b97fe95ac2d0ecee904612b64a9295cf

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 431442c0a6c11c3c5cca88d4d6ea0a3218e0c10ac8ed6ddf9e0054dc2b988793
MD5 f1bda7689657210470f2ae38969c87ef
BLAKE2b-256 7f24e7a8cdbb425e524f2b99e6edfdc8bfd12b9954154831a1cb1a9f74850673

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6a09d9efda1f62c797ae740e5741c0e82f2cc4df0f433f6bf34350c1b507ab1c
MD5 52a99283d2448abb9771040ee8171a72
BLAKE2b-256 8b9d763fe0337cb58fdcff5b91583a418eb9e7bee001c7d23531e4bdea548c29

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 13f71b31fcc8056850177b0401296e30facd102dbdf735de37636253a3abf0dc
MD5 eb49208054ee5f9fa55ef87fb8074840
BLAKE2b-256 f2b2fac7ea3741944f2a259459f7db367757d15e4a7f9fa5bb5de068c5dd4e39

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6afbbd6705b5416513e57449e85db6754ee4491a7471ab92b3ca3ca4f23f9a6
MD5 25fc7d636dc810dd0c8cccddb432fb47
BLAKE2b-256 57bbc722b96da41409e82aa7c2149f0b74464e644aa949bd66572adc6b1ef984

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28c76a8120faf28a007277a408a03251f4f4c8637b98fbf2dd2074d63740c575
MD5 8270935913727e5bf10738e748d07e81
BLAKE2b-256 0c1dc971c2113ae1fef8eb48619ad1607bdb6136f4bbd21b81b067cd160816fb

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e9a1620de20bb8a2f170da82dee3471eabe699f482238f330bea3f6dd74d8316
MD5 c4c79a52958234dcdf3fc82c7a1ae392
BLAKE2b-256 c1ff5bddfbaacf2f696f00ec9cf795f338ae85d637b5cadd0c07a22c7a192ec6

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ebb54c79d71f2289e48f7360dfba1e803f58a23ebca831253eb9ad53e53ceb29
MD5 091eadad602d6fa60f6aac4801c933a7
BLAKE2b-256 cf69f0c8bfcb092b044545b227c649b2ac4d698eb6a4b7495b8d80cc8ae5ebc9

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67f74e63af83793528bbb649f2b491d21a37708f9354411189ac85de7df939a1
MD5 661bed6ec3d07ca7fefd2763972e44be
BLAKE2b-256 3e8c8f2e080d88033db46b681b2f785d67ec147b75930f6ffcc81fc68f279497

See more details on using hashes here.

File details

Details for the file ufal_morphodita-1.11.3.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ufal_morphodita-1.11.3.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3ed1551997c93c49a5d17f41aa903e2ed98b86fa263e5efb8f4d178719ef9591
MD5 94ce32f043bf299882ae502716a6fcf0
BLAKE2b-256 bcfc0a0412b83bf136e6a159be18030b0f5c1817b988915ebe62f3f87036097d

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.11.3.3 This release

72 files

1.11.3.1

72 files

1.11.2.1

69 files

1.11.1.1

59 files

1.11.0.3

47 files

1.11.0.1

47 files

1.10.1.1

21 files

1.9.2.3

1 file

1.9.2.1

1 file

1.9.1.1

1.3.0.1

1 file

1.2.0.1

1 file

1.1.0.1

1 file

1.0.0.2

1 file

Supported by

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