ufal.udpipe


Nameufal.udpipe JSON
Version 1.3.1.1 PyPI version JSON
download
home_pagehttps://ufal.mff.cuni.cz/udpipe
SummaryBindings to UDPipe library
upload_time2023-11-16 09:00:58
maintainer
docs_urlNone
authorMilan Straka
requires_python
licenseMPL 2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ufal.udpipe
============

The ``ufal.udpipe`` is a Python binding to UDPipe library <http://ufal.mff.cuni.cz/udpipe>.

The bindings is a straightforward conversion of the ``C++`` bindings API.
In Python 2, strings can be both ``unicode`` and UTF-8 encoded ``str``, and the
library always produces ``unicode``. In Python 3, strings must be only ``str``.


Wrapped C++ API
---------------

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

::

  Helper Structures
  -----------------
  
    typedef vector<int> Children;
  
    typedef vector<uint8_t> Bytes;
  
    typedef vector<string> Comments;
  
    class ProcessingError {
    public:
      bool occurred();
      string message;
    };
  
    class Token {
     public:
      string form;
      string misc;
  
      Token(const string& form = string(), const string& misc = string());
  
      // CoNLL-U defined SpaceAfter=No feature
      bool getSpaceAfter() const;
      void setSpaceAfter(bool space_after);
  
      // UDPipe-specific all-spaces-preserving SpacesBefore and SpacesAfter features
      string getSpacesBefore() const;
      void setSpacesBefore(const string& spaces_before);
      string getSpacesAfter() const;
      void setSpacesAfter(const string& spaces_after);
      string getSpacesInToken() const;
      void setSpacesInToken(const string& spaces_in_token);
  
      // UDPipe-specific TokenRange feature
      bool getTokenRange() const;
      size_t getTokenRangeStart() const;
      size_t getTokenRangeEnd() const;
      void setTokenRange(size_t start, size_t end);
    };
  
    class Word : public Token {
     public:
      // form and misc are inherited from token
      int id;         // 0 is root, >0 is sentence word, <0 is undefined
      string lemma;   // lemma
      string upostag; // universal part-of-speech tag
      string xpostag; // language-specific part-of-speech tag
      string feats;   // list of morphological features
      int head;       // head, 0 is root, <0 is undefined
      string deprel;  // dependency relation to the head
      string deps;    // secondary dependencies
  
      Children children;
  
      Word(int id = -1, const string& form = string());
    };
    typedef vector<Word> Words;
  
    class MultiwordToken : public Token {
     public:
      // form and misc are inherited from token
      int idFirst, idLast;
  
      MultiwordToken(int id_first = -1, int id_last = -1, const string& form = string(), const string& misc = string());
    };
    typedef vector<MultiwordToken> MultiwordTokens;
  
    class EmptyNode {
     public:
      int id;          // 0 is root, >0 is sentence word, <0 is undefined
      int index;       // index for the current id, should be numbered from 1, 0=undefined
      string form;     // form
      string lemma;    // lemma
      string upostag;  // universal part-of-speech tag
      string xpostag;  // language-specific part-of-speech tag
      string feats;    // list of morphological features
      string deps;     // secondary dependencies
      string misc;     // miscellaneous information
  
      EmptyNode(int id = -1, int index = 0) : id(id), index(index) {}
    };
    typedef vector<empty_node> EmptyNodes;
  
    class Sentence {
     public:
      Sentence();
  
      Words words;
      MultiwordTokens multiwordTokens;
      EmptyNodes emptyNodes;
      Comments comments;
      static const string rootForm;
  
      // Basic sentence modifications
      bool empty();
      void clear();
      virtual Word& addWord(const char* form);
      void setHead(int id, int head, const string& deprel);
      void unlinkAllWords();
  
      // CoNLL-U defined comments
      bool getNewDoc() const;
      string getNewDocId() const;
      void setNewDoc(bool new_doc, const string& id = string());
      bool getNewPar() const;
      string getNewParId() const;
      void setNewPar(bool new_par, const string& id = string());
  
      string getSentId() const;
      void setSentId(const string& id);
      string getText() const;
      void setText(const string& id);
    };
    typedef vector<Sentence> Sentences;
  
  
  Main Classes
  ------------
  
    class InputFormat {
     public:
      virtual void resetDocument(const string& id = string());
      virtual void setText(const char* text);
      virtual bool nextSentence(Sentence& s, ProcessingError* error = nullptr);
  
      static InputFormat* newInputFormat(const string& name);
      static InputFormat* newConlluInputFormat(const string& id = string());
      static InputFormat* newGenericTokenizerInputFormat(const string& id = string());
      static InputFormat* newHorizontalInputFormat(const string& id = string());
      static InputFormat* newVerticalInputFormat(const string& id = string());
  
      static InputFormat* newPresegmentedTokenizer(InputFormat tokenizer);
  
      static const string CONLLU_V1;
      static const string CONLLU_V2;
      static const string GENERIC_TOKENIZER_NORMALIZED_SPACES;
      static const string GENERIC_TOKENIZER_PRESEGMENTED;
      static const string GENERIC_TOKENIZER_RANGES;
    };
  
    class OutputFormat {
     public:
      virtual string writeSentence(const Sentence& s);
      virtual string finishDocument();
  
      static OutputFormat* newOutputFormat(const string& name);
      static OutputFormat* newConlluOutputFormat(const string& options = string());
      static OutputFormat* newEpeOutputFormat(const string& options = string());
      static OutputFormat* newMatxinOutputFormat(const string& options = string());
      static OutputFormat* newHorizontalOutputFormat(const string& options = string());
      static OutputFormat* newPlaintextOutputFormat(const string& options = string());
      static OutputFormat* newVerticalOutputFormat(const string& options = string());
  
      static const string CONLLU_V1;
      static const string CONLLU_V2;
      static const string HORIZONTAL_PARAGRAPHS;
      static const string PLAINTEXT_NORMALIZED_SPACES;
      static const string VERTICAL_PARAGRAPHS;
    };
  
    class Model {
     public:
      static Model* load(const char* fname);
  
      virtual InputFormat* newTokenizer(const string& options) const;
      virtual bool tag(Sentence& s, const string& options, ProcessingError* error = nullptr) const;
      virtual bool parse(Sentence& s, const string& options, ProcessingError* error) const;
  
      static const string DEFAULT;
      static const string TOKENIZER_PRESEGMENTED;
    };
  
    class Pipeline {
     public:
      Pipeline(const Model* m, const string& input, const string& tagger, const string& parser, const string& output);
  
      void setModel(const Model* m);
      void setInput(const string& input);
      void setTagger(const string& tagger);
      void setParser(const string& parser);
      void setOutput(const string& output);
  
      void setImmediate(bool immediate);
      void setDocumentId(const string& document_id);
  
      string process(const string& data, ProcessingError* error = nullptr) const;
  
      static const string DEFAULT;
      static const string NONE;
    };
  
    class Trainer {
     public:
  
      static Bytes* train(const string& method, const Sentences& train, const Sentences& heldout,
                          const string& tokenizer, const string& tagger, const string& parser,
                          ProcessingError* error = nullptr);
  
      static const string DEFAULT;
      static const string NONE;
    };
  
    class Evaluator {
     public:
      Evaluator(const Model* m, const string& tokenizer, const string& tagger, const string& parser);
  
      void setModel(const Model* m);
      void setTokenizer(const string& tokenizer);
      void setTagger(const string& tagger);
      void setParser(const string& parser);
  
      string evaluate(const string& data, ProcessingError* error = nullptr) const;
  
      static const string DEFAULT;
      static const string NONE;
    };
  
    class Version {
     public:
      unsigned major;
      unsigned minor;
      unsigned patch;
      string prerelease;
  
      // Returns current version.
      static version current();
    };


Examples
========

run_udpipe
--------------

Simple pipeline loading data (tokenizing on request), tagging, parsing and
writing to specified output format::


  import sys
  
  from ufal.udpipe import Model, Pipeline, ProcessingError # pylint: disable=no-name-in-module
  
  # 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) < 4:
      sys.stderr.write('Usage: %s input_format(tokenize|conllu|horizontal|vertical) output_format(conllu) model_file\n' % sys.argv[0])
      sys.exit(1)
  
  sys.stderr.write('Loading model: ')
  model = Model.load(sys.argv[3])
  if not model:
      sys.stderr.write("Cannot load model from file '%s'\n" % sys.argv[3])
      sys.exit(1)
  sys.stderr.write('done\n')
  
  pipeline = Pipeline(model, sys.argv[1], Pipeline.DEFAULT, Pipeline.DEFAULT, sys.argv[2])
  error = ProcessingError()
  
  # Read whole input
  text = ''.join(sys.stdin.readlines())
  
  # Process data
  processed = pipeline.process(text, error)
  if error.occurred():
      sys.stderr.write("An error occurred when running run_udpipe: ")
      sys.stderr.write(error.message)
      sys.stderr.write("\n")
      sys.exit(1)
  sys.stdout.write(processed)


AUTHORS
=======

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


COPYRIGHT AND LICENCE
=====================

Copyright 2016 Institute of Formal and Applied Linguistics, Faculty of
Mathematics and Physics, Charles University in Prague, Czech Republic.

This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.

            

Raw data

            {
    "_id": null,
    "home_page": "https://ufal.mff.cuni.cz/udpipe",
    "name": "ufal.udpipe",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Milan Straka",
    "author_email": "straka@ufal.mff.cuni.cz",
    "download_url": "https://files.pythonhosted.org/packages/2c/60/d85376b8691650379a43d7a074b4d2c41c4f37789fb3048e11643ed5a3f4/ufal.udpipe-1.3.1.1.tar.gz",
    "platform": null,
    "description": "ufal.udpipe\n============\n\nThe ``ufal.udpipe`` is a Python binding to UDPipe library <http://ufal.mff.cuni.cz/udpipe>.\n\nThe bindings is a straightforward conversion of the ``C++`` bindings API.\nIn Python 2, strings can be both ``unicode`` and UTF-8 encoded ``str``, and the\nlibrary always produces ``unicode``. In Python 3, strings must be only ``str``.\n\n\nWrapped C++ API\n---------------\n\nThe C++ API being wrapped follows. For a API reference of the original\nC++ API, see <http://ufal.mff.cuni.cz/udpipe/api-reference>.\n\n::\n\n  Helper Structures\n  -----------------\n  \n    typedef vector<int> Children;\n  \n    typedef vector<uint8_t> Bytes;\n  \n    typedef vector<string> Comments;\n  \n    class ProcessingError {\n    public:\n      bool occurred();\n      string message;\n    };\n  \n    class Token {\n     public:\n      string form;\n      string misc;\n  \n      Token(const string& form = string(), const string& misc = string());\n  \n      // CoNLL-U defined SpaceAfter=No feature\n      bool getSpaceAfter() const;\n      void setSpaceAfter(bool space_after);\n  \n      // UDPipe-specific all-spaces-preserving SpacesBefore and SpacesAfter features\n      string getSpacesBefore() const;\n      void setSpacesBefore(const string& spaces_before);\n      string getSpacesAfter() const;\n      void setSpacesAfter(const string& spaces_after);\n      string getSpacesInToken() const;\n      void setSpacesInToken(const string& spaces_in_token);\n  \n      // UDPipe-specific TokenRange feature\n      bool getTokenRange() const;\n      size_t getTokenRangeStart() const;\n      size_t getTokenRangeEnd() const;\n      void setTokenRange(size_t start, size_t end);\n    };\n  \n    class Word : public Token {\n     public:\n      // form and misc are inherited from token\n      int id;         // 0 is root, >0 is sentence word, <0 is undefined\n      string lemma;   // lemma\n      string upostag; // universal part-of-speech tag\n      string xpostag; // language-specific part-of-speech tag\n      string feats;   // list of morphological features\n      int head;       // head, 0 is root, <0 is undefined\n      string deprel;  // dependency relation to the head\n      string deps;    // secondary dependencies\n  \n      Children children;\n  \n      Word(int id = -1, const string& form = string());\n    };\n    typedef vector<Word> Words;\n  \n    class MultiwordToken : public Token {\n     public:\n      // form and misc are inherited from token\n      int idFirst, idLast;\n  \n      MultiwordToken(int id_first = -1, int id_last = -1, const string& form = string(), const string& misc = string());\n    };\n    typedef vector<MultiwordToken> MultiwordTokens;\n  \n    class EmptyNode {\n     public:\n      int id;          // 0 is root, >0 is sentence word, <0 is undefined\n      int index;       // index for the current id, should be numbered from 1, 0=undefined\n      string form;     // form\n      string lemma;    // lemma\n      string upostag;  // universal part-of-speech tag\n      string xpostag;  // language-specific part-of-speech tag\n      string feats;    // list of morphological features\n      string deps;     // secondary dependencies\n      string misc;     // miscellaneous information\n  \n      EmptyNode(int id = -1, int index = 0) : id(id), index(index) {}\n    };\n    typedef vector<empty_node> EmptyNodes;\n  \n    class Sentence {\n     public:\n      Sentence();\n  \n      Words words;\n      MultiwordTokens multiwordTokens;\n      EmptyNodes emptyNodes;\n      Comments comments;\n      static const string rootForm;\n  \n      // Basic sentence modifications\n      bool empty();\n      void clear();\n      virtual Word& addWord(const char* form);\n      void setHead(int id, int head, const string& deprel);\n      void unlinkAllWords();\n  \n      // CoNLL-U defined comments\n      bool getNewDoc() const;\n      string getNewDocId() const;\n      void setNewDoc(bool new_doc, const string& id = string());\n      bool getNewPar() const;\n      string getNewParId() const;\n      void setNewPar(bool new_par, const string& id = string());\n  \n      string getSentId() const;\n      void setSentId(const string& id);\n      string getText() const;\n      void setText(const string& id);\n    };\n    typedef vector<Sentence> Sentences;\n  \n  \n  Main Classes\n  ------------\n  \n    class InputFormat {\n     public:\n      virtual void resetDocument(const string& id = string());\n      virtual void setText(const char* text);\n      virtual bool nextSentence(Sentence& s, ProcessingError* error = nullptr);\n  \n      static InputFormat* newInputFormat(const string& name);\n      static InputFormat* newConlluInputFormat(const string& id = string());\n      static InputFormat* newGenericTokenizerInputFormat(const string& id = string());\n      static InputFormat* newHorizontalInputFormat(const string& id = string());\n      static InputFormat* newVerticalInputFormat(const string& id = string());\n  \n      static InputFormat* newPresegmentedTokenizer(InputFormat tokenizer);\n  \n      static const string CONLLU_V1;\n      static const string CONLLU_V2;\n      static const string GENERIC_TOKENIZER_NORMALIZED_SPACES;\n      static const string GENERIC_TOKENIZER_PRESEGMENTED;\n      static const string GENERIC_TOKENIZER_RANGES;\n    };\n  \n    class OutputFormat {\n     public:\n      virtual string writeSentence(const Sentence& s);\n      virtual string finishDocument();\n  \n      static OutputFormat* newOutputFormat(const string& name);\n      static OutputFormat* newConlluOutputFormat(const string& options = string());\n      static OutputFormat* newEpeOutputFormat(const string& options = string());\n      static OutputFormat* newMatxinOutputFormat(const string& options = string());\n      static OutputFormat* newHorizontalOutputFormat(const string& options = string());\n      static OutputFormat* newPlaintextOutputFormat(const string& options = string());\n      static OutputFormat* newVerticalOutputFormat(const string& options = string());\n  \n      static const string CONLLU_V1;\n      static const string CONLLU_V2;\n      static const string HORIZONTAL_PARAGRAPHS;\n      static const string PLAINTEXT_NORMALIZED_SPACES;\n      static const string VERTICAL_PARAGRAPHS;\n    };\n  \n    class Model {\n     public:\n      static Model* load(const char* fname);\n  \n      virtual InputFormat* newTokenizer(const string& options) const;\n      virtual bool tag(Sentence& s, const string& options, ProcessingError* error = nullptr) const;\n      virtual bool parse(Sentence& s, const string& options, ProcessingError* error) const;\n  \n      static const string DEFAULT;\n      static const string TOKENIZER_PRESEGMENTED;\n    };\n  \n    class Pipeline {\n     public:\n      Pipeline(const Model* m, const string& input, const string& tagger, const string& parser, const string& output);\n  \n      void setModel(const Model* m);\n      void setInput(const string& input);\n      void setTagger(const string& tagger);\n      void setParser(const string& parser);\n      void setOutput(const string& output);\n  \n      void setImmediate(bool immediate);\n      void setDocumentId(const string& document_id);\n  \n      string process(const string& data, ProcessingError* error = nullptr) const;\n  \n      static const string DEFAULT;\n      static const string NONE;\n    };\n  \n    class Trainer {\n     public:\n  \n      static Bytes* train(const string& method, const Sentences& train, const Sentences& heldout,\n                          const string& tokenizer, const string& tagger, const string& parser,\n                          ProcessingError* error = nullptr);\n  \n      static const string DEFAULT;\n      static const string NONE;\n    };\n  \n    class Evaluator {\n     public:\n      Evaluator(const Model* m, const string& tokenizer, const string& tagger, const string& parser);\n  \n      void setModel(const Model* m);\n      void setTokenizer(const string& tokenizer);\n      void setTagger(const string& tagger);\n      void setParser(const string& parser);\n  \n      string evaluate(const string& data, ProcessingError* error = nullptr) const;\n  \n      static const string DEFAULT;\n      static const string NONE;\n    };\n  \n    class Version {\n     public:\n      unsigned major;\n      unsigned minor;\n      unsigned patch;\n      string prerelease;\n  \n      // Returns current version.\n      static version current();\n    };\n\n\nExamples\n========\n\nrun_udpipe\n--------------\n\nSimple pipeline loading data (tokenizing on request), tagging, parsing and\nwriting to specified output format::\n\n\n  import sys\n  \n  from ufal.udpipe import Model, Pipeline, ProcessingError # pylint: disable=no-name-in-module\n  \n  # In Python2, wrap sys.stdin and sys.stdout to work with unicode.\n  if sys.version_info[0] < 3:\n      import codecs\n      import locale\n      encoding = locale.getpreferredencoding()\n      sys.stdin = codecs.getreader(encoding)(sys.stdin)\n      sys.stdout = codecs.getwriter(encoding)(sys.stdout)\n  \n  if len(sys.argv) < 4:\n      sys.stderr.write('Usage: %s input_format(tokenize|conllu|horizontal|vertical) output_format(conllu) model_file\\n' % sys.argv[0])\n      sys.exit(1)\n  \n  sys.stderr.write('Loading model: ')\n  model = Model.load(sys.argv[3])\n  if not model:\n      sys.stderr.write(\"Cannot load model from file '%s'\\n\" % sys.argv[3])\n      sys.exit(1)\n  sys.stderr.write('done\\n')\n  \n  pipeline = Pipeline(model, sys.argv[1], Pipeline.DEFAULT, Pipeline.DEFAULT, sys.argv[2])\n  error = ProcessingError()\n  \n  # Read whole input\n  text = ''.join(sys.stdin.readlines())\n  \n  # Process data\n  processed = pipeline.process(text, error)\n  if error.occurred():\n      sys.stderr.write(\"An error occurred when running run_udpipe: \")\n      sys.stderr.write(error.message)\n      sys.stderr.write(\"\\n\")\n      sys.exit(1)\n  sys.stdout.write(processed)\n\n\nAUTHORS\n=======\n\nMilan Straka <straka@ufal.mff.cuni.cz>\n\n\nCOPYRIGHT AND LICENCE\n=====================\n\nCopyright 2016 Institute of Formal and Applied Linguistics, Faculty of\nMathematics and Physics, Charles University in Prague, Czech Republic.\n\nThis Source Code Form is subject to the terms of the Mozilla Public\nLicense, v. 2.0. If a copy of the MPL was not distributed with this\nfile, You can obtain one at http://mozilla.org/MPL/2.0/.\n",
    "bugtrack_url": null,
    "license": "MPL 2.0",
    "summary": "Bindings to UDPipe library",
    "version": "1.3.1.1",
    "project_urls": {
        "Homepage": "https://ufal.mff.cuni.cz/udpipe"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4cb7d2ccbbf57852ca45cf501986de80acb76aa9a4b2bcdb9abf62983f8d3c3a",
                "md5": "ce656afb1c3f0c2e4a48118562937473",
                "sha256": "d9dfc6d1d197221c304eb7620b03b5e7c4bc3ea1147389ad6c7c444b6d87e7d5"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ce656afb1c3f0c2e4a48118562937473",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 916212,
            "upload_time": "2023-11-16T08:58:21",
            "upload_time_iso_8601": "2023-11-16T08:58:21.527870Z",
            "url": "https://files.pythonhosted.org/packages/4c/b7/d2ccbbf57852ca45cf501986de80acb76aa9a4b2bcdb9abf62983f8d3c3a/ufal.udpipe-1.3.1.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc15f8643cc5994fa5494c4747be24e89b9307bd06c65a609533f2cdf89a2201",
                "md5": "40d290ab0b8a5e3b1306caf4ae671c62",
                "sha256": "768540f6c704c9e0f9128e00dd7fd29806e15901e1a1b9bfc139d3b7461ae06d"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "40d290ab0b8a5e3b1306caf4ae671c62",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 835767,
            "upload_time": "2023-11-16T08:58:23",
            "upload_time_iso_8601": "2023-11-16T08:58:23.830819Z",
            "url": "https://files.pythonhosted.org/packages/dc/15/f8643cc5994fa5494c4747be24e89b9307bd06c65a609533f2cdf89a2201/ufal.udpipe-1.3.1.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e3e7afe1ed2614a01ccf49d8d2a39af85ef76bb7527bdf0f523fb5984d011e4",
                "md5": "e54b1fa91a15b4820eb569f25217e8bd",
                "sha256": "822259c0aba60412597c198a5f4b5bfb1e5d0e9330a26905e419440e91a3fa34"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e54b1fa91a15b4820eb569f25217e8bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 909615,
            "upload_time": "2023-11-16T08:58:26",
            "upload_time_iso_8601": "2023-11-16T08:58:26.396244Z",
            "url": "https://files.pythonhosted.org/packages/8e/3e/7afe1ed2614a01ccf49d8d2a39af85ef76bb7527bdf0f523fb5984d011e4/ufal.udpipe-1.3.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64c3dc77f25715dbae375dfa7a11ef7014e0af8ddc08011381db8d090eec14a5",
                "md5": "1c0d2e6013edf2407b58f50b062d4a1f",
                "sha256": "dc5989430bf1b9b0bdf5c1ea0243016829fce7862ffe67bc6d108617a473742f"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1c0d2e6013edf2407b58f50b062d4a1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 967770,
            "upload_time": "2023-11-16T08:58:29",
            "upload_time_iso_8601": "2023-11-16T08:58:29.587462Z",
            "url": "https://files.pythonhosted.org/packages/64/c3/dc77f25715dbae375dfa7a11ef7014e0af8ddc08011381db8d090eec14a5/ufal.udpipe-1.3.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47956b709dbd9f4b7ea53a2f80a45ecb06c645be7677fd47b7a0210feca2c39f",
                "md5": "29cf694266eba61e3f1de3c6ce377790",
                "sha256": "4f9ca8a101044907b0f23dad2268f007b8f7461730e9f4f2e89c096e584211dd"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "29cf694266eba61e3f1de3c6ce377790",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 936768,
            "upload_time": "2023-11-16T08:58:32",
            "upload_time_iso_8601": "2023-11-16T08:58:32.556509Z",
            "url": "https://files.pythonhosted.org/packages/47/95/6b709dbd9f4b7ea53a2f80a45ecb06c645be7677fd47b7a0210feca2c39f/ufal.udpipe-1.3.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a2e0d5f4461fb3b6e3f0d844a1f001a69a796a6ccee3a465b547f033ab5e0c5",
                "md5": "ac33c214309ef5e84512ade933eba444",
                "sha256": "2a2257efe3451c9376ed5b50676e7324e7d7228017f0b5c878ae9c77beb69e8e"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ac33c214309ef5e84512ade933eba444",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1443766,
            "upload_time": "2023-11-16T08:58:36",
            "upload_time_iso_8601": "2023-11-16T08:58:36.271571Z",
            "url": "https://files.pythonhosted.org/packages/9a/2e/0d5f4461fb3b6e3f0d844a1f001a69a796a6ccee3a465b547f033ab5e0c5/ufal.udpipe-1.3.1.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18ec825cb98845ded4147278c9c257ed1b2fee76e48d0c86a288827fcd3d9916",
                "md5": "a871982e1bf0c9e4c75a6ec01e583c2d",
                "sha256": "4c12982568965ccd45f672cf85bd8289450e288d9637ef3981a984270721f998"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a871982e1bf0c9e4c75a6ec01e583c2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1541507,
            "upload_time": "2023-11-16T08:58:45",
            "upload_time_iso_8601": "2023-11-16T08:58:45.073494Z",
            "url": "https://files.pythonhosted.org/packages/18/ec/825cb98845ded4147278c9c257ed1b2fee76e48d0c86a288827fcd3d9916/ufal.udpipe-1.3.1.1-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30c35ed8a20a03db436fb412b6c8e6ca860f9ce6007c738d40e579b1cb22bcbf",
                "md5": "ecbde88a0e89381f36fe386431cf675c",
                "sha256": "400019e7090ac18fe3f23aaa58ac01ef5204bfac31fbae2ac53e42483668780e"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ecbde88a0e89381f36fe386431cf675c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1483170,
            "upload_time": "2023-11-16T08:58:47",
            "upload_time_iso_8601": "2023-11-16T08:58:47.761886Z",
            "url": "https://files.pythonhosted.org/packages/30/c3/5ed8a20a03db436fb412b6c8e6ca860f9ce6007c738d40e579b1cb22bcbf/ufal.udpipe-1.3.1.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9bf8e4e6198b50628ec765abddbb49013201e41f8ec2d2dc9c3f3dd69bafcce",
                "md5": "bcae7c5fcc52f028afa4c5bee46e81b8",
                "sha256": "8004f4ba37e9915a15c59064f7cb207ac5388c44390cd781d4b857eb2c7004b2"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "bcae7c5fcc52f028afa4c5bee46e81b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 716854,
            "upload_time": "2023-11-16T08:58:50",
            "upload_time_iso_8601": "2023-11-16T08:58:50.548621Z",
            "url": "https://files.pythonhosted.org/packages/e9/bf/8e4e6198b50628ec765abddbb49013201e41f8ec2d2dc9c3f3dd69bafcce/ufal.udpipe-1.3.1.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7447420bfe9365305d16c75afd48039e26ae8773c966a324b97afdc13769945",
                "md5": "e9fee3dde208919afc8ad5e080a86645",
                "sha256": "5aa9d83b5d1dc321322b3973dd24b57ab669440ca1c25788627233ebea9c616e"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e9fee3dde208919afc8ad5e080a86645",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 892673,
            "upload_time": "2023-11-16T08:58:53",
            "upload_time_iso_8601": "2023-11-16T08:58:53.495071Z",
            "url": "https://files.pythonhosted.org/packages/a7/44/7420bfe9365305d16c75afd48039e26ae8773c966a324b97afdc13769945/ufal.udpipe-1.3.1.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a58fbd6c4d0a0bc34a5552012891222738c28214d735a382c34234d4355ad30",
                "md5": "34941a0eaab06cfb3ed3588dfa134c00",
                "sha256": "2b50ed4fe716e2d5417afa559aa485c58cf548bbe375ced86453092261671504"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "34941a0eaab06cfb3ed3588dfa134c00",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 915910,
            "upload_time": "2023-11-16T08:58:56",
            "upload_time_iso_8601": "2023-11-16T08:58:56.089843Z",
            "url": "https://files.pythonhosted.org/packages/0a/58/fbd6c4d0a0bc34a5552012891222738c28214d735a382c34234d4355ad30/ufal.udpipe-1.3.1.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8cebda1d1e6eb97df1a415bddf85de5839b1ea05d442762d2e00506a0e28b515",
                "md5": "96ff7e3a0fda89907bc15597f7b1e91f",
                "sha256": "b78b34f04fe877543da9f4594604def35b650df77a23f8090f40540e22b623b5"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "96ff7e3a0fda89907bc15597f7b1e91f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 835512,
            "upload_time": "2023-11-16T08:58:58",
            "upload_time_iso_8601": "2023-11-16T08:58:58.682444Z",
            "url": "https://files.pythonhosted.org/packages/8c/eb/da1d1e6eb97df1a415bddf85de5839b1ea05d442762d2e00506a0e28b515/ufal.udpipe-1.3.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e7aac423847697f15358a6ca1f005fb6a03456aa64d9d953c65726e432ce0b3",
                "md5": "06555da34f0181f77a083a1854714a1b",
                "sha256": "2c4d32a401b09c3ff4faffec32e16cdc157f9956212a4120fa3a1653c19afd9b"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "06555da34f0181f77a083a1854714a1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 909506,
            "upload_time": "2023-11-16T08:59:01",
            "upload_time_iso_8601": "2023-11-16T08:59:01.220272Z",
            "url": "https://files.pythonhosted.org/packages/4e/7a/ac423847697f15358a6ca1f005fb6a03456aa64d9d953c65726e432ce0b3/ufal.udpipe-1.3.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c61dc0d69672d65e0be6089a6afec97639a7b4906f9b0f7765c605de82356b8",
                "md5": "7914a3e35a1944c8437cf72acc1dfdd1",
                "sha256": "c91cdb2f0ca32b64e1f44f0ca8d158c9307a33f7a5c27889ff77817675d09a2d"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7914a3e35a1944c8437cf72acc1dfdd1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 967787,
            "upload_time": "2023-11-16T08:59:03",
            "upload_time_iso_8601": "2023-11-16T08:59:03.484604Z",
            "url": "https://files.pythonhosted.org/packages/7c/61/dc0d69672d65e0be6089a6afec97639a7b4906f9b0f7765c605de82356b8/ufal.udpipe-1.3.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f6d9abd1270bccccb391f7986a6c31b1e9f093c77448cbd713f6a207ec7dcf9",
                "md5": "37f1eb372df0708be1588cec6784f0a3",
                "sha256": "2172c03994801e12725de39fb9961d497393c350b0f87c664d8d0686ec88191e"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37f1eb372df0708be1588cec6784f0a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 936829,
            "upload_time": "2023-11-16T08:59:05",
            "upload_time_iso_8601": "2023-11-16T08:59:05.727483Z",
            "url": "https://files.pythonhosted.org/packages/5f/6d/9abd1270bccccb391f7986a6c31b1e9f093c77448cbd713f6a207ec7dcf9/ufal.udpipe-1.3.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc05788d88e086b46390c8638933d4dedcd9e73f92dfcc3177498b7c218aff64",
                "md5": "d76d7173086d7394a1c70c65737cc806",
                "sha256": "f386eb14807d7bd80b3de8c6e772ef49c6629b26d70279db3831189e7c9051b1"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d76d7173086d7394a1c70c65737cc806",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1443784,
            "upload_time": "2023-11-16T08:59:08",
            "upload_time_iso_8601": "2023-11-16T08:59:08.357408Z",
            "url": "https://files.pythonhosted.org/packages/fc/05/788d88e086b46390c8638933d4dedcd9e73f92dfcc3177498b7c218aff64/ufal.udpipe-1.3.1.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a212b3ea3bd991cbc97adfd9d7f0cd879f16e58d9754c688cf857fb2aa7937e7",
                "md5": "820b8a7d140e0b2501f3058598499edf",
                "sha256": "c9fcfca31cb2f97d84be97dd7bf897b05a2d3120c7c5d02a012659ef2381c4b0"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "820b8a7d140e0b2501f3058598499edf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1541500,
            "upload_time": "2023-11-16T08:59:11",
            "upload_time_iso_8601": "2023-11-16T08:59:11.000722Z",
            "url": "https://files.pythonhosted.org/packages/a2/12/b3ea3bd991cbc97adfd9d7f0cd879f16e58d9754c688cf857fb2aa7937e7/ufal.udpipe-1.3.1.1-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa4dbca178445ab248d153c5c29e6aa7a3ff482f3d8165b69eb5abc5f1f087a9",
                "md5": "175b628ff3b0639a5a5f83f61045d545",
                "sha256": "0017ab5921626da9c8006945416412bc14f1ef94439f96c917ee4bd18485c7be"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "175b628ff3b0639a5a5f83f61045d545",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1483172,
            "upload_time": "2023-11-16T08:59:13",
            "upload_time_iso_8601": "2023-11-16T08:59:13.769058Z",
            "url": "https://files.pythonhosted.org/packages/fa/4d/bca178445ab248d153c5c29e6aa7a3ff482f3d8165b69eb5abc5f1f087a9/ufal.udpipe-1.3.1.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4b14d7798dbd2ad20b187a89dc12fcdaf3ac7d1f3c026a5fd01932f6ae56425",
                "md5": "fc68f05d15f52fd2dc8d4a123c33202a",
                "sha256": "52c803002f0b62854481bfc604e3cbc2c25baee0fe6fb9ca990f508484070128"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "fc68f05d15f52fd2dc8d4a123c33202a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 716850,
            "upload_time": "2023-11-16T08:59:16",
            "upload_time_iso_8601": "2023-11-16T08:59:16.007905Z",
            "url": "https://files.pythonhosted.org/packages/e4/b1/4d7798dbd2ad20b187a89dc12fcdaf3ac7d1f3c026a5fd01932f6ae56425/ufal.udpipe-1.3.1.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89f74f041bd08ddb6b1198c0de71fa8e03610a129d47794ca360ea579b17296c",
                "md5": "2cb9adbfe29e8882140b46b65592ae2e",
                "sha256": "00af7c54a4522a363be9e333ebab1eb540a1fd493d4e5949c038193d4d904dcb"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2cb9adbfe29e8882140b46b65592ae2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 892587,
            "upload_time": "2023-11-16T08:59:18",
            "upload_time_iso_8601": "2023-11-16T08:59:18.236892Z",
            "url": "https://files.pythonhosted.org/packages/89/f7/4f041bd08ddb6b1198c0de71fa8e03610a129d47794ca360ea579b17296c/ufal.udpipe-1.3.1.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba3f28a8406bf521a6e8b643b442ce02aa4b53343239a6f94d3ddaa056d9d191",
                "md5": "d68d2f6f8f4d12282033d5fb0fa02923",
                "sha256": "173e9999010fd66b8b0d5c3e857e2813baf343517100ebdbb606a764ab5fc5cb"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d68d2f6f8f4d12282033d5fb0fa02923",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 919131,
            "upload_time": "2024-03-09T21:19:12",
            "upload_time_iso_8601": "2024-03-09T21:19:12.568234Z",
            "url": "https://files.pythonhosted.org/packages/ba/3f/28a8406bf521a6e8b643b442ce02aa4b53343239a6f94d3ddaa056d9d191/ufal.udpipe-1.3.1.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85aa7271be23d28b28d6fe3460606a5d5566c0dd1110b577daf03874a346d76d",
                "md5": "f2ff5debbede99c9b0222eaee71c34ab",
                "sha256": "ecccc239e616a2fed84732aeb433f2f25924a0433e0eb8562b199aa80c8924d6"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f2ff5debbede99c9b0222eaee71c34ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 837018,
            "upload_time": "2024-03-09T21:19:15",
            "upload_time_iso_8601": "2024-03-09T21:19:15.217909Z",
            "url": "https://files.pythonhosted.org/packages/85/aa/7271be23d28b28d6fe3460606a5d5566c0dd1110b577daf03874a346d76d/ufal.udpipe-1.3.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40e5833f895b12e8fdb00595683cf6528bbf22c0e1dbd6f69b99e468f6b3251e",
                "md5": "5e63aaae0cd3664adbec789a74cae1e7",
                "sha256": "ca8f6644116ecaf331942e15b15f2e962aa1ccda813e2e439137e43cb5804218"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5e63aaae0cd3664adbec789a74cae1e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 910463,
            "upload_time": "2024-03-09T21:19:18",
            "upload_time_iso_8601": "2024-03-09T21:19:18.481740Z",
            "url": "https://files.pythonhosted.org/packages/40/e5/833f895b12e8fdb00595683cf6528bbf22c0e1dbd6f69b99e468f6b3251e/ufal.udpipe-1.3.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f76c487160865b85d99a527cd03a8d8f0e6cc139c04be231d3658d68e5d22004",
                "md5": "d4dc2f38f792957e1e7a3cd943a2c9a8",
                "sha256": "4a863bb6c7a7bb9f1538f367f8e636b2b85dcb0d0537515901b8ff50afdcb334"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d4dc2f38f792957e1e7a3cd943a2c9a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 970444,
            "upload_time": "2024-03-09T21:19:22",
            "upload_time_iso_8601": "2024-03-09T21:19:22.050699Z",
            "url": "https://files.pythonhosted.org/packages/f7/6c/487160865b85d99a527cd03a8d8f0e6cc139c04be231d3658d68e5d22004/ufal.udpipe-1.3.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "566ce5da774b26a0e82a947b25e5659262756949cce59618d5e4ab8c6e21d267",
                "md5": "b8efe12a7daf8e6a2f03a86dd8a643b5",
                "sha256": "1c3d4f836a29cd20b3413d8d2450355a35145f135cb9491a0b9321b0ac597ac7"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b8efe12a7daf8e6a2f03a86dd8a643b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 938531,
            "upload_time": "2024-03-09T21:19:25",
            "upload_time_iso_8601": "2024-03-09T21:19:25.369296Z",
            "url": "https://files.pythonhosted.org/packages/56/6c/e5da774b26a0e82a947b25e5659262756949cce59618d5e4ab8c6e21d267/ufal.udpipe-1.3.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e48afc513079f7eea104ec860f3f33bed130ce66fe9164c9e7963d8c1a2d914",
                "md5": "dcf397d4ec90306fe5d2844f6f1a5950",
                "sha256": "5085b79ec5405966f74d1e6c19c4a83c8c742327359f2533bf1c8d5d2d7a4201"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dcf397d4ec90306fe5d2844f6f1a5950",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1445517,
            "upload_time": "2024-03-09T21:19:28",
            "upload_time_iso_8601": "2024-03-09T21:19:28.419469Z",
            "url": "https://files.pythonhosted.org/packages/2e/48/afc513079f7eea104ec860f3f33bed130ce66fe9164c9e7963d8c1a2d914/ufal.udpipe-1.3.1.1-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3726314392911d449026665267c2736a5bfc98a495dd04138b9e65e8151d7659",
                "md5": "d1ba6771c209e9d67cf2c040198809c6",
                "sha256": "f1f993a47651c48b25a9e9aff785de1d177fded9003fc09d0380c27a92c3fc1d"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "d1ba6771c209e9d67cf2c040198809c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1541731,
            "upload_time": "2024-03-09T21:19:31",
            "upload_time_iso_8601": "2024-03-09T21:19:31.757460Z",
            "url": "https://files.pythonhosted.org/packages/37/26/314392911d449026665267c2736a5bfc98a495dd04138b9e65e8151d7659/ufal.udpipe-1.3.1.1-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e2409718aecb660972feadd0d83aed8e5dfef4f3bd4bd6bfbabf234ce2cb296",
                "md5": "e6937f9e5611f39cef3f48c99fd52464",
                "sha256": "966868808646c41c52f3a992bff14e6bc6f226ce5b537877e41ec3450bcfa6e3"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e6937f9e5611f39cef3f48c99fd52464",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1483904,
            "upload_time": "2024-03-09T21:19:34",
            "upload_time_iso_8601": "2024-03-09T21:19:34.501749Z",
            "url": "https://files.pythonhosted.org/packages/5e/24/09718aecb660972feadd0d83aed8e5dfef4f3bd4bd6bfbabf234ce2cb296/ufal.udpipe-1.3.1.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b969d75d89b86c09cf9c63aac8a22c299b8feceff3aaff3256e68a722e548e6",
                "md5": "49ae0c40de405e702b8bbc29a2ad4232",
                "sha256": "f63e3f4e9bef74aabed8836357cf61ccca9ac26316df205d04852fd8d82e83c5"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "49ae0c40de405e702b8bbc29a2ad4232",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 717774,
            "upload_time": "2024-03-09T21:19:36",
            "upload_time_iso_8601": "2024-03-09T21:19:36.691187Z",
            "url": "https://files.pythonhosted.org/packages/1b/96/9d75d89b86c09cf9c63aac8a22c299b8feceff3aaff3256e68a722e548e6/ufal.udpipe-1.3.1.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a299a753c7e873281b98d4d32f0ce1eaf4eaa45aa42d78c919ac8ac76c027050",
                "md5": "99fa32803990f83e69f8536669276b83",
                "sha256": "b37dbff4f8ce834b480cc16508f837472f13e8f4739270546ee73e22e1d3bbab"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "99fa32803990f83e69f8536669276b83",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 894047,
            "upload_time": "2024-03-09T21:19:39",
            "upload_time_iso_8601": "2024-03-09T21:19:39.374906Z",
            "url": "https://files.pythonhosted.org/packages/a2/99/a753c7e873281b98d4d32f0ce1eaf4eaa45aa42d78c919ac8ac76c027050/ufal.udpipe-1.3.1.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b079e3c2d7d2de7aa23fb8ade80bffb88a9cd9604dd1d3002fcb68b1cb55571",
                "md5": "d109b28ed98161014d2e7dd3014da711",
                "sha256": "da1e308184f11e82b012655ffb8e0148ca3b03addbacff46406670340caca1d4"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d109b28ed98161014d2e7dd3014da711",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 917438,
            "upload_time": "2023-11-16T08:59:20",
            "upload_time_iso_8601": "2023-11-16T08:59:20.617719Z",
            "url": "https://files.pythonhosted.org/packages/0b/07/9e3c2d7d2de7aa23fb8ade80bffb88a9cd9604dd1d3002fcb68b1cb55571/ufal.udpipe-1.3.1.1-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58d8791fdbcb6af17cc50299b29e47862c3e09a086cd0467631965f52f4c3cb4",
                "md5": "b2bb85e8797e9e088ccf0af0e6966321",
                "sha256": "187da9b668bfd357e1e14ededff480bd22dd0bb98cd99c9477e79198887758df"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b2bb85e8797e9e088ccf0af0e6966321",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 907512,
            "upload_time": "2023-11-16T08:59:22",
            "upload_time_iso_8601": "2023-11-16T08:59:22.607457Z",
            "url": "https://files.pythonhosted.org/packages/58/d8/791fdbcb6af17cc50299b29e47862c3e09a086cd0467631965f52f4c3cb4/ufal.udpipe-1.3.1.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e62db9cd4e7e95601d0061810120e8de780b23d9ab6c5f23aa69b9f9caf348f",
                "md5": "36045c2a06275cd4de66278fb5523d68",
                "sha256": "71ce606b4bb4043ee8a8ec1e66881a207e00a8a7c56eb94a0bee9686d1adc664"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "36045c2a06275cd4de66278fb5523d68",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 968198,
            "upload_time": "2023-11-16T08:59:25",
            "upload_time_iso_8601": "2023-11-16T08:59:25.177584Z",
            "url": "https://files.pythonhosted.org/packages/8e/62/db9cd4e7e95601d0061810120e8de780b23d9ab6c5f23aa69b9f9caf348f/ufal.udpipe-1.3.1.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8139bc0867668e4d90aed7b59b2b3f96ee1fc1dccf2183071a74907e3d943943",
                "md5": "e0b22a9e300595191dedbd0583970104",
                "sha256": "30f3df3b70965699c94a39612f4b319c53584f83d2bab51e1fbb393407c46fd1"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e0b22a9e300595191dedbd0583970104",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 936640,
            "upload_time": "2023-11-16T08:59:27",
            "upload_time_iso_8601": "2023-11-16T08:59:27.706757Z",
            "url": "https://files.pythonhosted.org/packages/81/39/bc0867668e4d90aed7b59b2b3f96ee1fc1dccf2183071a74907e3d943943/ufal.udpipe-1.3.1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94619e70ffbf35227bacff4f09b820b53fe2a7aeb70c78962579e491969a7453",
                "md5": "38b207b7419b39469fbb557dfd19753e",
                "sha256": "a33bfb55a7423c687358c8e567445f02438c2232ab3d8d05d3f4e40e8646fdd1"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "38b207b7419b39469fbb557dfd19753e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1448204,
            "upload_time": "2023-11-16T08:59:30",
            "upload_time_iso_8601": "2023-11-16T08:59:30.582854Z",
            "url": "https://files.pythonhosted.org/packages/94/61/9e70ffbf35227bacff4f09b820b53fe2a7aeb70c78962579e491969a7453/ufal.udpipe-1.3.1.1-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f25aba16123c3b74f890c9d10936c1f5362851be44ee4f3608a1f3250635e271",
                "md5": "e7139005917dd0a49513971e1f49dddf",
                "sha256": "74be6f1d83808cad9d0fc70b93283bf4739a2fbde13180513a3135365a61fdeb"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "e7139005917dd0a49513971e1f49dddf",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1545842,
            "upload_time": "2023-11-16T08:59:33",
            "upload_time_iso_8601": "2023-11-16T08:59:33.254783Z",
            "url": "https://files.pythonhosted.org/packages/f2/5a/ba16123c3b74f890c9d10936c1f5362851be44ee4f3608a1f3250635e271/ufal.udpipe-1.3.1.1-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5cad07e1be1900f6a7f5eba507c704f6649f2cacabf71a374f059abfcd42b675",
                "md5": "bb72c7116dc6b08c97676bbd0d491df0",
                "sha256": "a1a2929fea2dda3ddef0014b0d4958e0b4a85fab30cc6e0fe98cd1acb7619590"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bb72c7116dc6b08c97676bbd0d491df0",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1487851,
            "upload_time": "2023-11-16T08:59:35",
            "upload_time_iso_8601": "2023-11-16T08:59:35.723145Z",
            "url": "https://files.pythonhosted.org/packages/5c/ad/07e1be1900f6a7f5eba507c704f6649f2cacabf71a374f059abfcd42b675/ufal.udpipe-1.3.1.1-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82fd065009d437987a7d4a8ecbb3bc96d65a8ccd057639744efaaf7d8425f455",
                "md5": "9ad0f94a3afce063984907e062c0edf5",
                "sha256": "d60811764f90ccca6cd872d04e052aae45a70c35bdb3469494c1d5a5f7674783"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "9ad0f94a3afce063984907e062c0edf5",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 751680,
            "upload_time": "2023-11-16T08:59:37",
            "upload_time_iso_8601": "2023-11-16T08:59:37.902350Z",
            "url": "https://files.pythonhosted.org/packages/82/fd/065009d437987a7d4a8ecbb3bc96d65a8ccd057639744efaaf7d8425f455/ufal.udpipe-1.3.1.1-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e51732183585f6582a655a792b5472a9094c34fd316804d080a3e710e1ad914",
                "md5": "c921bdae3cc527458576a9c1bc1d2e16",
                "sha256": "49e9c74714bcab9e4c01f618206369896f885bea0b547336c17cec0e83ac09b7"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c921bdae3cc527458576a9c1bc1d2e16",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 940445,
            "upload_time": "2023-11-16T08:59:40",
            "upload_time_iso_8601": "2023-11-16T08:59:40.482295Z",
            "url": "https://files.pythonhosted.org/packages/5e/51/732183585f6582a655a792b5472a9094c34fd316804d080a3e710e1ad914/ufal.udpipe-1.3.1.1-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21789f638a2fc46baecd118b25aafe17eafcc5c316eb2a9cc6d92814e407ef52",
                "md5": "eb229710fc31642d1c328804a3bb353b",
                "sha256": "c65fc4c47a4fb24f30e89b68b284ed5e8f01d5c05271d19956e96446f264cb52"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb229710fc31642d1c328804a3bb353b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 917419,
            "upload_time": "2023-11-16T08:59:42",
            "upload_time_iso_8601": "2023-11-16T08:59:42.757872Z",
            "url": "https://files.pythonhosted.org/packages/21/78/9f638a2fc46baecd118b25aafe17eafcc5c316eb2a9cc6d92814e407ef52/ufal.udpipe-1.3.1.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "909df91021c4418eb8d4db4db36365f62e5f02129c446c1447f38c5286149ed8",
                "md5": "d3ff72abbbb57860e0beced4ea8fef01",
                "sha256": "5d3f5c03d1934dd20b8951cdce2d6a5735c71d4f9e3327bf079d1a8ba326aa59"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d3ff72abbbb57860e0beced4ea8fef01",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 907493,
            "upload_time": "2023-11-16T08:59:45",
            "upload_time_iso_8601": "2023-11-16T08:59:45.103638Z",
            "url": "https://files.pythonhosted.org/packages/90/9d/f91021c4418eb8d4db4db36365f62e5f02129c446c1447f38c5286149ed8/ufal.udpipe-1.3.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "343163a0cc9f98026a42bc1d172fdf552683e2272c30372907f0b79fee550815",
                "md5": "b48878646deb33f1cdd90264b4973cf2",
                "sha256": "263f5bf979b6ed5331a16f89855d2b2196df226282207e2fe9f60343240a8415"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b48878646deb33f1cdd90264b4973cf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 968179,
            "upload_time": "2023-11-16T08:59:47",
            "upload_time_iso_8601": "2023-11-16T08:59:47.354799Z",
            "url": "https://files.pythonhosted.org/packages/34/31/63a0cc9f98026a42bc1d172fdf552683e2272c30372907f0b79fee550815/ufal.udpipe-1.3.1.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e73a97bdde07492e23d85099746bd3563152e9f33fcf1e9fcbff148b6043c71f",
                "md5": "622e6ddf8c8d2d0794dffc5e22280abc",
                "sha256": "fd97bf8cb8d0925678f5f79b49c9dbee29170690d54dc767c72633b110f3e191"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "622e6ddf8c8d2d0794dffc5e22280abc",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 936619,
            "upload_time": "2023-11-16T08:59:49",
            "upload_time_iso_8601": "2023-11-16T08:59:49.727741Z",
            "url": "https://files.pythonhosted.org/packages/e7/3a/97bdde07492e23d85099746bd3563152e9f33fcf1e9fcbff148b6043c71f/ufal.udpipe-1.3.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74652eddae6e54bd267ab8faff78b120bebc6ad7fce0ef086fef0bb3db7878cc",
                "md5": "a2da675c6e78feb55fe2efd0cec4b83d",
                "sha256": "cd370559f9907e9f96ec049b69eb3b9a66314c71bea946e7cba1219b8f48a4b6"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a2da675c6e78feb55fe2efd0cec4b83d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1448185,
            "upload_time": "2023-11-16T08:59:52",
            "upload_time_iso_8601": "2023-11-16T08:59:52.084076Z",
            "url": "https://files.pythonhosted.org/packages/74/65/2eddae6e54bd267ab8faff78b120bebc6ad7fce0ef086fef0bb3db7878cc/ufal.udpipe-1.3.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2070dcf1478687ecaaa95a27fda1c134ac71f75051225a558d5dabb59a33652",
                "md5": "f1a2e73c56083cbc00a0fb02c009fa09",
                "sha256": "ad77bd8056738ae01fe9e5b1446169308f5c3fea416c066f30994c65431e2fa9"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "f1a2e73c56083cbc00a0fb02c009fa09",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1545825,
            "upload_time": "2023-11-16T08:59:54",
            "upload_time_iso_8601": "2023-11-16T08:59:54.639524Z",
            "url": "https://files.pythonhosted.org/packages/a2/07/0dcf1478687ecaaa95a27fda1c134ac71f75051225a558d5dabb59a33652/ufal.udpipe-1.3.1.1-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc245ac8d15939ecd558a7e329fd916ea76c56b347f8ab166199ad8176f87aad",
                "md5": "5e8cc130c3f416b994f2399950b41415",
                "sha256": "8be00aed1581f142fbaff3c4b1c9dcf1978baf54fb9500e4dd96be3bc254a63b"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5e8cc130c3f416b994f2399950b41415",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1487833,
            "upload_time": "2023-11-16T08:59:56",
            "upload_time_iso_8601": "2023-11-16T08:59:56.873161Z",
            "url": "https://files.pythonhosted.org/packages/dc/24/5ac8d15939ecd558a7e329fd916ea76c56b347f8ab166199ad8176f87aad/ufal.udpipe-1.3.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3be5b90977a06971935e7045b2e9c760cb06b96a0592558626d826fdb406c1c0",
                "md5": "bfeefca0083d7d8175dbc5b951a3e83a",
                "sha256": "10088f811aef9d9c06449196c6095b148b8c7b31b7240837bd08dab8577241ce"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "bfeefca0083d7d8175dbc5b951a3e83a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 716580,
            "upload_time": "2023-11-16T08:59:59",
            "upload_time_iso_8601": "2023-11-16T08:59:59.250356Z",
            "url": "https://files.pythonhosted.org/packages/3b/e5/b90977a06971935e7045b2e9c760cb06b96a0592558626d826fdb406c1c0/ufal.udpipe-1.3.1.1-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a165b4f6f3a4785ff03e51765f735240981a33a2fc9a54ddb4e99fdc87cb7c7d",
                "md5": "8443b0014604d98b2ed2418c7d128e5c",
                "sha256": "3915387395eb236d661aa47817eab4576a5ff46eb1b50eba6d73f5506e190874"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8443b0014604d98b2ed2418c7d128e5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 892523,
            "upload_time": "2023-11-16T09:00:02",
            "upload_time_iso_8601": "2023-11-16T09:00:02.145495Z",
            "url": "https://files.pythonhosted.org/packages/a1/65/b4f6f3a4785ff03e51765f735240981a33a2fc9a54ddb4e99fdc87cb7c7d/ufal.udpipe-1.3.1.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d8bfdf67b1ee10e27c742da62b5ece3db7c78f9ceab7d310118ccd3c3b9148f",
                "md5": "4983351bb168af01eb56327c950b2856",
                "sha256": "909272a52eeb5352a684f42b49f5e483011966446bfb736d466de26f26c3c4d5"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4983351bb168af01eb56327c950b2856",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 918061,
            "upload_time": "2023-11-16T09:00:05",
            "upload_time_iso_8601": "2023-11-16T09:00:05.427102Z",
            "url": "https://files.pythonhosted.org/packages/3d/8b/fdf67b1ee10e27c742da62b5ece3db7c78f9ceab7d310118ccd3c3b9148f/ufal.udpipe-1.3.1.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e672493f21b5884eea3d12040552796837dd9b8f003c9e17f9f46f588e2c9a79",
                "md5": "862092bd190ba4ed423b03620c34f18d",
                "sha256": "a7b162c9aac5844f7c9a3f8a3e8bc8128982b74727038690063a4cc96593b95f"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "862092bd190ba4ed423b03620c34f18d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 837108,
            "upload_time": "2023-11-16T09:00:08",
            "upload_time_iso_8601": "2023-11-16T09:00:08.039099Z",
            "url": "https://files.pythonhosted.org/packages/e6/72/493f21b5884eea3d12040552796837dd9b8f003c9e17f9f46f588e2c9a79/ufal.udpipe-1.3.1.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98734175535062ec216c0eba39e8b25345d66c298c88e5e36f5a7c47772993f0",
                "md5": "c7a82aecd53332c7cdabac0220da7a2c",
                "sha256": "5334d099a2db351265f8b38be1ea8599c98edb3a6d01152a2cca09ca5c294636"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c7a82aecd53332c7cdabac0220da7a2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 909289,
            "upload_time": "2023-11-16T09:00:10",
            "upload_time_iso_8601": "2023-11-16T09:00:10.416302Z",
            "url": "https://files.pythonhosted.org/packages/98/73/4175535062ec216c0eba39e8b25345d66c298c88e5e36f5a7c47772993f0/ufal.udpipe-1.3.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe9d499976d363ec65060d0fd96adf3e407fb5a3e6c2809198cb3e66488731e7",
                "md5": "9b523f9525b752f5bb4861aea6658efa",
                "sha256": "7ec27b09927ed337c86975a09969977f3ef11fbcf34469449b341fa8223dc4d6"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9b523f9525b752f5bb4861aea6658efa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 968115,
            "upload_time": "2023-11-16T09:00:13",
            "upload_time_iso_8601": "2023-11-16T09:00:13.328501Z",
            "url": "https://files.pythonhosted.org/packages/fe/9d/499976d363ec65060d0fd96adf3e407fb5a3e6c2809198cb3e66488731e7/ufal.udpipe-1.3.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10f44c3ad5a5baa10c860f68e61947aeec04717a8f159baa70b9505dbf982fe6",
                "md5": "37e3ad5f93ad785320be309f51a17f91",
                "sha256": "6a16b38e03275d08c144893644632d34d1fa915316bb43546c6760b2ab322f61"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37e3ad5f93ad785320be309f51a17f91",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 937188,
            "upload_time": "2023-11-16T09:00:15",
            "upload_time_iso_8601": "2023-11-16T09:00:15.930782Z",
            "url": "https://files.pythonhosted.org/packages/10/f4/4c3ad5a5baa10c860f68e61947aeec04717a8f159baa70b9505dbf982fe6/ufal.udpipe-1.3.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d63f25b4a87ccc094f581a5ffca165fd83c9e22b03fd9e3c4acb911cdca3dd6",
                "md5": "c47bff9e527f4d5d4b8611830c1e6477",
                "sha256": "715e93875cad3b2c98511ec769681beaf87c24fafd3e49200bc8a5b1f991d716"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c47bff9e527f4d5d4b8611830c1e6477",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1443643,
            "upload_time": "2023-11-16T09:00:18",
            "upload_time_iso_8601": "2023-11-16T09:00:18.864141Z",
            "url": "https://files.pythonhosted.org/packages/5d/63/f25b4a87ccc094f581a5ffca165fd83c9e22b03fd9e3c4acb911cdca3dd6/ufal.udpipe-1.3.1.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "844db1305f12147e381ef5ca6b552ddb9b81333accc09dff9218a3bf4a27d1a9",
                "md5": "7e3d2f8652bda754bd791cec701f57a6",
                "sha256": "b7de8812ea1c85f2f571a13315ecd97d8fc5ff72542dfdaa3e62e53dbd229786"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "7e3d2f8652bda754bd791cec701f57a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1541851,
            "upload_time": "2023-11-16T09:00:21",
            "upload_time_iso_8601": "2023-11-16T09:00:21.992589Z",
            "url": "https://files.pythonhosted.org/packages/84/4d/b1305f12147e381ef5ca6b552ddb9b81333accc09dff9218a3bf4a27d1a9/ufal.udpipe-1.3.1.1-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f1ab4298797c85973bfb3f8d829e886b619895639848150e79ff0a8f3380b3c",
                "md5": "cb5330ce0e07d4c15ba2851c3fae91a2",
                "sha256": "7d884996746b04b2e8cec2cf00d09064ad7481b10f3f4e723a180c60e836e4c2"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb5330ce0e07d4c15ba2851c3fae91a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1483301,
            "upload_time": "2023-11-16T09:00:24",
            "upload_time_iso_8601": "2023-11-16T09:00:24.740461Z",
            "url": "https://files.pythonhosted.org/packages/8f/1a/b4298797c85973bfb3f8d829e886b619895639848150e79ff0a8f3380b3c/ufal.udpipe-1.3.1.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f858af7aaaa8fc5e405707b8b1e0cd4e8b754f20f0ff6855a7b5bbaca97d2a00",
                "md5": "4a96d7739ff25a73b1687c823d3ed065",
                "sha256": "2152aed075ac96728ed808dd878f756caaac158183ff7400efbb57cc23e2a799"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "4a96d7739ff25a73b1687c823d3ed065",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 716610,
            "upload_time": "2023-11-16T09:00:27",
            "upload_time_iso_8601": "2023-11-16T09:00:27.249344Z",
            "url": "https://files.pythonhosted.org/packages/f8/58/af7aaaa8fc5e405707b8b1e0cd4e8b754f20f0ff6855a7b5bbaca97d2a00/ufal.udpipe-1.3.1.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96f5a64fe4b353d2477042bc3a5c40b5c69cd6b9606ff087690d8ba487021d6f",
                "md5": "5e66c7e0b548d700d60aa606e3c4f4c0",
                "sha256": "f8f75ce4671c2541be14e717c6f98ca871ed96c59261b6673a0e8304983c9c09"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5e66c7e0b548d700d60aa606e3c4f4c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 892555,
            "upload_time": "2023-11-16T09:00:29",
            "upload_time_iso_8601": "2023-11-16T09:00:29.752691Z",
            "url": "https://files.pythonhosted.org/packages/96/f5/a64fe4b353d2477042bc3a5c40b5c69cd6b9606ff087690d8ba487021d6f/ufal.udpipe-1.3.1.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aba71237a5b8ad7d32bc5c11a9ad45669de749d2e80b721fdcfe0f53d9fc0d32",
                "md5": "a65d884402dfac669c6763f3ef320701",
                "sha256": "cd0148e9609c21746028bcc45d1d63e5a136bf8b1af0643df5cb7f54a0444ac7"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a65d884402dfac669c6763f3ef320701",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 915924,
            "upload_time": "2023-11-16T09:00:32",
            "upload_time_iso_8601": "2023-11-16T09:00:32.782230Z",
            "url": "https://files.pythonhosted.org/packages/ab/a7/1237a5b8ad7d32bc5c11a9ad45669de749d2e80b721fdcfe0f53d9fc0d32/ufal.udpipe-1.3.1.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7bec7fba419b9a1f16cad25d618007304a80a700b13658d1ec32cd4e31867ae",
                "md5": "16fb5fed96249f63d55b8b3bf292d21d",
                "sha256": "a466ee1ad0f35e799057509d8cb57c254b619b64b386a6c8e192e1cd706d8c51"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "16fb5fed96249f63d55b8b3bf292d21d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 835568,
            "upload_time": "2023-11-16T09:00:35",
            "upload_time_iso_8601": "2023-11-16T09:00:35.150492Z",
            "url": "https://files.pythonhosted.org/packages/a7/be/c7fba419b9a1f16cad25d618007304a80a700b13658d1ec32cd4e31867ae/ufal.udpipe-1.3.1.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5b572779e77ca7fded653f2ffc1efb3a57e17c2fe4ffa8b06436cd55d0e8054",
                "md5": "347cd0d51f437607a1df43f095d85540",
                "sha256": "ada7b875a530a55ef510c811ad36f877ab1457828eaffca735f2a0f286e6c621"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "347cd0d51f437607a1df43f095d85540",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 909585,
            "upload_time": "2023-11-16T09:00:37",
            "upload_time_iso_8601": "2023-11-16T09:00:37.547717Z",
            "url": "https://files.pythonhosted.org/packages/e5/b5/72779e77ca7fded653f2ffc1efb3a57e17c2fe4ffa8b06436cd55d0e8054/ufal.udpipe-1.3.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5cf64adcfcc7c3cf13cd5c6dd4de16a44c766dfecd44117160827f1a66f9c009",
                "md5": "7675c09a0f712d1febdfa0928bad2263",
                "sha256": "3b2eb29e0ff27c9bf4df9be362630a56bcd502bb2edec5b42ec2825be21221ac"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7675c09a0f712d1febdfa0928bad2263",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 967929,
            "upload_time": "2023-11-16T09:00:39",
            "upload_time_iso_8601": "2023-11-16T09:00:39.912849Z",
            "url": "https://files.pythonhosted.org/packages/5c/f6/4adcfcc7c3cf13cd5c6dd4de16a44c766dfecd44117160827f1a66f9c009/ufal.udpipe-1.3.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8372a63967a9142fcbd2fdaa758b52b22b3f839229617c75b7b026551d2c73e",
                "md5": "60d3c85a96dce7461849212abbde59aa",
                "sha256": "5b0a321cf91e7199423948178cf979d2095db84ef399cfad93a573087ceea975"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "60d3c85a96dce7461849212abbde59aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 936699,
            "upload_time": "2023-11-16T09:00:42",
            "upload_time_iso_8601": "2023-11-16T09:00:42.341143Z",
            "url": "https://files.pythonhosted.org/packages/f8/37/2a63967a9142fcbd2fdaa758b52b22b3f839229617c75b7b026551d2c73e/ufal.udpipe-1.3.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a02cb1f011cd2f86898ff87ee4d0ec620707a0ba5a6db21160bf9ba034ad29b",
                "md5": "a9c1b7cfc131e0e68b16008f6c6b698f",
                "sha256": "b8ad378ab5a6665933b1bb66b290530beba7a95e9b97a045cf9914f6d32c3bf0"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a9c1b7cfc131e0e68b16008f6c6b698f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1443881,
            "upload_time": "2023-11-16T09:00:45",
            "upload_time_iso_8601": "2023-11-16T09:00:45.197832Z",
            "url": "https://files.pythonhosted.org/packages/2a/02/cb1f011cd2f86898ff87ee4d0ec620707a0ba5a6db21160bf9ba034ad29b/ufal.udpipe-1.3.1.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56e74b741cf02c32ab8bb323dbd6009eb31e5d271e83dc27903eaf108b1f90e0",
                "md5": "73976521fba2e431873e2643903efedf",
                "sha256": "977257a465e42111c0e5d68723116671cbbe11645b94140e686871deb339d2eb"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "73976521fba2e431873e2643903efedf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1541664,
            "upload_time": "2023-11-16T09:00:47",
            "upload_time_iso_8601": "2023-11-16T09:00:47.938626Z",
            "url": "https://files.pythonhosted.org/packages/56/e7/4b741cf02c32ab8bb323dbd6009eb31e5d271e83dc27903eaf108b1f90e0/ufal.udpipe-1.3.1.1-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84372c1e5fdba8760c87cf8d50c1daf56b546a365cd846495ccf15ae6f61ef9d",
                "md5": "a79a21b641a706265a872f22dd83d719",
                "sha256": "9d10fd5970e4681f4fa5000f2c66f23dc0a848f53fdbf6de0344b9329dd1b8cf"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a79a21b641a706265a872f22dd83d719",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1483162,
            "upload_time": "2023-11-16T09:00:50",
            "upload_time_iso_8601": "2023-11-16T09:00:50.977997Z",
            "url": "https://files.pythonhosted.org/packages/84/37/2c1e5fdba8760c87cf8d50c1daf56b546a365cd846495ccf15ae6f61ef9d/ufal.udpipe-1.3.1.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06e6d935dbfe6baee26042d0c0f9ec5f851506b09e5b48e0b3d96b2a05c32cbe",
                "md5": "257cd8970eb45036b8e225623a2fd2a3",
                "sha256": "b6a495c9233c24b42add3d9c7da5d8b5829d06aefd13e817f5be00839001ac39"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "257cd8970eb45036b8e225623a2fd2a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 716814,
            "upload_time": "2023-11-16T09:00:53",
            "upload_time_iso_8601": "2023-11-16T09:00:53.339347Z",
            "url": "https://files.pythonhosted.org/packages/06/e6/d935dbfe6baee26042d0c0f9ec5f851506b09e5b48e0b3d96b2a05c32cbe/ufal.udpipe-1.3.1.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10923d90357e51758c90e53cb7d8f9571247dc6ccd30e7bb0f116c7fd5bf5042",
                "md5": "e420bdb6cc00d678f0cee980c62d95a9",
                "sha256": "d3c589879c63e6e366923fdbc3193b48a0d5eaf8eb11e4b3103b0cd1847dbdb9"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e420bdb6cc00d678f0cee980c62d95a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 892624,
            "upload_time": "2023-11-16T09:00:56",
            "upload_time_iso_8601": "2023-11-16T09:00:56.089962Z",
            "url": "https://files.pythonhosted.org/packages/10/92/3d90357e51758c90e53cb7d8f9571247dc6ccd30e7bb0f116c7fd5bf5042/ufal.udpipe-1.3.1.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c60d85376b8691650379a43d7a074b4d2c41c4f37789fb3048e11643ed5a3f4",
                "md5": "69723042879c5c3bbf5b0699d54dd38d",
                "sha256": "936e2448523c5010c07af45755b9bc1f86f28c7c25af1a510422519568bb8d04"
            },
            "downloads": -1,
            "filename": "ufal.udpipe-1.3.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "69723042879c5c3bbf5b0699d54dd38d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 350343,
            "upload_time": "2023-11-16T09:00:58",
            "upload_time_iso_8601": "2023-11-16T09:00:58.189830Z",
            "url": "https://files.pythonhosted.org/packages/2c/60/d85376b8691650379a43d7a074b4d2c41c4f37789fb3048e11643ed5a3f4/ufal.udpipe-1.3.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-16 09:00:58",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "ufal.udpipe"
}
        
Elapsed time: 0.31464s