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>

Release files for ufal.morphodita 1.11.3.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for ufal.morphodita 1.11.3.3
File Size Uploaded
ufal_morphodita-1.11.3.3.tar.gz 199.7 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for ufal.morphodita 1.11.3.3
File
ufal_morphodita-1.11.3.3-cp314-cp314t-win_arm64.whl CPython 3.14 CPython 3.14 free-threading Windows ARM64 Details
ufal_morphodita-1.11.3.3-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
ufal_morphodita-1.11.3.3-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
ufal_morphodita-1.11.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
ufal_morphodita-1.11.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
ufal_morphodita-1.11.3.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
ufal_morphodita-1.11.3.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
ufal_morphodita-1.11.3.3-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
ufal_morphodita-1.11.3.3-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
ufal_morphodita-1.11.3.3-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
ufal_morphodita-1.11.3.3-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
ufal_morphodita-1.11.3.3-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
ufal_morphodita-1.11.3.3-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
ufal_morphodita-1.11.3.3-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
ufal_morphodita-1.11.3.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
ufal_morphodita-1.11.3.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
ufal_morphodita-1.11.3.3-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
ufal_morphodita-1.11.3.3-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
ufal_morphodita-1.11.3.3-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
ufal_morphodita-1.11.3.3-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
ufal_morphodita-1.11.3.3-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
ufal_morphodita-1.11.3.3-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
ufal_morphodita-1.11.3.3-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
ufal_morphodita-1.11.3.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
ufal_morphodita-1.11.3.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
ufal_morphodita-1.11.3.3-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
ufal_morphodita-1.11.3.3-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
ufal_morphodita-1.11.3.3-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
ufal_morphodita-1.11.3.3-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
ufal_morphodita-1.11.3.3-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
ufal_morphodita-1.11.3.3-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
ufal_morphodita-1.11.3.3-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
ufal_morphodita-1.11.3.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
ufal_morphodita-1.11.3.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
ufal_morphodita-1.11.3.3-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
ufal_morphodita-1.11.3.3-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
ufal_morphodita-1.11.3.3-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
ufal_morphodita-1.11.3.3-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
ufal_morphodita-1.11.3.3-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
ufal_morphodita-1.11.3.3-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
ufal_morphodita-1.11.3.3-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
ufal_morphodita-1.11.3.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
ufal_morphodita-1.11.3.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
ufal_morphodita-1.11.3.3-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
ufal_morphodita-1.11.3.3-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
ufal_morphodita-1.11.3.3-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
ufal_morphodita-1.11.3.3-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
ufal_morphodita-1.11.3.3-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
ufal_morphodita-1.11.3.3-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
ufal_morphodita-1.11.3.3-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
ufal_morphodita-1.11.3.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
ufal_morphodita-1.11.3.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
ufal_morphodita-1.11.3.3-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
ufal_morphodita-1.11.3.3-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
ufal_morphodita-1.11.3.3-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
ufal_morphodita-1.11.3.3-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
ufal_morphodita-1.11.3.3-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
ufal_morphodita-1.11.3.3-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
ufal_morphodita-1.11.3.3-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
ufal_morphodita-1.11.3.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
ufal_morphodita-1.11.3.3-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
ufal_morphodita-1.11.3.3-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
ufal_morphodita-1.11.3.3-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
ufal_morphodita-1.11.3.3-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
ufal_morphodita-1.11.3.3-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
ufal_morphodita-1.11.3.3-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
ufal_morphodita-1.11.3.3-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
ufal_morphodita-1.11.3.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
ufal_morphodita-1.11.3.3-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
ufal_morphodita-1.11.3.3-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
ufal_morphodita-1.11.3.3-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details

Total release size: 47.8 MB

Release files / ufal_morphodita-1.11.3.3.tar.gz

Download URL ufal_morphodita-1.11.3.3.tar.gz
Size 199.7 kB
Tags Source
SHA-256 checksum
How to use checksums
26f59be734227d2f8017131e94dc5198fccb4d71d7f3fad0b04f3bfa1858d59b
BLAKE2b-256 checksum
How to use checksums
508433e291dc9b67d1d1f8bb346c895b6481c4713a78d7530ad477cfa3dc6f79
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp314-cp314t-win_arm64.whl

Download URL ufal_morphodita-1.11.3.3-cp314-cp314t-win_arm64.whl
Size 694.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
978c898d9ce7af027207411db258ddbf3aa01c8b449b261be42fefd319185b90
BLAKE2b-256 checksum
How to use checksums
c9e3081008b9d728604bb3257d7a906c9a15a6b4331b4222b242a1762e8f8163
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp314-cp314t-win_amd64.whl

Download URL ufal_morphodita-1.11.3.3-cp314-cp314t-win_amd64.whl
Size 512.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
ecaf4f0ad3c43db075df2dd7ea2fa044772af1a7601975eaa88c9260504820eb
BLAKE2b-256 checksum
How to use checksums
7ee3c95bacd29f94d012adf99ef85fe507df2cb9a7feb9957eb43adca52c89a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp314-cp314t-win32.whl

Download URL ufal_morphodita-1.11.3.3-cp314-cp314t-win32.whl
Size 438.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
db3f97095c76e7b8baef0ceeda30286453a873f7f777a63717da52360ae9f22c
BLAKE2b-256 checksum
How to use checksums
0c66c6bae969170af6785acc2b4cdcc198de464b7d657733bf2344fa2e8d2718
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 1.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
63ba6cb84b42213368b8b4131a0a2c1545383071c699a3952fa77237b73579a0
BLAKE2b-256 checksum
How to use checksums
782e7632ced000eeb961b9eafac13c150ba7131c0d3efaed59c897fdaa7ea3ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL ufal_morphodita-1.11.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
064bb89f5a39afdd2e1b07b22dada9b64c3c14db08c3711af83b488743e46ceb
BLAKE2b-256 checksum
How to use checksums
e97b0ab47620ceab06442fb473fa259d5160e6f36bdc5ff2cac6a774ea7aace5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 406.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
36930287edd44e324dbbbbf730caaa35d3501582f9cb23760acaf41bed3e3ca9
BLAKE2b-256 checksum
How to use checksums
fbba53d6502f09c80d0e3e67e384c63a12a40ed99e1aefa48b172e35d1defb2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL ufal_morphodita-1.11.3.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 377.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
49ad9596519a83eed9d83c556606c3fce791d27889ab630c9823485c330b238d
BLAKE2b-256 checksum
How to use checksums
59b6ec1504bf45bc6ba3640ee25e3907a718a6640e711bd6c939199d242fc682
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp314-cp314t-macosx_11_0_arm64.whl

Download URL ufal_morphodita-1.11.3.3-cp314-cp314t-macosx_11_0_arm64.whl
Size 419.8 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9858883f55c857f1d0e4b4cbc6cb7dafe74db8359300b38fd873e33f867674b0
BLAKE2b-256 checksum
How to use checksums
c856cb77cf4a9496714d9fb414ceb497b3b506601180e08a9a6ae6db87684b48
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp314-cp314t-macosx_10_15_x86_64.whl
Size 441.8 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
8bf175ba249131356b72449a70d21f453f3c4b95c249239e0278da98055e8329
BLAKE2b-256 checksum
How to use checksums
36a64d43181cdfdb90443353b28f056a402b709fdafed5c0b7ac11a97eec7315
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp314-cp314-win_arm64.whl

Download URL ufal_morphodita-1.11.3.3-cp314-cp314-win_arm64.whl
Size 686.9 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
4c809ecfd006f1b80a0eca5a1eaa247731c35db8995c5b7d50c961de937a2a6d
BLAKE2b-256 checksum
How to use checksums
af15a0eb921a28438753620740bf252f6c6645d2d764da42be177b09617d1a44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp314-cp314-win_amd64.whl

Download URL ufal_morphodita-1.11.3.3-cp314-cp314-win_amd64.whl
Size 503.5 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
429df2408ae5385f6a524433a8574e81ce7746e72a8673cd292950b37499c113
BLAKE2b-256 checksum
How to use checksums
217a4c680d8c2ea423486deb9f086f0e61b9c983e4b83ba6282e6e2d6b86ebb5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp314-cp314-win32.whl

Download URL ufal_morphodita-1.11.3.3-cp314-cp314-win32.whl
Size 433.1 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
8fcb2a80904467aae1a0159daaa6a1cfef8b895b72c9e2620eb2a68aad44e50a
BLAKE2b-256 checksum
How to use checksums
e8f30456fbc1a460d5ab23e6311edc4f60b1a6f801eb0d933c12dd8071447c55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp314-cp314-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b6cb8711fd7e9597be77531f4b24f40baee3f1f13fe44e6497b66e3c973f7aea
BLAKE2b-256 checksum
How to use checksums
1df0df2dddb5db57fb6e885493a16cf1346856a2571481f4d7659ceceb920623
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL ufal_morphodita-1.11.3.3-cp314-cp314-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
ab1a49790b0641413bc4e4d41ca4a0e7bc53584cd38ef9c2dcc4683ba8c7e6d0
BLAKE2b-256 checksum
How to use checksums
0127b4c5883e1f4bd4c0e7eccc9c19c0c3da023aec8d2a289465dd613d186ac8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 410.3 kB
Tags CPython 3.14 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
863fe9a5308f88ef9112501ec15e0365b5e8d483deab9d16b995df20d7fedb31
BLAKE2b-256 checksum
How to use checksums
b5f55fd1026b55b29a1bc3b66bedb6f760948b45670dd72da954f1b6cbf0d2e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL ufal_morphodita-1.11.3.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 380.5 kB
Tags CPython 3.14 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0746fc4e828e80eb3104182209525b4fde0246c1d285c5796e07853f97a580d1
BLAKE2b-256 checksum
How to use checksums
7b8526d5cbd2543d7634797326fd03268a950c69275c62c7f2b0d29c4037a1b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp314-cp314-macosx_11_0_arm64.whl

Download URL ufal_morphodita-1.11.3.3-cp314-cp314-macosx_11_0_arm64.whl
Size 414.4 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a7db11860c99bc08187f61d340a49476c059d0d601fc49f818d9ea0adff2bcc7
BLAKE2b-256 checksum
How to use checksums
2b187b22b87e36fcd7fa6771b2032ba628e7b46325a01deb6aa769ebd448eeb2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp314-cp314-macosx_10_15_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp314-cp314-macosx_10_15_x86_64.whl
Size 437.0 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
87e6d786a29ea1c79c9386b7e807752c9e4bc9ca797232c6e5122fa959b0d2fa
BLAKE2b-256 checksum
How to use checksums
4c569c278c480adf4510b3269db20681734b900c820f97d560e8a06e7955dd26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp313-cp313-win_arm64.whl

Download URL ufal_morphodita-1.11.3.3-cp313-cp313-win_arm64.whl
Size 657.1 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
74c15441d41395e7d118ad13cb1c1e74bc02007ec8acba20df70c3baa801e0d6
BLAKE2b-256 checksum
How to use checksums
76f281b878e4a886d633361196aa7d9bddd144be74ff47ebe0a5087e27680ae9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp313-cp313-win_amd64.whl

Download URL ufal_morphodita-1.11.3.3-cp313-cp313-win_amd64.whl
Size 487.5 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
48a608befcf65bf671428ed77f10a4ecd0bf9a04aa7dfbb5069d657917b6c167
BLAKE2b-256 checksum
How to use checksums
f72a484af58f85c64021450fdd02212d6c740d17ab553d9578a13dacaf2b85a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp313-cp313-win32.whl

Download URL ufal_morphodita-1.11.3.3-cp313-cp313-win32.whl
Size 420.4 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
0d0d490fabdfa7f0bfc957eef8ace4c4bdf9545e1aa8e77ca85fdd2f2632235e
BLAKE2b-256 checksum
How to use checksums
262e0354c3ea2016d80a2b580b355b16aee5fd924ee3de86c00ec02d1486411a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp313-cp313-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4fbf9f44aace5738cb9ca8206aa1349ee248557f37c3c35cc44bf4a1cc3d10d4
BLAKE2b-256 checksum
How to use checksums
b12c190dae71690d40020795a1b67e7947a847c4c6d2191cf987253f6f63bef0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL ufal_morphodita-1.11.3.3-cp313-cp313-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
078ce676bfd4662616e590972379e29f310998fdb3e9eba0fbe8bf66d6f3238d
BLAKE2b-256 checksum
How to use checksums
5c042504417b04b92068ef0ce75aa37720bbc9a2994334ee01f15702ac5f7e14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 410.2 kB
Tags CPython 3.13 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
79af9a2ca580654cdaf9e76d6aa97160147eeddd2ee2a554d4e37c45e6c4eb13
BLAKE2b-256 checksum
How to use checksums
78ee2028e35a53de106282aeccb87fc6310a6dad34ec05ec2c7820b2d55f638f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL ufal_morphodita-1.11.3.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 379.8 kB
Tags CPython 3.13 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
10345c54c922eca19f749ce23057ae9d26f20a955d2d8c9ebce57d528ef73a78
BLAKE2b-256 checksum
How to use checksums
a9a34625efefe32abde60141d15cf3dac80b7315a2bf813e95628c3a2d96bd11
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp313-cp313-macosx_11_0_arm64.whl

Download URL ufal_morphodita-1.11.3.3-cp313-cp313-macosx_11_0_arm64.whl
Size 414.1 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
10cf62aca1e609079cec4a4991d7cb31cf1ca4d036702b3e90256a73b46e8bae
BLAKE2b-256 checksum
How to use checksums
8ae3df9a6800b7378299353823f06d50fa6eef1c97be8a98d60d5f3ae4453c0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp313-cp313-macosx_10_13_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp313-cp313-macosx_10_13_x86_64.whl
Size 437.0 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
61a63010af0ef10b963a0948103a5a07b8973ac29709c51045fbbbd8d77d284a
BLAKE2b-256 checksum
How to use checksums
1b570363f3dfaca485bff06436d1cc1ed422ad4fce629deb94ed4b8de3179582
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp312-cp312-win_arm64.whl

Download URL ufal_morphodita-1.11.3.3-cp312-cp312-win_arm64.whl
Size 657.5 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
fb97fc513ff102d572b15b1d11e8f1c276beb4bb8fee13587c3cd8e2ffd17cf4
BLAKE2b-256 checksum
How to use checksums
d6e282649e0fbf7f1d9b6b7062efae6a948072132dde73aca9d3426be9c07001
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp312-cp312-win_amd64.whl

Download URL ufal_morphodita-1.11.3.3-cp312-cp312-win_amd64.whl
Size 487.6 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
5a1127943efcdd9efb4fdcea1b5296d25566c2d1d502c4bd169abb753a45b530
BLAKE2b-256 checksum
How to use checksums
03efb9fa9d625824dd14c716b6fe622ebc6607ed93efcc4bd16fa4560eadf0df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp312-cp312-win32.whl

Download URL ufal_morphodita-1.11.3.3-cp312-cp312-win32.whl
Size 420.5 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
f014e185d8029e1ee9f1f07387427aa8dda9a2ef0bc6665e14842c682c98b123
BLAKE2b-256 checksum
How to use checksums
c364172524e5cb0c9b34890ea162b623debe2f1f1360fb61dfc7f75533751a9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7c47dda133f1f1a2ed040a8778ef97862af5825857b7e7e5540ab610a00c2f3b
BLAKE2b-256 checksum
How to use checksums
484cc71b30be581f070509b81e018ac39354a365107a7b4c11c948ffb2283978
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL ufal_morphodita-1.11.3.3-cp312-cp312-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f183292256283ada01652a381a3f51c68e8efd7ebe617700f972561bb8972121
BLAKE2b-256 checksum
How to use checksums
a8050b4799a01b9c59a662ef5a078961dad8e78a32a0ff56db95d6aea28b235b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 411.5 kB
Tags CPython 3.12 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
545ad07278b73923a6edb5d9360f51fa0d1755ba9e904fe5146927a446c80caa
BLAKE2b-256 checksum
How to use checksums
da5cf2864b059b37e189bd4ef6559d5b8a7414e78a698cd8087c9b9328cb2468
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL ufal_morphodita-1.11.3.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 380.8 kB
Tags CPython 3.12 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
9049fa45a3f38fb6da2cdb45b344299fe0abe79cf68a9232b9816feec536672c
BLAKE2b-256 checksum
How to use checksums
804a28d01614ab73f1274429fecfeafd8a4f5f7a4c22015f9bd93f324ef46cca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp312-cp312-macosx_11_0_arm64.whl

Download URL ufal_morphodita-1.11.3.3-cp312-cp312-macosx_11_0_arm64.whl
Size 409.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1448496fd7d1afc085a0423b7110f5485fac0c6a77114cea99e8bed0f5bdf7bb
BLAKE2b-256 checksum
How to use checksums
98f69fc8e91b9d9a5f432c8df7e860847a769492f159d1a2a6542f6f9fad4e44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp312-cp312-macosx_10_13_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp312-cp312-macosx_10_13_x86_64.whl
Size 419.7 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
9e0e618026324ec8e2148bba2a0cca2ecc503121d4525d54e31407adeefdaf63
BLAKE2b-256 checksum
How to use checksums
eb7b9ca3fe922530c51d65c9b9cd1f2201b2c3e948274a017e6ab9ef84cfca7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp311-cp311-win_arm64.whl

Download URL ufal_morphodita-1.11.3.3-cp311-cp311-win_arm64.whl
Size 659.9 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
998bb059a07b12f46a24352905042ed035fd585288e910bda0c14fb60286f896
BLAKE2b-256 checksum
How to use checksums
8b60879dab1ba448047b9ff439f738b19b5394c1223cf8c6ded3d050f115406d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp311-cp311-win_amd64.whl

Download URL ufal_morphodita-1.11.3.3-cp311-cp311-win_amd64.whl
Size 487.1 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
e6b373695349c646c91a11c86339767e8811aa3ca3cb9a7fb0fce2314c57e958
BLAKE2b-256 checksum
How to use checksums
bf6db3f1c3abf3c5daeb5e25eae410aac34ab237e96dadb53e3f9caed464b494
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp311-cp311-win32.whl

Download URL ufal_morphodita-1.11.3.3-cp311-cp311-win32.whl
Size 419.8 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
88ee6235ff8185be78e28edccd949f80076577dd09e70a5c0e20aac710acb1f8
BLAKE2b-256 checksum
How to use checksums
c24d050807b83c7e727f592d4671a982a4fb11bb7b733e4d63e8d3c299da3bf0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0b3c53589ff3842243678425ef2ff5c1961933320b15c8fc096685021f7927b8
BLAKE2b-256 checksum
How to use checksums
7a9a227b925a5871c0ca86a883a230f7a84ebf47fa79193c38a20cb6d6caab71
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL ufal_morphodita-1.11.3.3-cp311-cp311-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8cc6ed371164cc0ef40ce7c343bd49c4a3c945f2b0f3df2b0d8b073acd1d7322
BLAKE2b-256 checksum
How to use checksums
9381da064d300762f471c31285b320f499e33556113224491343c0bb5b388db1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 409.5 kB
Tags CPython 3.11 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
169bd96820669cc579356cc6a90b7216a8872f6107d5e8d0ae739b4ce43238f4
BLAKE2b-256 checksum
How to use checksums
45bcde0bbea3af85b44aa6e198abd0f9c1400bb813e2aa75f6829657c9de2c64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL ufal_morphodita-1.11.3.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 380.5 kB
Tags CPython 3.11 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
84d6c31f460b8715e9cd282bf3c39b4db00b870c444cb4cf29537aa1700088be
BLAKE2b-256 checksum
How to use checksums
6fcbb7e8b4f785160501df72293cab7fc031e0e5bd6e8985d702256d0f45fe6a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp311-cp311-macosx_11_0_arm64.whl

Download URL ufal_morphodita-1.11.3.3-cp311-cp311-macosx_11_0_arm64.whl
Size 407.6 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a0d2d002a7347a19ba6f6cce2a033ced96fa8fc83bd1be6663144123adc5b763
BLAKE2b-256 checksum
How to use checksums
9bf1525648043afbaa08422125799db7cdea71df7978c25bf17d6ad8209d7a0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp311-cp311-macosx_10_9_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp311-cp311-macosx_10_9_x86_64.whl
Size 417.0 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
37772961c13d9a83509852eda68162c97fafeb040d23cbe0bf864404c1ac43cf
BLAKE2b-256 checksum
How to use checksums
1aa3bf580895e622ed52e084979bff61b9977831fbfeac29249f885d45df0f2f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp310-cp310-win_arm64.whl

Download URL ufal_morphodita-1.11.3.3-cp310-cp310-win_arm64.whl
Size 659.9 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
036eb7a342ec6bc058cd101f26bb09f9ac4019877efe92d511853ade6e655f56
BLAKE2b-256 checksum
How to use checksums
4f3fcc5b277bc19d3619f3300512146073fe6f0fad5be34184d3232a8d4d6eb9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp310-cp310-win_amd64.whl

Download URL ufal_morphodita-1.11.3.3-cp310-cp310-win_amd64.whl
Size 487.1 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
82279c80d4acf84f7219356e2f21bfe4c862618dc0e013cb7a4e31fe389b31c8
BLAKE2b-256 checksum
How to use checksums
abba687bab1d265843da0573b60475c7d892783034fceef3d8f3ab79277b57f9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp310-cp310-win32.whl

Download URL ufal_morphodita-1.11.3.3-cp310-cp310-win32.whl
Size 419.8 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
4c830f44986052e9e99394047b5c33189d747f43f5d1be4589d48839d3435115
BLAKE2b-256 checksum
How to use checksums
b634381261328a27b6e1a2d08da2c41d7e402ad003f003af5e7be24290f8e46d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp310-cp310-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
8f9c8785e1891b171789c57438daadb7273c108a4ad127aeb1b9d2e8b99d3115
BLAKE2b-256 checksum
How to use checksums
81ac26ffc5bddd57339bca62abd3a7dcf7c8eccbebd35e6bba482eefd8a1c692
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL ufal_morphodita-1.11.3.3-cp310-cp310-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
2cb36916b209ce23dc2e92f6d6241aad175b80c6623ddd0e483b8257427fe0fe
BLAKE2b-256 checksum
How to use checksums
63b56fffaf62d5c8adb792ee15fee266a61023d447a781c4b580d7283b68b235
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 409.5 kB
Tags CPython 3.10 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9656e21d01b9e6159ba91f8e8b5acf7f63272cc7c6f2bc74e27950c62ff97668
BLAKE2b-256 checksum
How to use checksums
368298048e4d448e6cc330326da1f409989850f11d40542fbfa0fff53fd3488c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL ufal_morphodita-1.11.3.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 380.4 kB
Tags CPython 3.10 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
217f8cc6ae74d36574b0118e80ebb8eb6eb4445935dc5d62a7f9e74a14cbb293
BLAKE2b-256 checksum
How to use checksums
f273b9e0ef4d499174385ed4852520cc2bba3320e320ef79f1ebd15fbaf533f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp310-cp310-macosx_11_0_arm64.whl

Download URL ufal_morphodita-1.11.3.3-cp310-cp310-macosx_11_0_arm64.whl
Size 407.6 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d1cd6ffc69a91db7d8cc6e7dd26f0d654140344d0ea5e45b5c1179336f07f56f
BLAKE2b-256 checksum
How to use checksums
702d2f58a182b1a6fea9537ed0d6f182fc0e908a7107bacaafae6738859de0fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp310-cp310-macosx_10_9_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp310-cp310-macosx_10_9_x86_64.whl
Size 417.0 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
39e4de66d2af4239d41ea4a33de3b4158119290b719355a7a7151d6f103d7912
BLAKE2b-256 checksum
How to use checksums
672e7d12e97d3596ceb51b1b3363256aa7c84f18dccde5404396426034043e32
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp39-cp39-win_arm64.whl

Download URL ufal_morphodita-1.11.3.3-cp39-cp39-win_arm64.whl
Size 659.9 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
0f1b0354c2d3f5407ee5c8678d1ad951444b215bd31ec6f910a638e5c5fd9ec4
BLAKE2b-256 checksum
How to use checksums
263939d884a8e35370966a94b15b8ee41a0ab3154fada87f8559d9134cc47952
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp39-cp39-win_amd64.whl

Download URL ufal_morphodita-1.11.3.3-cp39-cp39-win_amd64.whl
Size 487.1 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
f31b495ba43aa69911648a2f968a2219b34237c31c1ed5149990f1155b41a347
BLAKE2b-256 checksum
How to use checksums
53c0df33464a0eb7c1e35349674aaa3edd0cfdfb074a2130e98493790bd2dad5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp39-cp39-win32.whl

Download URL ufal_morphodita-1.11.3.3-cp39-cp39-win32.whl
Size 419.8 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
cf35160726be3a685ee923c06d889d0fb6ad28351da623eb788115a0bc30825a
BLAKE2b-256 checksum
How to use checksums
70df94b82ede9d3f627cf5513e1f3a24e2cb905faf64613193c9346a54b78cba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp39-cp39-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
75e754946e7e395468d8dcea6a69eb69f994a0046c71836b13669bff61a600f9
BLAKE2b-256 checksum
How to use checksums
bc50ae14d72cb30f5cb5b53e57573643add91ae009dd0c9aa1a9a9837b81cdad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL ufal_morphodita-1.11.3.3-cp39-cp39-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
fee76f42f7da67bbdf71b4b23f20bc487986d9bf1ad24f8e0c7d8646b1421226
BLAKE2b-256 checksum
How to use checksums
78212b3961816a02d31fdeb551a8fce3dc4869aecb4b02a95e2fb205dd4627e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 409.5 kB
Tags CPython 3.9 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ad60f9371c3a63b5429090cb4834c2ed4b5d6ffa03a74cc4a0f236d95bd070dd
BLAKE2b-256 checksum
How to use checksums
9976a958e1b1b0fd0c6aee59fb1eddc9acdd9b5dc9367f5f1f972049dcf9fc4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL ufal_morphodita-1.11.3.3-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 380.4 kB
Tags CPython 3.9 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
2272c01ad97edcba1b3d5e75214726f001b15e05f58c0a58d6dda76dc8c93771
BLAKE2b-256 checksum
How to use checksums
ce6e7d4355d7cb3f1ac439394eda006fd755725623629f0adcdca24a6fce021a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp39-cp39-macosx_11_0_arm64.whl

Download URL ufal_morphodita-1.11.3.3-cp39-cp39-macosx_11_0_arm64.whl
Size 407.6 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2b57e376e6ab7762024f8e6487a0f033082f9ff4ce3ec569795f8203b8cd0762
BLAKE2b-256 checksum
How to use checksums
b8e5d1a0806daf306d06bd65bb5abf11b97fe95ac2d0ecee904612b64a9295cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp39-cp39-macosx_10_9_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp39-cp39-macosx_10_9_x86_64.whl
Size 417.0 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
431442c0a6c11c3c5cca88d4d6ea0a3218e0c10ac8ed6ddf9e0054dc2b988793
BLAKE2b-256 checksum
How to use checksums
7f24e7a8cdbb425e524f2b99e6edfdc8bfd12b9954154831a1cb1a9f74850673
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp38-cp38-win_amd64.whl

Download URL ufal_morphodita-1.11.3.3-cp38-cp38-win_amd64.whl
Size 487.1 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
6a09d9efda1f62c797ae740e5741c0e82f2cc4df0f433f6bf34350c1b507ab1c
BLAKE2b-256 checksum
How to use checksums
8b9d763fe0337cb58fdcff5b91583a418eb9e7bee001c7d23531e4bdea548c29
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp38-cp38-win32.whl

Download URL ufal_morphodita-1.11.3.3-cp38-cp38-win32.whl
Size 419.7 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
13f71b31fcc8056850177b0401296e30facd102dbdf735de37636253a3abf0dc
BLAKE2b-256 checksum
How to use checksums
f2b2fac7ea3741944f2a259459f7db367757d15e4a7f9fa5bb5de068c5dd4e39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp38-cp38-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d6afbbd6705b5416513e57449e85db6754ee4491a7471ab92b3ca3ca4f23f9a6
BLAKE2b-256 checksum
How to use checksums
57bbc722b96da41409e82aa7c2149f0b74464e644aa949bd66572adc6b1ef984
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp38-cp38-musllinux_1_2_aarch64.whl

Download URL ufal_morphodita-1.11.3.3-cp38-cp38-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
28c76a8120faf28a007277a408a03251f4f4c8637b98fbf2dd2074d63740c575
BLAKE2b-256 checksum
How to use checksums
0c1dc971c2113ae1fef8eb48619ad1607bdb6136f4bbd21b81b067cd160816fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 409.3 kB
Tags CPython 3.8 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e9a1620de20bb8a2f170da82dee3471eabe699f482238f330bea3f6dd74d8316
BLAKE2b-256 checksum
How to use checksums
c1ff5bddfbaacf2f696f00ec9cf795f338ae85d637b5cadd0c07a22c7a192ec6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL ufal_morphodita-1.11.3.3-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 380.1 kB
Tags CPython 3.8 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
ebb54c79d71f2289e48f7360dfba1e803f58a23ebca831253eb9ad53e53ceb29
BLAKE2b-256 checksum
How to use checksums
cf69f0c8bfcb092b044545b227c649b2ac4d698eb6a4b7495b8d80cc8ae5ebc9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp38-cp38-macosx_11_0_arm64.whl

Download URL ufal_morphodita-1.11.3.3-cp38-cp38-macosx_11_0_arm64.whl
Size 407.4 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
67f74e63af83793528bbb649f2b491d21a37708f9354411189ac85de7df939a1
BLAKE2b-256 checksum
How to use checksums
3e8c8f2e080d88033db46b681b2f785d67ec147b75930f6ffcc81fc68f279497
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release files / ufal_morphodita-1.11.3.3-cp38-cp38-macosx_10_9_x86_64.whl

Download URL ufal_morphodita-1.11.3.3-cp38-cp38-macosx_10_9_x86_64.whl
Size 416.8 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
3ed1551997c93c49a5d17f41aa903e2ed98b86fa263e5efb8f4d178719ef9591
BLAKE2b-256 checksum
How to use checksums
bcfc0a0412b83bf136e6a159be18030b0f5c1817b988915ebe62f3f87036097d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.5

Release history Release notifications | RSS feed

This release

1.11.3.3 This release

72 release files

1.9.2.3

1 release file

1.9.2.1

1 release file

1.9.1.1

1.3.0.1

1 release file

1.2.0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page