fasttext-wheel


Namefasttext-wheel JSON
Version 0.9.2 PyPI version JSON
download
home_pagehttps://github.com/facebookresearch/fastText
Summaryfasttext Python bindings
upload_time2023-05-05 12:02:55
maintainer
docs_urlNone
authorOnur Celebi
requires_python
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            fastText |CircleCI|
===================

`fastText <https://fasttext.cc/>`__ is a library for efficient learning
of word representations and sentence classification.

In this document we present how to use fastText in python.

Table of contents
-----------------

-  `Requirements <#requirements>`__
-  `Installation <#installation>`__
-  `Usage overview <#usage-overview>`__
-  `Word representation model <#word-representation-model>`__
-  `Text classification model <#text-classification-model>`__
-  `IMPORTANT: Preprocessing data / encoding
   conventions <#important-preprocessing-data-encoding-conventions>`__
-  `More examples <#more-examples>`__
-  `API <#api>`__
-  `train_unsupervised parameters <#train_unsupervised-parameters>`__
-  `train_supervised parameters <#train_supervised-parameters>`__
-  `model object <#model-object>`__

Requirements
============

`fastText <https://fasttext.cc/>`__ builds on modern Mac OS and Linux
distributions. Since it uses C++11 features, it requires a compiler with
good C++11 support. You will need `Python <https://www.python.org/>`__
(version 2.7 or ≥ 3.4), `NumPy <http://www.numpy.org/>`__ &
`SciPy <https://www.scipy.org/>`__ and
`pybind11 <https://github.com/pybind/pybind11>`__.

Installation
============

To install the latest release, you can do :

.. code:: bash

    $ pip install fasttext

or, to get the latest development version of fasttext, you can install
from our github repository :

.. code:: bash

    $ git clone https://github.com/facebookresearch/fastText.git
    $ cd fastText
    $ sudo pip install .
    $ # or :
    $ sudo python setup.py install

Usage overview
==============

Word representation model
-------------------------

In order to learn word vectors, as `described
here <https://fasttext.cc/docs/en/references.html#enriching-word-vectors-with-subword-information>`__,
we can use ``fasttext.train_unsupervised`` function like this:

.. code:: py

    import fasttext

    # Skipgram model :
    model = fasttext.train_unsupervised('data.txt', model='skipgram')

    # or, cbow model :
    model = fasttext.train_unsupervised('data.txt', model='cbow')

where ``data.txt`` is a training file containing utf-8 encoded text.

The returned ``model`` object represents your learned model, and you can
use it to retrieve information.

.. code:: py

    print(model.words)   # list of words in dictionary
    print(model['king']) # get the vector of the word 'king'

Saving and loading a model object
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

You can save your trained model object by calling the function
``save_model``.

.. code:: py

    model.save_model("model_filename.bin")

and retrieve it later thanks to the function ``load_model`` :

.. code:: py

    model = fasttext.load_model("model_filename.bin")

For more information about word representation usage of fasttext, you
can refer to our `word representations
tutorial <https://fasttext.cc/docs/en/unsupervised-tutorial.html>`__.

Text classification model
-------------------------

In order to train a text classifier using the method `described
here <https://fasttext.cc/docs/en/references.html#bag-of-tricks-for-efficient-text-classification>`__,
we can use ``fasttext.train_supervised`` function like this:

.. code:: py

    import fasttext

    model = fasttext.train_supervised('data.train.txt')

where ``data.train.txt`` is a text file containing a training sentence
per line along with the labels. By default, we assume that labels are
words that are prefixed by the string ``__label__``

Once the model is trained, we can retrieve the list of words and labels:

.. code:: py

    print(model.words)
    print(model.labels)

To evaluate our model by computing the precision at 1 (P@1) and the
recall on a test set, we use the ``test`` function:

.. code:: py

    def print_results(N, p, r):
        print("N\t" + str(N))
        print("P@{}\t{:.3f}".format(1, p))
        print("R@{}\t{:.3f}".format(1, r))

    print_results(*model.test('test.txt'))

We can also predict labels for a specific text :

.. code:: py

    model.predict("Which baking dish is best to bake a banana bread ?")

By default, ``predict`` returns only one label : the one with the
highest probability. You can also predict more than one label by
specifying the parameter ``k``:

.. code:: py

    model.predict("Which baking dish is best to bake a banana bread ?", k=3)

If you want to predict more than one sentence you can pass an array of
strings :

.. code:: py

    model.predict(["Which baking dish is best to bake a banana bread ?", "Why not put knives in the dishwasher?"], k=3)

Of course, you can also save and load a model to/from a file as `in the
word representation usage <#saving-and-loading-a-model-object>`__.

For more information about text classification usage of fasttext, you
can refer to our `text classification
tutorial <https://fasttext.cc/docs/en/supervised-tutorial.html>`__.

Compress model files with quantization
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

When you want to save a supervised model file, fastText can compress it
in order to have a much smaller model file by sacrificing only a little
bit performance.

.. code:: py

    # with the previously trained `model` object, call :
    model.quantize(input='data.train.txt', retrain=True)

    # then display results and save the new model :
    print_results(*model.test(valid_data))
    model.save_model("model_filename.ftz")

``model_filename.ftz`` will have a much smaller size than
``model_filename.bin``.

For further reading on quantization, you can refer to `this paragraph
from our blog
post <https://fasttext.cc/blog/2017/10/02/blog-post.html#model-compression>`__.

IMPORTANT: Preprocessing data / encoding conventions
----------------------------------------------------

In general it is important to properly preprocess your data. In
particular our example scripts in the `root
folder <https://github.com/facebookresearch/fastText>`__ do this.

fastText assumes UTF-8 encoded text. All text must be `unicode for
Python2 <https://docs.python.org/2/library/functions.html#unicode>`__
and `str for
Python3 <https://docs.python.org/3.5/library/stdtypes.html#textseq>`__.
The passed text will be `encoded as UTF-8 by
pybind11 <https://pybind11.readthedocs.io/en/master/advanced/cast/strings.html?highlight=utf-8#strings-bytes-and-unicode-conversions>`__
before passed to the fastText C++ library. This means it is important to
use UTF-8 encoded text when building a model. On Unix-like systems you
can convert text using `iconv <https://en.wikipedia.org/wiki/Iconv>`__.

fastText will tokenize (split text into pieces) based on the following
ASCII characters (bytes). In particular, it is not aware of UTF-8
whitespace. We advice the user to convert UTF-8 whitespace / word
boundaries into one of the following symbols as appropiate.

-  space
-  tab
-  vertical tab
-  carriage return
-  formfeed
-  the null character

The newline character is used to delimit lines of text. In particular,
the EOS token is appended to a line of text if a newline character is
encountered. The only exception is if the number of tokens exceeds the
MAX\_LINE\_SIZE constant as defined in the `Dictionary
header <https://github.com/facebookresearch/fastText/blob/master/src/dictionary.h>`__.
This means if you have text that is not separate by newlines, such as
the `fil9 dataset <http://mattmahoney.net/dc/textdata>`__, it will be
broken into chunks with MAX\_LINE\_SIZE of tokens and the EOS token is
not appended.

The length of a token is the number of UTF-8 characters by considering
the `leading two bits of a
byte <https://en.wikipedia.org/wiki/UTF-8#Description>`__ to identify
`subsequent bytes of a multi-byte
sequence <https://github.com/facebookresearch/fastText/blob/master/src/dictionary.cc>`__.
Knowing this is especially important when choosing the minimum and
maximum length of subwords. Further, the EOS token (as specified in the
`Dictionary
header <https://github.com/facebookresearch/fastText/blob/master/src/dictionary.h>`__)
is considered a character and will not be broken into subwords.

More examples
-------------

In order to have a better knowledge of fastText models, please consider
the main
`README <https://github.com/facebookresearch/fastText/blob/master/README.md>`__
and in particular `the tutorials on our
website <https://fasttext.cc/docs/en/supervised-tutorial.html>`__.

You can find further python examples in `the doc
folder <https://github.com/facebookresearch/fastText/tree/master/python/doc/examples>`__.

As with any package you can get help on any Python function using the
help function.

For example

::

    +>>> import fasttext
    +>>> help(fasttext.FastText)

    Help on module fasttext.FastText in fasttext:

    NAME
        fasttext.FastText

    DESCRIPTION
        # Copyright (c) 2017-present, Facebook, Inc.
        # All rights reserved.
        #
        # This source code is licensed under the MIT license found in the
        # LICENSE file in the root directory of this source tree.

    FUNCTIONS
        load_model(path)
            Load a model given a filepath and return a model object.

        tokenize(text)
            Given a string of text, tokenize it and return a list of tokens
    [...]

API
===

``train_unsupervised`` parameters
---------------------------------

.. code:: python

        input             # training file path (required)
        model             # unsupervised fasttext model {cbow, skipgram} [skipgram]
        lr                # learning rate [0.05]
        dim               # size of word vectors [100]
        ws                # size of the context window [5]
        epoch             # number of epochs [5]
        minCount          # minimal number of word occurences [5]
        minn              # min length of char ngram [3]
        maxn              # max length of char ngram [6]
        neg               # number of negatives sampled [5]
        wordNgrams        # max length of word ngram [1]
        loss              # loss function {ns, hs, softmax, ova} [ns]
        bucket            # number of buckets [2000000]
        thread            # number of threads [number of cpus]
        lrUpdateRate      # change the rate of updates for the learning rate [100]
        t                 # sampling threshold [0.0001]
        verbose           # verbose [2]

``train_supervised`` parameters
-------------------------------

.. code:: python

        input             # training file path (required)
        lr                # learning rate [0.1]
        dim               # size of word vectors [100]
        ws                # size of the context window [5]
        epoch             # number of epochs [5]
        minCount          # minimal number of word occurences [1]
        minCountLabel     # minimal number of label occurences [1]
        minn              # min length of char ngram [0]
        maxn              # max length of char ngram [0]
        neg               # number of negatives sampled [5]
        wordNgrams        # max length of word ngram [1]
        loss              # loss function {ns, hs, softmax, ova} [softmax]
        bucket            # number of buckets [2000000]
        thread            # number of threads [number of cpus]
        lrUpdateRate      # change the rate of updates for the learning rate [100]
        t                 # sampling threshold [0.0001]
        label             # label prefix ['__label__']
        verbose           # verbose [2]
        pretrainedVectors # pretrained word vectors (.vec file) for supervised learning []

``model`` object
----------------

``train_supervised``, ``train_unsupervised`` and ``load_model``
functions return an instance of ``_FastText`` class, that we generaly
name ``model`` object.

This object exposes those training arguments as properties : ``lr``,
``dim``, ``ws``, ``epoch``, ``minCount``, ``minCountLabel``, ``minn``,
``maxn``, ``neg``, ``wordNgrams``, ``loss``, ``bucket``, ``thread``,
``lrUpdateRate``, ``t``, ``label``, ``verbose``, ``pretrainedVectors``.
So ``model.wordNgrams`` will give you the max length of word ngram used
for training this model.

In addition, the object exposes several functions :

.. code:: python

        get_dimension           # Get the dimension (size) of a lookup vector (hidden layer).
                                # This is equivalent to `dim` property.
        get_input_vector        # Given an index, get the corresponding vector of the Input Matrix.
        get_input_matrix        # Get a copy of the full input matrix of a Model.
        get_labels              # Get the entire list of labels of the dictionary
                                # This is equivalent to `labels` property.
        get_line                # Split a line of text into words and labels.
        get_output_matrix       # Get a copy of the full output matrix of a Model.
        get_sentence_vector     # Given a string, get a single vector represenation. This function
                                # assumes to be given a single line of text. We split words on
                                # whitespace (space, newline, tab, vertical tab) and the control
                                # characters carriage return, formfeed and the null character.
        get_subword_id          # Given a subword, return the index (within input matrix) it hashes to.
        get_subwords            # Given a word, get the subwords and their indicies.
        get_word_id             # Given a word, get the word id within the dictionary.
        get_word_vector         # Get the vector representation of word.
        get_words               # Get the entire list of words of the dictionary
                                # This is equivalent to `words` property.
        is_quantized            # whether the model has been quantized
        predict                 # Given a string, get a list of labels and a list of corresponding probabilities.
        quantize                # Quantize the model reducing the size of the model and it's memory footprint.
        save_model              # Save the model to the given path
        test                    # Evaluate supervised model using file given by path
        test_label              # Return the precision and recall score for each label.

The properties ``words``, ``labels`` return the words and labels from
the dictionary :

.. code:: py

    model.words         # equivalent to model.get_words()
    model.labels        # equivalent to model.get_labels()

The object overrides ``__getitem__`` and ``__contains__`` functions in
order to return the representation of a word and to check if a word is
in the vocabulary.

.. code:: py

    model['king']       # equivalent to model.get_word_vector('king')
    'king' in model     # equivalent to `'king' in model.get_words()`

Join the fastText community
---------------------------

-  `Facebook page <https://www.facebook.com/groups/1174547215919768>`__
-  `Stack
   overflow <https://stackoverflow.com/questions/tagged/fasttext>`__
-  `Google
   group <https://groups.google.com/forum/#!forum/fasttext-library>`__
-  `GitHub <https://github.com/facebookresearch/fastText>`__

.. |CircleCI| image:: https://circleci.com/gh/facebookresearch/fastText/tree/master.svg?style=svg
   :target: https://circleci.com/gh/facebookresearch/fastText/tree/master



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/facebookresearch/fastText",
    "name": "fasttext-wheel",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Onur Celebi",
    "author_email": "celebio@fb.com",
    "download_url": "https://files.pythonhosted.org/packages/c8/51/022e84b23ec435248a39f727dae94240321ebe2fdc104800de80410e1550/fasttext-wheel-0.9.2.tar.gz",
    "platform": "",
    "description": "fastText |CircleCI|\n===================\n\n`fastText <https://fasttext.cc/>`__ is a library for efficient learning\nof word representations and sentence classification.\n\nIn this document we present how to use fastText in python.\n\nTable of contents\n-----------------\n\n-  `Requirements <#requirements>`__\n-  `Installation <#installation>`__\n-  `Usage overview <#usage-overview>`__\n-  `Word representation model <#word-representation-model>`__\n-  `Text classification model <#text-classification-model>`__\n-  `IMPORTANT: Preprocessing data / encoding\n   conventions <#important-preprocessing-data-encoding-conventions>`__\n-  `More examples <#more-examples>`__\n-  `API <#api>`__\n-  `train_unsupervised parameters <#train_unsupervised-parameters>`__\n-  `train_supervised parameters <#train_supervised-parameters>`__\n-  `model object <#model-object>`__\n\nRequirements\n============\n\n`fastText <https://fasttext.cc/>`__ builds on modern Mac OS and Linux\ndistributions. Since it uses C++11 features, it requires a compiler with\ngood C++11 support. You will need `Python <https://www.python.org/>`__\n(version 2.7 or \u2265 3.4), `NumPy <http://www.numpy.org/>`__ &\n`SciPy <https://www.scipy.org/>`__ and\n`pybind11 <https://github.com/pybind/pybind11>`__.\n\nInstallation\n============\n\nTo install the latest release, you can do :\n\n.. code:: bash\n\n    $ pip install fasttext\n\nor, to get the latest development version of fasttext, you can install\nfrom our github repository :\n\n.. code:: bash\n\n    $ git clone https://github.com/facebookresearch/fastText.git\n    $ cd fastText\n    $ sudo pip install .\n    $ # or :\n    $ sudo python setup.py install\n\nUsage overview\n==============\n\nWord representation model\n-------------------------\n\nIn order to learn word vectors, as `described\nhere <https://fasttext.cc/docs/en/references.html#enriching-word-vectors-with-subword-information>`__,\nwe can use ``fasttext.train_unsupervised`` function like this:\n\n.. code:: py\n\n    import fasttext\n\n    # Skipgram model :\n    model = fasttext.train_unsupervised('data.txt', model='skipgram')\n\n    # or, cbow model :\n    model = fasttext.train_unsupervised('data.txt', model='cbow')\n\nwhere ``data.txt`` is a training file containing utf-8 encoded text.\n\nThe returned ``model`` object represents your learned model, and you can\nuse it to retrieve information.\n\n.. code:: py\n\n    print(model.words)   # list of words in dictionary\n    print(model['king']) # get the vector of the word 'king'\n\nSaving and loading a model object\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nYou can save your trained model object by calling the function\n``save_model``.\n\n.. code:: py\n\n    model.save_model(\"model_filename.bin\")\n\nand retrieve it later thanks to the function ``load_model`` :\n\n.. code:: py\n\n    model = fasttext.load_model(\"model_filename.bin\")\n\nFor more information about word representation usage of fasttext, you\ncan refer to our `word representations\ntutorial <https://fasttext.cc/docs/en/unsupervised-tutorial.html>`__.\n\nText classification model\n-------------------------\n\nIn order to train a text classifier using the method `described\nhere <https://fasttext.cc/docs/en/references.html#bag-of-tricks-for-efficient-text-classification>`__,\nwe can use ``fasttext.train_supervised`` function like this:\n\n.. code:: py\n\n    import fasttext\n\n    model = fasttext.train_supervised('data.train.txt')\n\nwhere ``data.train.txt`` is a text file containing a training sentence\nper line along with the labels. By default, we assume that labels are\nwords that are prefixed by the string ``__label__``\n\nOnce the model is trained, we can retrieve the list of words and labels:\n\n.. code:: py\n\n    print(model.words)\n    print(model.labels)\n\nTo evaluate our model by computing the precision at 1 (P@1) and the\nrecall on a test set, we use the ``test`` function:\n\n.. code:: py\n\n    def print_results(N, p, r):\n        print(\"N\\t\" + str(N))\n        print(\"P@{}\\t{:.3f}\".format(1, p))\n        print(\"R@{}\\t{:.3f}\".format(1, r))\n\n    print_results(*model.test('test.txt'))\n\nWe can also predict labels for a specific text :\n\n.. code:: py\n\n    model.predict(\"Which baking dish is best to bake a banana bread ?\")\n\nBy default, ``predict`` returns only one label : the one with the\nhighest probability. You can also predict more than one label by\nspecifying the parameter ``k``:\n\n.. code:: py\n\n    model.predict(\"Which baking dish is best to bake a banana bread ?\", k=3)\n\nIf you want to predict more than one sentence you can pass an array of\nstrings :\n\n.. code:: py\n\n    model.predict([\"Which baking dish is best to bake a banana bread ?\", \"Why not put knives in the dishwasher?\"], k=3)\n\nOf course, you can also save and load a model to/from a file as `in the\nword representation usage <#saving-and-loading-a-model-object>`__.\n\nFor more information about text classification usage of fasttext, you\ncan refer to our `text classification\ntutorial <https://fasttext.cc/docs/en/supervised-tutorial.html>`__.\n\nCompress model files with quantization\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nWhen you want to save a supervised model file, fastText can compress it\nin order to have a much smaller model file by sacrificing only a little\nbit performance.\n\n.. code:: py\n\n    # with the previously trained `model` object, call :\n    model.quantize(input='data.train.txt', retrain=True)\n\n    # then display results and save the new model :\n    print_results(*model.test(valid_data))\n    model.save_model(\"model_filename.ftz\")\n\n``model_filename.ftz`` will have a much smaller size than\n``model_filename.bin``.\n\nFor further reading on quantization, you can refer to `this paragraph\nfrom our blog\npost <https://fasttext.cc/blog/2017/10/02/blog-post.html#model-compression>`__.\n\nIMPORTANT: Preprocessing data / encoding conventions\n----------------------------------------------------\n\nIn general it is important to properly preprocess your data. In\nparticular our example scripts in the `root\nfolder <https://github.com/facebookresearch/fastText>`__ do this.\n\nfastText assumes UTF-8 encoded text. All text must be `unicode for\nPython2 <https://docs.python.org/2/library/functions.html#unicode>`__\nand `str for\nPython3 <https://docs.python.org/3.5/library/stdtypes.html#textseq>`__.\nThe passed text will be `encoded as UTF-8 by\npybind11 <https://pybind11.readthedocs.io/en/master/advanced/cast/strings.html?highlight=utf-8#strings-bytes-and-unicode-conversions>`__\nbefore passed to the fastText C++ library. This means it is important to\nuse UTF-8 encoded text when building a model. On Unix-like systems you\ncan convert text using `iconv <https://en.wikipedia.org/wiki/Iconv>`__.\n\nfastText will tokenize (split text into pieces) based on the following\nASCII characters (bytes). In particular, it is not aware of UTF-8\nwhitespace. We advice the user to convert UTF-8 whitespace / word\nboundaries into one of the following symbols as appropiate.\n\n-  space\n-  tab\n-  vertical tab\n-  carriage return\n-  formfeed\n-  the null character\n\nThe newline character is used to delimit lines of text. In particular,\nthe EOS token is appended to a line of text if a newline character is\nencountered. The only exception is if the number of tokens exceeds the\nMAX\\_LINE\\_SIZE constant as defined in the `Dictionary\nheader <https://github.com/facebookresearch/fastText/blob/master/src/dictionary.h>`__.\nThis means if you have text that is not separate by newlines, such as\nthe `fil9 dataset <http://mattmahoney.net/dc/textdata>`__, it will be\nbroken into chunks with MAX\\_LINE\\_SIZE of tokens and the EOS token is\nnot appended.\n\nThe length of a token is the number of UTF-8 characters by considering\nthe `leading two bits of a\nbyte <https://en.wikipedia.org/wiki/UTF-8#Description>`__ to identify\n`subsequent bytes of a multi-byte\nsequence <https://github.com/facebookresearch/fastText/blob/master/src/dictionary.cc>`__.\nKnowing this is especially important when choosing the minimum and\nmaximum length of subwords. Further, the EOS token (as specified in the\n`Dictionary\nheader <https://github.com/facebookresearch/fastText/blob/master/src/dictionary.h>`__)\nis considered a character and will not be broken into subwords.\n\nMore examples\n-------------\n\nIn order to have a better knowledge of fastText models, please consider\nthe main\n`README <https://github.com/facebookresearch/fastText/blob/master/README.md>`__\nand in particular `the tutorials on our\nwebsite <https://fasttext.cc/docs/en/supervised-tutorial.html>`__.\n\nYou can find further python examples in `the doc\nfolder <https://github.com/facebookresearch/fastText/tree/master/python/doc/examples>`__.\n\nAs with any package you can get help on any Python function using the\nhelp function.\n\nFor example\n\n::\n\n    +>>> import fasttext\n    +>>> help(fasttext.FastText)\n\n    Help on module fasttext.FastText in fasttext:\n\n    NAME\n        fasttext.FastText\n\n    DESCRIPTION\n        # Copyright (c) 2017-present, Facebook, Inc.\n        # All rights reserved.\n        #\n        # This source code is licensed under the MIT license found in the\n        # LICENSE file in the root directory of this source tree.\n\n    FUNCTIONS\n        load_model(path)\n            Load a model given a filepath and return a model object.\n\n        tokenize(text)\n            Given a string of text, tokenize it and return a list of tokens\n    [...]\n\nAPI\n===\n\n``train_unsupervised`` parameters\n---------------------------------\n\n.. code:: python\n\n        input             # training file path (required)\n        model             # unsupervised fasttext model {cbow, skipgram} [skipgram]\n        lr                # learning rate [0.05]\n        dim               # size of word vectors [100]\n        ws                # size of the context window [5]\n        epoch             # number of epochs [5]\n        minCount          # minimal number of word occurences [5]\n        minn              # min length of char ngram [3]\n        maxn              # max length of char ngram [6]\n        neg               # number of negatives sampled [5]\n        wordNgrams        # max length of word ngram [1]\n        loss              # loss function {ns, hs, softmax, ova} [ns]\n        bucket            # number of buckets [2000000]\n        thread            # number of threads [number of cpus]\n        lrUpdateRate      # change the rate of updates for the learning rate [100]\n        t                 # sampling threshold [0.0001]\n        verbose           # verbose [2]\n\n``train_supervised`` parameters\n-------------------------------\n\n.. code:: python\n\n        input             # training file path (required)\n        lr                # learning rate [0.1]\n        dim               # size of word vectors [100]\n        ws                # size of the context window [5]\n        epoch             # number of epochs [5]\n        minCount          # minimal number of word occurences [1]\n        minCountLabel     # minimal number of label occurences [1]\n        minn              # min length of char ngram [0]\n        maxn              # max length of char ngram [0]\n        neg               # number of negatives sampled [5]\n        wordNgrams        # max length of word ngram [1]\n        loss              # loss function {ns, hs, softmax, ova} [softmax]\n        bucket            # number of buckets [2000000]\n        thread            # number of threads [number of cpus]\n        lrUpdateRate      # change the rate of updates for the learning rate [100]\n        t                 # sampling threshold [0.0001]\n        label             # label prefix ['__label__']\n        verbose           # verbose [2]\n        pretrainedVectors # pretrained word vectors (.vec file) for supervised learning []\n\n``model`` object\n----------------\n\n``train_supervised``, ``train_unsupervised`` and ``load_model``\nfunctions return an instance of ``_FastText`` class, that we generaly\nname ``model`` object.\n\nThis object exposes those training arguments as properties : ``lr``,\n``dim``, ``ws``, ``epoch``, ``minCount``, ``minCountLabel``, ``minn``,\n``maxn``, ``neg``, ``wordNgrams``, ``loss``, ``bucket``, ``thread``,\n``lrUpdateRate``, ``t``, ``label``, ``verbose``, ``pretrainedVectors``.\nSo ``model.wordNgrams`` will give you the max length of word ngram used\nfor training this model.\n\nIn addition, the object exposes several functions :\n\n.. code:: python\n\n        get_dimension           # Get the dimension (size) of a lookup vector (hidden layer).\n                                # This is equivalent to `dim` property.\n        get_input_vector        # Given an index, get the corresponding vector of the Input Matrix.\n        get_input_matrix        # Get a copy of the full input matrix of a Model.\n        get_labels              # Get the entire list of labels of the dictionary\n                                # This is equivalent to `labels` property.\n        get_line                # Split a line of text into words and labels.\n        get_output_matrix       # Get a copy of the full output matrix of a Model.\n        get_sentence_vector     # Given a string, get a single vector represenation. This function\n                                # assumes to be given a single line of text. We split words on\n                                # whitespace (space, newline, tab, vertical tab) and the control\n                                # characters carriage return, formfeed and the null character.\n        get_subword_id          # Given a subword, return the index (within input matrix) it hashes to.\n        get_subwords            # Given a word, get the subwords and their indicies.\n        get_word_id             # Given a word, get the word id within the dictionary.\n        get_word_vector         # Get the vector representation of word.\n        get_words               # Get the entire list of words of the dictionary\n                                # This is equivalent to `words` property.\n        is_quantized            # whether the model has been quantized\n        predict                 # Given a string, get a list of labels and a list of corresponding probabilities.\n        quantize                # Quantize the model reducing the size of the model and it's memory footprint.\n        save_model              # Save the model to the given path\n        test                    # Evaluate supervised model using file given by path\n        test_label              # Return the precision and recall score for each label.\n\nThe properties ``words``, ``labels`` return the words and labels from\nthe dictionary :\n\n.. code:: py\n\n    model.words         # equivalent to model.get_words()\n    model.labels        # equivalent to model.get_labels()\n\nThe object overrides ``__getitem__`` and ``__contains__`` functions in\norder to return the representation of a word and to check if a word is\nin the vocabulary.\n\n.. code:: py\n\n    model['king']       # equivalent to model.get_word_vector('king')\n    'king' in model     # equivalent to `'king' in model.get_words()`\n\nJoin the fastText community\n---------------------------\n\n-  `Facebook page <https://www.facebook.com/groups/1174547215919768>`__\n-  `Stack\n   overflow <https://stackoverflow.com/questions/tagged/fasttext>`__\n-  `Google\n   group <https://groups.google.com/forum/#!forum/fasttext-library>`__\n-  `GitHub <https://github.com/facebookresearch/fastText>`__\n\n.. |CircleCI| image:: https://circleci.com/gh/facebookresearch/fastText/tree/master.svg?style=svg\n   :target: https://circleci.com/gh/facebookresearch/fastText/tree/master\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "fasttext Python bindings",
    "version": "0.9.2",
    "project_urls": {
        "Homepage": "https://github.com/facebookresearch/fastText"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "235ef2b3287f9dc873bbe41dfa2edf3dc934b056eaca0afe139612b7ded9e797",
                "md5": "a7a70df01f37a6c7268e165ef0a8661a",
                "sha256": "efa1fae3b10b64978ba78a2cd1490627c8d861c23f39abd95393d5836e4f0c8f"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp27-cp27m-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a7a70df01f37a6c7268e165ef0a8661a",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 326166,
            "upload_time": "2020-09-03T06:53:19",
            "upload_time_iso_8601": "2020-09-03T06:53:19.010520Z",
            "url": "https://files.pythonhosted.org/packages/23/5e/f2b3287f9dc873bbe41dfa2edf3dc934b056eaca0afe139612b7ded9e797/fasttext_wheel-0.9.2-cp27-cp27m-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "059d6fa50db0373dfced92bf670b007b51cc326a6da3bf2df67e280785200f9c",
                "md5": "d640b710bfde1e9a59f0aed57090936f",
                "sha256": "04d5e693c25880574faf9e5a24bc19514e560dd41add7ecd88cb253f50874669"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp27-cp27m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d640b710bfde1e9a59f0aed57090936f",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 330271,
            "upload_time": "2020-12-08T05:05:56",
            "upload_time_iso_8601": "2020-12-08T05:05:56.783619Z",
            "url": "https://files.pythonhosted.org/packages/05/9d/6fa50db0373dfced92bf670b007b51cc326a6da3bf2df67e280785200f9c/fasttext_wheel-0.9.2-cp27-cp27m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c17a513614f035783389dc99e7e53f9ceabdeee2631d9def02951c8662241925",
                "md5": "5781ab1de73cd4c02d04bea1452808e7",
                "sha256": "2e3b0a205baee622877aa5a83b369947e68271c99b9a6eccc8fbe48948d6e6b5"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp27-cp27m-macosx_11_1_arm64.whl",
            "has_sig": false,
            "md5_digest": "5781ab1de73cd4c02d04bea1452808e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 291830,
            "upload_time": "2021-01-15T16:03:32",
            "upload_time_iso_8601": "2021-01-15T16:03:32.328774Z",
            "url": "https://files.pythonhosted.org/packages/c1/7a/513614f035783389dc99e7e53f9ceabdeee2631d9def02951c8662241925/fasttext_wheel-0.9.2-cp27-cp27m-macosx_11_1_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8346ca387fe9206a9b81e2d6b5f254fecc2b28dcc8b84683764f34e039644018",
                "md5": "73d345cdb612612603e6cc75d010625d",
                "sha256": "aced443e9f380b6fd3163e3bfdec43567f7024295a6c9228f91f9566671b7023"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp27-cp27m-manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "73d345cdb612612603e6cc75d010625d",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 4191901,
            "upload_time": "2020-09-03T06:56:39",
            "upload_time_iso_8601": "2020-09-03T06:56:39.391633Z",
            "url": "https://files.pythonhosted.org/packages/83/46/ca387fe9206a9b81e2d6b5f254fecc2b28dcc8b84683764f34e039644018/fasttext_wheel-0.9.2-cp27-cp27m-manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "332fe79c2e6ac4c352784a9d571768a247333a476be43fb78a767c8dc2d2b922",
                "md5": "8e063217eb9784bf84a288466f4f2960",
                "sha256": "c5afabc433c923526e0572e1ed1bf7b21ee5aa77869cb7896f3eab1402067973"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp27-cp27m-manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e063217eb9784bf84a288466f4f2960",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 4326813,
            "upload_time": "2020-09-03T06:56:43",
            "upload_time_iso_8601": "2020-09-03T06:56:43.342229Z",
            "url": "https://files.pythonhosted.org/packages/33/2f/e79c2e6ac4c352784a9d571768a247333a476be43fb78a767c8dc2d2b922/fasttext_wheel-0.9.2-cp27-cp27m-manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1d6afc534f4326d8035758a2dfbba62359884c6dbbf2a31d9ed77e272fb9c38",
                "md5": "98a1b98414ddabb904db9ec2531c49f1",
                "sha256": "838ff1e03ce613964e9a30c3fa96bf1ef3d63b891990eb5c56b054a3b03b2999"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp27-cp27mu-manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "98a1b98414ddabb904db9ec2531c49f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 4191903,
            "upload_time": "2020-09-03T06:56:40",
            "upload_time_iso_8601": "2020-09-03T06:56:40.831991Z",
            "url": "https://files.pythonhosted.org/packages/c1/d6/afc534f4326d8035758a2dfbba62359884c6dbbf2a31d9ed77e272fb9c38/fasttext_wheel-0.9.2-cp27-cp27mu-manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b60ea2b5061b0c0aa9c75154740009758741c45eb7f369188146d90125670fd7",
                "md5": "2f74be88c8c2cbe8b9a005446c184261",
                "sha256": "e6d8bbc2a0f64bfd66875d0d615dec2e6c3a1e2913cef8aa87a78c2eebe45093"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp27-cp27mu-manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2f74be88c8c2cbe8b9a005446c184261",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 4326813,
            "upload_time": "2020-09-03T06:56:45",
            "upload_time_iso_8601": "2020-09-03T06:56:45.274777Z",
            "url": "https://files.pythonhosted.org/packages/b6/0e/a2b5061b0c0aa9c75154740009758741c45eb7f369188146d90125670fd7/fasttext_wheel-0.9.2-cp27-cp27mu-manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1eeddd07bba161fd4bd08a67ab108e37b6ed919b0967913a82d33c45cc3ed047",
                "md5": "75830a2e77dd5316234b748d1aa075fd",
                "sha256": "af606b17d47695a17ee87dc5a5c76e29cc957f08bd090cb2441e3815c030a99d"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "75830a2e77dd5316234b748d1aa075fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 638807,
            "upload_time": "2022-07-09T08:05:23",
            "upload_time_iso_8601": "2022-07-09T08:05:23.317883Z",
            "url": "https://files.pythonhosted.org/packages/1e/ed/dd07bba161fd4bd08a67ab108e37b6ed919b0967913a82d33c45cc3ed047/fasttext_wheel-0.9.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c014c3a40b7255b8f0d62090a153dad406855689daa44982b7ae70b84ee5cfef",
                "md5": "1da301ba72a331d1c9459fd9b553341e",
                "sha256": "c4e9e59778eb3f3a3c99bf3c1257791564fbafab9b80e89345ee0940c20e1648"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp310-cp310-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1da301ba72a331d1c9459fd9b553341e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 324329,
            "upload_time": "2022-07-09T08:09:44",
            "upload_time_iso_8601": "2022-07-09T08:09:44.050759Z",
            "url": "https://files.pythonhosted.org/packages/c0/14/c3a40b7255b8f0d62090a153dad406855689daa44982b7ae70b84ee5cfef/fasttext_wheel-0.9.2-cp310-cp310-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2aff83af4b09e6500c891007ed1ee77e93c7bf6b909c69b0cf67489de3343c81",
                "md5": "0c55c6e3fdcda7beaa731764a82643b2",
                "sha256": "0e8a73ee48502dfc6243faf6799dec3067795a6dc02c1d47fedc620e80e9ee94"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0c55c6e3fdcda7beaa731764a82643b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2861268,
            "upload_time": "2022-07-09T08:00:23",
            "upload_time_iso_8601": "2022-07-09T08:00:23.195119Z",
            "url": "https://files.pythonhosted.org/packages/2a/ff/83af4b09e6500c891007ed1ee77e93c7bf6b909c69b0cf67489de3343c81/fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "943d9de31e989742bca76d85b297fe01d873cb8211ee4faaa8472a43c937783f",
                "md5": "a0496a6d072d18c2bf4fe3d4e8f4b7ee",
                "sha256": "f1dba6805073d46495dc700a8e29a5524c87f141a29820664c47207260723e78"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a0496a6d072d18c2bf4fe3d4e8f4b7ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2640861,
            "upload_time": "2022-07-09T08:01:07",
            "upload_time_iso_8601": "2022-07-09T08:01:07.131400Z",
            "url": "https://files.pythonhosted.org/packages/94/3d/9de31e989742bca76d85b297fe01d873cb8211ee4faaa8472a43c937783f/fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a10b1f0550ced5eb4c4a31edf8cd363e704d12a75a058a156340c794895ac1b",
                "md5": "ead25df0eae7bcf9bce03fa8e809b278",
                "sha256": "dbad8ab4820b08273450a395f76a536044a749227ecac060ba48a1d70426768b"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ead25df0eae7bcf9bce03fa8e809b278",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2786856,
            "upload_time": "2022-07-09T08:01:47",
            "upload_time_iso_8601": "2022-07-09T08:01:47.100977Z",
            "url": "https://files.pythonhosted.org/packages/0a/10/b1f0550ced5eb4c4a31edf8cd363e704d12a75a058a156340c794895ac1b/fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cbcbf5c76ed5c886dd5323e91c0d8d0264a3fae7a398a5fa5fb63eaf226d7893",
                "md5": "33abf5cc36bb8d1570599e03eba2cc30",
                "sha256": "3b7f0d76e2c2b20a582725dc9c7e3419bb55745ac2842271c2e785047b143ac7"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "33abf5cc36bb8d1570599e03eba2cc30",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2907922,
            "upload_time": "2022-07-09T08:01:15",
            "upload_time_iso_8601": "2022-07-09T08:01:15.659320Z",
            "url": "https://files.pythonhosted.org/packages/cb/cb/f5c76ed5c886dd5323e91c0d8d0264a3fae7a398a5fa5fb63eaf226d7893/fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae00d0ef9c22f09abc766aa50144e991e747dbb494c73636201ac2327d8ada55",
                "md5": "9ffa8a8b54a992677ee792f72e8052a4",
                "sha256": "8280415f59178879963791da9b51eee23a0faf1230fbc770fe917801b5d8f3f6"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9ffa8a8b54a992677ee792f72e8052a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2829401,
            "upload_time": "2022-07-09T08:02:16",
            "upload_time_iso_8601": "2022-07-09T08:02:16.184389Z",
            "url": "https://files.pythonhosted.org/packages/ae/00/d0ef9c22f09abc766aa50144e991e747dbb494c73636201ac2327d8ada55/fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21f2defd13727934b9ffa9c01c1facf1dc1353d9d19ad81e8c85f83b08d846b8",
                "md5": "885f55e07e492435b0ac28fd744f5f2b",
                "sha256": "2cce299a49f50b5867fff464d1051beebe1d612b23213bb29b09f96935ca4ca0"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "885f55e07e492435b0ac28fd744f5f2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4332405,
            "upload_time": "2022-07-09T08:00:54",
            "upload_time_iso_8601": "2022-07-09T08:00:54.261293Z",
            "url": "https://files.pythonhosted.org/packages/21/f2/defd13727934b9ffa9c01c1facf1dc1353d9d19ad81e8c85f83b08d846b8/fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ccd9f216866c2d31beac59ad97caa502e3208cf9b21581feba864d7c82ff5995",
                "md5": "04bccdd3af7d1b0e25878f292d4bf133",
                "sha256": "09a25790ad17ee21f31efe39d51e4106c718a1ed9c7ac0bdc1ad7512f2d64d22"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "04bccdd3af7d1b0e25878f292d4bf133",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4472242,
            "upload_time": "2022-07-09T08:00:50",
            "upload_time_iso_8601": "2022-07-09T08:00:50.098751Z",
            "url": "https://files.pythonhosted.org/packages/cc/d9/f216866c2d31beac59ad97caa502e3208cf9b21581feba864d7c82ff5995/fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14a3d7f8b00eb6aeca39d4beb9a683b78eaa9133e162c5cde09a9b16d4eb4611",
                "md5": "2b0ed6227d1b99ecaa5db1f1c1c07a5c",
                "sha256": "6d5d47dacf4930254de1806b19cc603a0daac034477a27329dc7b3a4f4240d4a"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2b0ed6227d1b99ecaa5db1f1c1c07a5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4342340,
            "upload_time": "2022-10-25T07:09:16",
            "upload_time_iso_8601": "2022-10-25T07:09:16.277877Z",
            "url": "https://files.pythonhosted.org/packages/14/a3/d7f8b00eb6aeca39d4beb9a683b78eaa9133e162c5cde09a9b16d4eb4611/fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a785af1ed52339a6c09277921f56e60cc1c167154147a3038ab77aaaf45ef19",
                "md5": "f4a06fe8de60d1594619daeff7fb111d",
                "sha256": "0aa4755a3ab0717e32627ede55e9c12cd7bbba464c73af7f08a3142bd6c62df7"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f4a06fe8de60d1594619daeff7fb111d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4421996,
            "upload_time": "2022-10-25T07:09:59",
            "upload_time_iso_8601": "2022-10-25T07:09:59.107248Z",
            "url": "https://files.pythonhosted.org/packages/3a/78/5af1ed52339a6c09277921f56e60cc1c167154147a3038ab77aaaf45ef19/fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6fd0f3d7275f4a4750f9ed847280df7182d7e1fe7e8dd6a329ad1fdc6f047ed",
                "md5": "222433bc948ea96d9bc99c40085348e2",
                "sha256": "5c4938600006dd13bb215f105adb971e8f129491e03cc5de5ac53f292cdbc9a6"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "222433bc948ea96d9bc99c40085348e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 210491,
            "upload_time": "2022-07-09T08:00:39",
            "upload_time_iso_8601": "2022-07-09T08:00:39.666111Z",
            "url": "https://files.pythonhosted.org/packages/c6/fd/0f3d7275f4a4750f9ed847280df7182d7e1fe7e8dd6a329ad1fdc6f047ed/fasttext_wheel-0.9.2-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f089a495ba568887cb5f9022b600806beb39754ff0870d779b4976e039fdb24",
                "md5": "b5cb3645c35d8e5572f1af160fe46437",
                "sha256": "acb1e336c63fcf46ef8965904c03589d230ebc6a3c4a7f05b0a32a7de85de11a"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b5cb3645c35d8e5572f1af160fe46437",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 241525,
            "upload_time": "2022-07-09T08:00:33",
            "upload_time_iso_8601": "2022-07-09T08:00:33.402726Z",
            "url": "https://files.pythonhosted.org/packages/1f/08/9a495ba568887cb5f9022b600806beb39754ff0870d779b4976e039fdb24/fasttext_wheel-0.9.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e887ff2a0cdcd422a951a3c000a809c2f77462085dde0192f10405377f5454e3",
                "md5": "5225a2c62bd3bd169986c3281e1c8b41",
                "sha256": "a32cc0bee31985c5a15ae2ec4f7d777c84e84294d70969d7382961305b0851cf"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5225a2c62bd3bd169986c3281e1c8b41",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 307771,
            "upload_time": "2022-10-25T08:51:47",
            "upload_time_iso_8601": "2022-10-25T08:51:47.354546Z",
            "url": "https://files.pythonhosted.org/packages/e8/87/ff2a0cdcd422a951a3c000a809c2f77462085dde0192f10405377f5454e3/fasttext_wheel-0.9.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "028a625195477d08abc9d1674ee99c818f565c4a49849db75078c1e319a189db",
                "md5": "ab0e9b1089a92f8e9dbbbb578ed90851",
                "sha256": "aefd4dbecf4c243628a513c3f9f9008a4c94d63f4194cfde6d11975710f04b7c"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ab0e9b1089a92f8e9dbbbb578ed90851",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 330705,
            "upload_time": "2022-10-25T08:33:31",
            "upload_time_iso_8601": "2022-10-25T08:33:31.472233Z",
            "url": "https://files.pythonhosted.org/packages/02/8a/625195477d08abc9d1674ee99c818f565c4a49849db75078c1e319a189db/fasttext_wheel-0.9.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3248a85a2d6c80b303762f2bd296f7a3bbc1027ce6731a3d6f0bc28665c8065",
                "md5": "b3c59c01b3a21f282c5217aa78f01017",
                "sha256": "ef5be5e24ad4aab61eb42c30e1a7909464b20958907c23dfe4037ef247755254"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b3c59c01b3a21f282c5217aa78f01017",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2882873,
            "upload_time": "2022-11-02T13:00:35",
            "upload_time_iso_8601": "2022-11-02T13:00:35.222828Z",
            "url": "https://files.pythonhosted.org/packages/e3/24/8a85a2d6c80b303762f2bd296f7a3bbc1027ce6731a3d6f0bc28665c8065/fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0575105f62d1d24e0bae7c53893c1bbe3cf6eed71c6aa33961105058647e2409",
                "md5": "e8ec4b41a53d8eeed125a75d6382bb42",
                "sha256": "2dcbe5cb3ebad68667772ff2457d1d5ced69e9caa19fe35e53fe1b0c68db69f6"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e8ec4b41a53d8eeed125a75d6382bb42",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2661872,
            "upload_time": "2022-11-02T13:00:54",
            "upload_time_iso_8601": "2022-11-02T13:00:54.818299Z",
            "url": "https://files.pythonhosted.org/packages/05/75/105f62d1d24e0bae7c53893c1bbe3cf6eed71c6aa33961105058647e2409/fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31c474783db26f0067ce9508678b18e033b0d0575e389a7a93431aae0338afcd",
                "md5": "811991a9821fdeb3b32715726a7f3d45",
                "sha256": "ad1a3e10354cb71cb2e182ce4cb7fa61fd2396fe4e28d52002b8f6a749138e4d"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "811991a9821fdeb3b32715726a7f3d45",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2809784,
            "upload_time": "2022-11-02T13:00:41",
            "upload_time_iso_8601": "2022-11-02T13:00:41.575801Z",
            "url": "https://files.pythonhosted.org/packages/31/c4/74783db26f0067ce9508678b18e033b0d0575e389a7a93431aae0338afcd/fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d862b43814c0f0722e3800ffb0ab873f7d17d9ec107d0b7b477583e6e8ac769",
                "md5": "314a5722dcdb0c4469b927a22c6eebba",
                "sha256": "b1e6c4aee8dfc5629aba54c0c044eb0c699b3f82ee5f0f1a8edf69c84ffaa1bd"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "314a5722dcdb0c4469b927a22c6eebba",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2931234,
            "upload_time": "2022-11-02T13:01:55",
            "upload_time_iso_8601": "2022-11-02T13:01:55.116345Z",
            "url": "https://files.pythonhosted.org/packages/2d/86/2b43814c0f0722e3800ffb0ab873f7d17d9ec107d0b7b477583e6e8ac769/fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5dbfa9053e329d43a8daac6afe21f4e856b9f2dabfd69e2a8359c23e3c2e345b",
                "md5": "c1b0f398cd3ff611f3fad58dbee3ac94",
                "sha256": "c7b94290bc5bf1a8f2cf6ca2e84364bca3588525625907323d3a77bc96365915"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c1b0f398cd3ff611f3fad58dbee3ac94",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2849750,
            "upload_time": "2022-11-02T13:00:38",
            "upload_time_iso_8601": "2022-11-02T13:00:38.967258Z",
            "url": "https://files.pythonhosted.org/packages/5d/bf/a9053e329d43a8daac6afe21f4e856b9f2dabfd69e2a8359c23e3c2e345b/fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "644d39e0520fbbde6861467948dfd188aefca614c671e5801ca86b95059f9b1d",
                "md5": "26a9089e50296823c23635985e501846",
                "sha256": "9e09cff3f2002cdef5f046a0969a0bf886d5386c2eb1c15874d90f9a95edb8d0"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "26a9089e50296823c23635985e501846",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4351369,
            "upload_time": "2022-10-25T07:09:18",
            "upload_time_iso_8601": "2022-10-25T07:09:18.669264Z",
            "url": "https://files.pythonhosted.org/packages/64/4d/39e0520fbbde6861467948dfd188aefca614c671e5801ca86b95059f9b1d/fasttext_wheel-0.9.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f61394644fa56b36d5638e2c689f4506e2685a13c78765d03ae22294711460d4",
                "md5": "e02e0c5d5c2dfcb8cdf762af126ec71b",
                "sha256": "1ec13d485e0202e729b3bcb7283dda9c499581f691fa8e835e237ee5cf69a2b5"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e02e0c5d5c2dfcb8cdf762af126ec71b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4430756,
            "upload_time": "2022-10-25T07:10:01",
            "upload_time_iso_8601": "2022-10-25T07:10:01.452029Z",
            "url": "https://files.pythonhosted.org/packages/f6/13/94644fa56b36d5638e2c689f4506e2685a13c78765d03ae22294711460d4/fasttext_wheel-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9e3401187b0dbb79c9e878f74aa70921478817ef3a154d2edd2b41c5ab4d476",
                "md5": "65ee6a0bea8e3fee4e7388d24faf1aac",
                "sha256": "39d3201a8e6dabf59c0d8f9a7064d12bb996bca38f5f15e5a678e12fcbd39a35"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "65ee6a0bea8e3fee4e7388d24faf1aac",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 202482,
            "upload_time": "2022-10-25T07:12:43",
            "upload_time_iso_8601": "2022-10-25T07:12:43.423528Z",
            "url": "https://files.pythonhosted.org/packages/d9/e3/401187b0dbb79c9e878f74aa70921478817ef3a154d2edd2b41c5ab4d476/fasttext_wheel-0.9.2-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96582d1c2557cefa8d30c7e7ed182cac53cc811b4dcf265ffa64fb8e8a6287c5",
                "md5": "ccae41c421e43a2aa211e67fe841e778",
                "sha256": "1afb40118fb1b39e159bbdded14834a6a95415c0be957553647b9d70c7cc45ff"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ccae41c421e43a2aa211e67fe841e778",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 232405,
            "upload_time": "2022-10-25T07:10:33",
            "upload_time_iso_8601": "2022-10-25T07:10:33.006370Z",
            "url": "https://files.pythonhosted.org/packages/96/58/2d1c2557cefa8d30c7e7ed182cac53cc811b4dcf265ffa64fb8e8a6287c5/fasttext_wheel-0.9.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7de48bda15a5b3cc0964df4323c80ff1ec80daa7b51c19ba1aa46aaa43ffe8f",
                "md5": "eb0d18abbb2bfdcf5d2f6a4fecaf53ef",
                "sha256": "17beeccd3935a5c531deb45217dde8d9758ffe764b1a89d82d5dddc8f36aa4e5"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp35-cp35m-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb0d18abbb2bfdcf5d2f6a4fecaf53ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp35",
            "requires_python": null,
            "size": 324979,
            "upload_time": "2020-09-03T07:04:57",
            "upload_time_iso_8601": "2020-09-03T07:04:57.808677Z",
            "url": "https://files.pythonhosted.org/packages/c7/de/48bda15a5b3cc0964df4323c80ff1ec80daa7b51c19ba1aa46aaa43ffe8f/fasttext_wheel-0.9.2-cp35-cp35m-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21e5bf5ab1e84f59c06d73b65a8c5643210e05386df7176404d05e7c293977f7",
                "md5": "cf27733a6543c631bf70d8b857ac7076",
                "sha256": "8def868707775661afc18299b67cbb6548fd98dd6c5b3e1826bf3f95db8ce7a0"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp35-cp35m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cf27733a6543c631bf70d8b857ac7076",
            "packagetype": "bdist_wheel",
            "python_version": "cp35",
            "requires_python": null,
            "size": 329274,
            "upload_time": "2020-12-08T05:05:32",
            "upload_time_iso_8601": "2020-12-08T05:05:32.873388Z",
            "url": "https://files.pythonhosted.org/packages/21/e5/bf5ab1e84f59c06d73b65a8c5643210e05386df7176404d05e7c293977f7/fasttext_wheel-0.9.2-cp35-cp35m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "caf6d89786df0e4671bca8acecfa68d4c27740d1c78855032ba12600513ae567",
                "md5": "adf6554527d2933031100865740e32af",
                "sha256": "a3bb1d14478c7dac126675f057750e854af646be9c028f6e9653cbaf4172a0ec"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp35-cp35m-manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "adf6554527d2933031100865740e32af",
            "packagetype": "bdist_wheel",
            "python_version": "cp35",
            "requires_python": null,
            "size": 4254747,
            "upload_time": "2020-09-03T06:56:42",
            "upload_time_iso_8601": "2020-09-03T06:56:42.191978Z",
            "url": "https://files.pythonhosted.org/packages/ca/f6/d89786df0e4671bca8acecfa68d4c27740d1c78855032ba12600513ae567/fasttext_wheel-0.9.2-cp35-cp35m-manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f46a7338eb40c80ebe0ffcbb0e2269bd4fe23dba02f0c5f010bba738e58b269",
                "md5": "cccb115fff79cabf1cc9f22bef3aa9ff",
                "sha256": "477ef49476f6f9558ae53d4bd9cad625ffd5737073152d1375863b350c2e880f"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp35-cp35m-manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cccb115fff79cabf1cc9f22bef3aa9ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp35",
            "requires_python": null,
            "size": 4378705,
            "upload_time": "2020-09-03T06:56:47",
            "upload_time_iso_8601": "2020-09-03T06:56:47.773672Z",
            "url": "https://files.pythonhosted.org/packages/3f/46/a7338eb40c80ebe0ffcbb0e2269bd4fe23dba02f0c5f010bba738e58b269/fasttext_wheel-0.9.2-cp35-cp35m-manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ceb27c88e7f7fa02b421d4d0be4ea36888305a8ef434f38165132a26496413e0",
                "md5": "8bb763cb8cb9b2234bb232a582afe711",
                "sha256": "84f7bb711137729bace4553cea481fc60b1b8004acd67091ac556e4415fa29f9"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp35-cp35m-win32.whl",
            "has_sig": false,
            "md5_digest": "8bb763cb8cb9b2234bb232a582afe711",
            "packagetype": "bdist_wheel",
            "python_version": "cp35",
            "requires_python": null,
            "size": 195434,
            "upload_time": "2020-09-03T11:35:15",
            "upload_time_iso_8601": "2020-09-03T11:35:15.878860Z",
            "url": "https://files.pythonhosted.org/packages/ce/b2/7c88e7f7fa02b421d4d0be4ea36888305a8ef434f38165132a26496413e0/fasttext_wheel-0.9.2-cp35-cp35m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5333d4358d92f2396edc6ed44d886401a6033e39ab36ef665e20ef8df9a3451",
                "md5": "ecb93758c97ff79be15860316c83beb8",
                "sha256": "2da8e97ac82fe99960e1363c87022abe403a677d5229c7e44787d0c764159b99"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp35-cp35m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ecb93758c97ff79be15860316c83beb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp35",
            "requires_python": null,
            "size": 235054,
            "upload_time": "2020-09-03T11:36:02",
            "upload_time_iso_8601": "2020-09-03T11:36:02.450783Z",
            "url": "https://files.pythonhosted.org/packages/e5/33/3d4358d92f2396edc6ed44d886401a6033e39ab36ef665e20ef8df9a3451/fasttext_wheel-0.9.2-cp35-cp35m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bff783167c103084f4566c30538b87692a9c499da28410685585e1f3432908c6",
                "md5": "ce8366f40d4434848cf8e1b563afd9b3",
                "sha256": "ed960c08196ecd30a349c019a6e79214e0f27da7f21141872b2c02c7286e435a"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp36-cp36m-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ce8366f40d4434848cf8e1b563afd9b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 324977,
            "upload_time": "2020-09-03T06:53:08",
            "upload_time_iso_8601": "2020-09-03T06:53:08.808997Z",
            "url": "https://files.pythonhosted.org/packages/bf/f7/83167c103084f4566c30538b87692a9c499da28410685585e1f3432908c6/fasttext_wheel-0.9.2-cp36-cp36m-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe26a4996a3a9d630e4e881218d578fb6b761a70990a801045ac8678706284c7",
                "md5": "447efb357ef124148840116fc9926bd9",
                "sha256": "26b0ca89c6d5e5fc5c864eb18e327674a45b2c98f38845d58d3e5beae6982ead"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "447efb357ef124148840116fc9926bd9",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 329275,
            "upload_time": "2020-12-08T05:05:44",
            "upload_time_iso_8601": "2020-12-08T05:05:44.429195Z",
            "url": "https://files.pythonhosted.org/packages/fe/26/a4996a3a9d630e4e881218d578fb6b761a70990a801045ac8678706284c7/fasttext_wheel-0.9.2-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39ff12d989a94c53324fca84566ce9c13927180bd6ef26f0470f83cdc862b1cb",
                "md5": "29379773cad7401c3d1c70c59c79d030",
                "sha256": "e8fe842818380ec56ef303461577ac5df7d4308115555879580e11e8ec055dc8"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp36-cp36m-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "29379773cad7401c3d1c70c59c79d030",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2762386,
            "upload_time": "2020-09-03T06:47:05",
            "upload_time_iso_8601": "2020-09-03T06:47:05.042307Z",
            "url": "https://files.pythonhosted.org/packages/39/ff/12d989a94c53324fca84566ce9c13927180bd6ef26f0470f83cdc862b1cb/fasttext_wheel-0.9.2-cp36-cp36m-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "582b2e986947ac205fcfebc4453c7d4e69dc364442e8fd1eb1e421f3251604d1",
                "md5": "7e4ab3db096772d6bc9af5627a6fbfb3",
                "sha256": "18fc4ef2f9fd5060cc7174b121bcdc79edf4d66918ecfda60c030ed94309eb17"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp36-cp36m-manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "7e4ab3db096772d6bc9af5627a6fbfb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 4255191,
            "upload_time": "2020-09-03T06:56:43",
            "upload_time_iso_8601": "2020-09-03T06:56:43.849561Z",
            "url": "https://files.pythonhosted.org/packages/58/2b/2e986947ac205fcfebc4453c7d4e69dc364442e8fd1eb1e421f3251604d1/fasttext_wheel-0.9.2-cp36-cp36m-manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba79bbdb7e27886ee38f0b2a6ace778a778ab7d6baf0c760c248761bffceae6e",
                "md5": "687c712f911a64d5c300749158dfdadf",
                "sha256": "b59f84675ce247735e00acab7afbe4c74753f4fe2c9b0bf21fc60417d339a781"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp36-cp36m-manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "687c712f911a64d5c300749158dfdadf",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 4378649,
            "upload_time": "2020-09-03T06:56:50",
            "upload_time_iso_8601": "2020-09-03T06:56:50.111220Z",
            "url": "https://files.pythonhosted.org/packages/ba/79/bbdb7e27886ee38f0b2a6ace778a778ab7d6baf0c760c248761bffceae6e/fasttext_wheel-0.9.2-cp36-cp36m-manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f314848369078f17548fc606ed758f7b6f9be1c751d50e2d39805817c70fb69",
                "md5": "1e0808e8d2070cb357e4b50a5d15881e",
                "sha256": "bb71f70083ae127b1d0cbfb54857f873091da0ad3a5f63c530654c5104196d9b"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1e0808e8d2070cb357e4b50a5d15881e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2820658,
            "upload_time": "2021-03-08T08:28:42",
            "upload_time_iso_8601": "2021-03-08T08:28:42.301951Z",
            "url": "https://files.pythonhosted.org/packages/6f/31/4848369078f17548fc606ed758f7b6f9be1c751d50e2d39805817c70fb69/fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ff881887a2e2641463e465e86d62f2c07860b894a939cb73db9d7a61333c737",
                "md5": "18a0b576f5f0c3d1ce693e1003321906",
                "sha256": "d1d070b71c765f9e96be36ac6867a4f6d73072ba432b685f424b8d47a2e6c957"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "18a0b576f5f0c3d1ce693e1003321906",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2602313,
            "upload_time": "2021-03-08T08:28:24",
            "upload_time_iso_8601": "2021-03-08T08:28:24.265928Z",
            "url": "https://files.pythonhosted.org/packages/4f/f8/81887a2e2641463e465e86d62f2c07860b894a939cb73db9d7a61333c737/fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b52d6f7d437c746f9881d75fa06a881620eb19916dc6697583bbf800219f8da1",
                "md5": "86ee58c4a9cd867b7f5c4fefd2359f14",
                "sha256": "14fb62960fcfe8408fdc8e2854c2c583a04e422f424ccea34c07070f15e1b0a2"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "86ee58c4a9cd867b7f5c4fefd2359f14",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2751287,
            "upload_time": "2021-07-16T09:04:32",
            "upload_time_iso_8601": "2021-07-16T09:04:32.781980Z",
            "url": "https://files.pythonhosted.org/packages/b5/2d/6f7d437c746f9881d75fa06a881620eb19916dc6697583bbf800219f8da1/fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c49e72162487a4080a13187ccf486af0ee64631a0821fcd21dcf8aeea626357",
                "md5": "d7af5c591d1731605d764ed0f2eb4c31",
                "sha256": "365d998c0d8b910282b9b03c9706d0e87cd569b3a8b37aefd901b237ec10a4ed"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "d7af5c591d1731605d764ed0f2eb4c31",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2867374,
            "upload_time": "2021-07-16T09:04:21",
            "upload_time_iso_8601": "2021-07-16T09:04:21.773106Z",
            "url": "https://files.pythonhosted.org/packages/8c/49/e72162487a4080a13187ccf486af0ee64631a0821fcd21dcf8aeea626357/fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a5e7a0d41360edbf40424e7ac2ebf892d4a7472159f7111c960f2080d17e756",
                "md5": "81da3e5344778a70ce96773695a0824c",
                "sha256": "7f6727e40836c55bf2b9d7761ee25a6274abc17ae4f1ca0ea6eca3973661077b"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "81da3e5344778a70ce96773695a0824c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2791297,
            "upload_time": "2021-07-16T09:05:21",
            "upload_time_iso_8601": "2021-07-16T09:05:21.320490Z",
            "url": "https://files.pythonhosted.org/packages/6a/5e/7a0d41360edbf40424e7ac2ebf892d4a7472159f7111c960f2080d17e756/fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de10ff3f9d3e2215ca1722021aecd692efaf9083e9507da971559b387a603ebd",
                "md5": "56b6b60d862043082842e113c8a0d793",
                "sha256": "704c285c364e44384c88968cdcb8688907d23184aff373a22924135ed4f29e3a"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "56b6b60d862043082842e113c8a0d793",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 4364515,
            "upload_time": "2021-07-16T08:59:29",
            "upload_time_iso_8601": "2021-07-16T08:59:29.486221Z",
            "url": "https://files.pythonhosted.org/packages/de/10/ff3f9d3e2215ca1722021aecd692efaf9083e9507da971559b387a603ebd/fasttext_wheel-0.9.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd4c4bd39e8a355615403cd41477725ec1d39d8ab1507c6c4674ac4548284d54",
                "md5": "09efebf6fe430ec9d32a4cfdff807ca8",
                "sha256": "fefb1e8aa652aab231b5a37e3e5a59a13a95d36143616f9ef8902403a3e5556a"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "09efebf6fe430ec9d32a4cfdff807ca8",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 4491880,
            "upload_time": "2021-07-16T08:59:04",
            "upload_time_iso_8601": "2021-07-16T08:59:04.866175Z",
            "url": "https://files.pythonhosted.org/packages/bd/4c/4bd39e8a355615403cd41477725ec1d39d8ab1507c6c4674ac4548284d54/fasttext_wheel-0.9.2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25962490bd32e6d0339d8fe4ca1627571add62b53df76be32949ffc6917bd1e9",
                "md5": "035c0c35977cf61dd19a7179e5611dec",
                "sha256": "a6231f28c5048c59e1c3231b38887111f6a0b2f51a040323841bd8920dd98683"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "035c0c35977cf61dd19a7179e5611dec",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 197858,
            "upload_time": "2020-09-03T11:36:06",
            "upload_time_iso_8601": "2020-09-03T11:36:06.084431Z",
            "url": "https://files.pythonhosted.org/packages/25/96/2490bd32e6d0339d8fe4ca1627571add62b53df76be32949ffc6917bd1e9/fasttext_wheel-0.9.2-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3c7bda42df49729354da6d325ca3a77201bfae16d81898ee59aa58ab4fcf22f",
                "md5": "bf5f93a6cd628d48268a69b3dd0a8825",
                "sha256": "4990269d29fb1b31ca5595f48be2116c85c8c22e591a16743fea993e97d02418"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bf5f93a6cd628d48268a69b3dd0a8825",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 225301,
            "upload_time": "2020-09-03T11:35:22",
            "upload_time_iso_8601": "2020-09-03T11:35:22.095924Z",
            "url": "https://files.pythonhosted.org/packages/f3/c7/bda42df49729354da6d325ca3a77201bfae16d81898ee59aa58ab4fcf22f/fasttext_wheel-0.9.2-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d9d36c69da842220a4bfa823301a8fcbd8724e91c1ff10719b7c3e5090ddd3e",
                "md5": "7a872f08a8c32fb85de011199ea26881",
                "sha256": "aabcb1efa04a411ee22d364b6dc7e5ffb6b5c72c7522b6d065f03685d54e0c64"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp37-cp37m-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7a872f08a8c32fb85de011199ea26881",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 324973,
            "upload_time": "2020-09-03T06:53:11",
            "upload_time_iso_8601": "2020-09-03T06:53:11.189949Z",
            "url": "https://files.pythonhosted.org/packages/8d/9d/36c69da842220a4bfa823301a8fcbd8724e91c1ff10719b7c3e5090ddd3e/fasttext_wheel-0.9.2-cp37-cp37m-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3c3a63c388ac4df696f9e6193075acf2eec4070d887107bf2355799a4c9e05a",
                "md5": "87d89d5deca1759ead25af1784ecd295",
                "sha256": "964ed076a2190841e3bb7f774c36088810b0e63b30e18c26867f6e7a7b1e7068"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "87d89d5deca1759ead25af1784ecd295",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 329304,
            "upload_time": "2020-12-08T05:10:24",
            "upload_time_iso_8601": "2020-12-08T05:10:24.796190Z",
            "url": "https://files.pythonhosted.org/packages/a3/c3/a63c388ac4df696f9e6193075acf2eec4070d887107bf2355799a4c9e05a/fasttext_wheel-0.9.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a51484490db4ceaf4a647097562b9e7c14fb7bf873083a601812d8a6ccc3ef5",
                "md5": "1cf7eed2c7071646f0a6d9f40523f603",
                "sha256": "ae70c70135c909c2951cae5496bf4ad19d268c03c0c2bd3bf71ce586126d7a5d"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp37-cp37m-manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "1cf7eed2c7071646f0a6d9f40523f603",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4256221,
            "upload_time": "2020-09-03T06:56:46",
            "upload_time_iso_8601": "2020-09-03T06:56:46.251042Z",
            "url": "https://files.pythonhosted.org/packages/8a/51/484490db4ceaf4a647097562b9e7c14fb7bf873083a601812d8a6ccc3ef5/fasttext_wheel-0.9.2-cp37-cp37m-manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac4353c94feb8b9ff2f8d726bd01cc486513e13a5bc2f7076101c781df42854d",
                "md5": "610ddf49fb01fea14daa724d778f1821",
                "sha256": "2ed30ae57f7cab129b2b474929c83e1065be3f11998730a0a178d3a7335fdc6a"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp37-cp37m-manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "610ddf49fb01fea14daa724d778f1821",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4380759,
            "upload_time": "2020-09-03T06:56:52",
            "upload_time_iso_8601": "2020-09-03T06:56:52.646777Z",
            "url": "https://files.pythonhosted.org/packages/ac/43/53c94feb8b9ff2f8d726bd01cc486513e13a5bc2f7076101c781df42854d/fasttext_wheel-0.9.2-cp37-cp37m-manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5720f77b65903aa05d50d8914ec06ee59257cdd2e4f1addc0cb91ad31e5429f",
                "md5": "e2ee7a77ea200cbd4a5206b391cb5430",
                "sha256": "708ccdb59873ab14972944a5ef24bb46ffff9ee851b47b905050716b4d8a1a1e"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e2ee7a77ea200cbd4a5206b391cb5430",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2821944,
            "upload_time": "2021-03-08T08:28:43",
            "upload_time_iso_8601": "2021-03-08T08:28:43.598659Z",
            "url": "https://files.pythonhosted.org/packages/a5/72/0f77b65903aa05d50d8914ec06ee59257cdd2e4f1addc0cb91ad31e5429f/fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3eec51ae2125f492082aaf6bf9635d3cbc9d904293143ee46ec1a989433dd87c",
                "md5": "d7740d6da344301a8f93f6192626155c",
                "sha256": "94afa157f43dc619c070838c6073d4b22e04007229113761e6c67b960c0c7a30"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d7740d6da344301a8f93f6192626155c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2604284,
            "upload_time": "2021-03-08T08:28:25",
            "upload_time_iso_8601": "2021-03-08T08:28:25.853566Z",
            "url": "https://files.pythonhosted.org/packages/3e/ec/51ae2125f492082aaf6bf9635d3cbc9d904293143ee46ec1a989433dd87c/fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6326cfef9f6c5fe35112f513d3abbc89ff17f23ef853f7fe75c5e042ed6c2b66",
                "md5": "beda9186ce5d5b3c20b293b004baec0e",
                "sha256": "0cc583882ad40425d4bcaa09593adb0ce8140b27bbc0d3ea0129421cf785928b"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "beda9186ce5d5b3c20b293b004baec0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2753273,
            "upload_time": "2021-07-16T09:04:34",
            "upload_time_iso_8601": "2021-07-16T09:04:34.371609Z",
            "url": "https://files.pythonhosted.org/packages/63/26/cfef9f6c5fe35112f513d3abbc89ff17f23ef853f7fe75c5e042ed6c2b66/fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da7068ccaea076eb493cf6c6ecaec97e7222a2885ebfbbdbc7a7057b83f9ee59",
                "md5": "169cbcc3f0809c75b54ff80cb91644fd",
                "sha256": "3e9e9812f9acc9054ec6cb9d60df918b94348ca8d0f1c49408de253f622038c4"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "169cbcc3f0809c75b54ff80cb91644fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2868317,
            "upload_time": "2021-07-16T09:04:23",
            "upload_time_iso_8601": "2021-07-16T09:04:23.513688Z",
            "url": "https://files.pythonhosted.org/packages/da/70/68ccaea076eb493cf6c6ecaec97e7222a2885ebfbbdbc7a7057b83f9ee59/fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c6ea98de4d31894356a997db2209ca7c65714742d0b0be31b0d10263f22397d",
                "md5": "4321c8b89295ceec2784a0a248991de9",
                "sha256": "4bbe7046d079ba5724328eb8556212f60315edd26a2625c5bddad307bcee1267"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4321c8b89295ceec2784a0a248991de9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2792584,
            "upload_time": "2021-07-16T09:05:24",
            "upload_time_iso_8601": "2021-07-16T09:05:24.374118Z",
            "url": "https://files.pythonhosted.org/packages/1c/6e/a98de4d31894356a997db2209ca7c65714742d0b0be31b0d10263f22397d/fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b2cc5d43e0627168f26c82dd8e8b0fc7330531f874d5faf2f6ab0b66b5b6ff6",
                "md5": "248d18e6f0ea9c43b53b3a0999f12f6e",
                "sha256": "d5e389c0912606e45be7bcc860d60f8d9e0bc094e84b8c7d2445670ff7275c32"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "248d18e6f0ea9c43b53b3a0999f12f6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4366945,
            "upload_time": "2021-07-16T08:59:31",
            "upload_time_iso_8601": "2021-07-16T08:59:31.206296Z",
            "url": "https://files.pythonhosted.org/packages/3b/2c/c5d43e0627168f26c82dd8e8b0fc7330531f874d5faf2f6ab0b66b5b6ff6/fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "404f817f2eb1d683f3f7482b9806fc97aac29ed6f460ae7569f598946dfa1a91",
                "md5": "aeadb05e6cb1e9bad33d77eadb376e0d",
                "sha256": "1a0bf5f547430b838abcb0957fc7978feb4a02762b445a6c071394fab7207efd"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aeadb05e6cb1e9bad33d77eadb376e0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4492999,
            "upload_time": "2021-07-16T08:59:07",
            "upload_time_iso_8601": "2021-07-16T08:59:07.141564Z",
            "url": "https://files.pythonhosted.org/packages/40/4f/817f2eb1d683f3f7482b9806fc97aac29ed6f460ae7569f598946dfa1a91/fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7190487458ed286f4f12a9f0b172ce694d5948591f02a45dac1afc50bca83574",
                "md5": "f45234a5d941e2a35e15e59c6203d454",
                "sha256": "d22d15523bcf1715af25f9ee33064658c9a51d4447ea32d5b57f003670fd02bc"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f45234a5d941e2a35e15e59c6203d454",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4467669,
            "upload_time": "2022-10-25T07:09:20",
            "upload_time_iso_8601": "2022-10-25T07:09:20.570658Z",
            "url": "https://files.pythonhosted.org/packages/71/90/487458ed286f4f12a9f0b172ce694d5948591f02a45dac1afc50bca83574/fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92345fdc566ef765364f9f6b3f1b8cb1fb8250097d00ae97aad062f083b4d752",
                "md5": "5980ecc50701339bf0ae9c8b31fe3805",
                "sha256": "6e76af4ce3974f28e80da9edfe650703454acaa4597f143ec6ba31892ddefb17"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5980ecc50701339bf0ae9c8b31fe3805",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4557537,
            "upload_time": "2022-10-25T07:10:04",
            "upload_time_iso_8601": "2022-10-25T07:10:04.023739Z",
            "url": "https://files.pythonhosted.org/packages/92/34/5fdc566ef765364f9f6b3f1b8cb1fb8250097d00ae97aad062f083b4d752/fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa6c7d4ebd900a57ba8772fb6c3a4777e38ed94f795e9ee300408a7ccb73fdc3",
                "md5": "9213cbbd1215e3e451fcdcb53fa7fd4a",
                "sha256": "91e744f4100cea6ec7da41a85e9b7b905d679959357cec654febbc42f472c330"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "9213cbbd1215e3e451fcdcb53fa7fd4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 197892,
            "upload_time": "2020-09-03T11:36:52",
            "upload_time_iso_8601": "2020-09-03T11:36:52.647033Z",
            "url": "https://files.pythonhosted.org/packages/fa/6c/7d4ebd900a57ba8772fb6c3a4777e38ed94f795e9ee300408a7ccb73fdc3/fasttext_wheel-0.9.2-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a5f0e8be0e4c9dd4cb18f0f5b5ca19aff5086e01622301aa926b59ca08e90d5",
                "md5": "8c7c2b1b2490247f081648a3bf1034ab",
                "sha256": "17b02b00ca26f84c5a645141e1a88b80a835d74077d5a55738884f2f3e43da2c"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8c7c2b1b2490247f081648a3bf1034ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 225335,
            "upload_time": "2020-09-03T11:37:00",
            "upload_time_iso_8601": "2020-09-03T11:37:00.269177Z",
            "url": "https://files.pythonhosted.org/packages/7a/5f/0e8be0e4c9dd4cb18f0f5b5ca19aff5086e01622301aa926b59ca08e90d5/fasttext_wheel-0.9.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0eb25566b24692211fade36581639a367e77e1fde06e8a4b57b14af5380c8850",
                "md5": "65901ad4335405a64c6e48a64d309e6b",
                "sha256": "0ca1cf85b5159db69223cfa8a1cc5a00b521bb4bb5336fdf344ba743ca8f1dae"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp38-cp38-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "65901ad4335405a64c6e48a64d309e6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 330701,
            "upload_time": "2020-09-03T06:53:13",
            "upload_time_iso_8601": "2020-09-03T06:53:13.745496Z",
            "url": "https://files.pythonhosted.org/packages/0e/b2/5566b24692211fade36581639a367e77e1fde06e8a4b57b14af5380c8850/fasttext_wheel-0.9.2-cp38-cp38-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4ee9441cb5fd8472e67ec2481bacb4ab1de6597875272e4e4e35b21040aa44a",
                "md5": "24469003c31e370222e564d29b64c289",
                "sha256": "ab7e2431999d352f0d417c7edc7bb76ee4377fd35d59dd4e77cefd33ee7341c8"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "24469003c31e370222e564d29b64c289",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 334750,
            "upload_time": "2020-12-08T05:11:27",
            "upload_time_iso_8601": "2020-12-08T05:11:27.277237Z",
            "url": "https://files.pythonhosted.org/packages/f4/ee/9441cb5fd8472e67ec2481bacb4ab1de6597875272e4e4e35b21040aa44a/fasttext_wheel-0.9.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43ffa7f5a22914db1a3191e765f012ab0f5aedb15da63ac55daecd6b91433a20",
                "md5": "090bfb26bfb702f103d1200f37595dfa",
                "sha256": "9d08cf0ea4081b755e029160a96f9be5cfc5468ad54f476fe0ef7a6dec5dc52c"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "090bfb26bfb702f103d1200f37595dfa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 327656,
            "upload_time": "2021-07-17T02:40:47",
            "upload_time_iso_8601": "2021-07-17T02:40:47.146062Z",
            "url": "https://files.pythonhosted.org/packages/43/ff/a7f5a22914db1a3191e765f012ab0f5aedb15da63ac55daecd6b91433a20/fasttext_wheel-0.9.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "197b5724a23b2775f52ffd5d499b18f27a509637b6ff0c7ceb0f827a0ac15da0",
                "md5": "5a31dfcf3c48175048fd6ec6be3e7525",
                "sha256": "e64226520d7433ee0997db4b29abeb21a465b48d68389fee50137eb08f7dd756"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp38-cp38-manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "5a31dfcf3c48175048fd6ec6be3e7525",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4184501,
            "upload_time": "2020-09-03T06:56:48",
            "upload_time_iso_8601": "2020-09-03T06:56:48.942996Z",
            "url": "https://files.pythonhosted.org/packages/19/7b/5724a23b2775f52ffd5d499b18f27a509637b6ff0c7ceb0f827a0ac15da0/fasttext_wheel-0.9.2-cp38-cp38-manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b94e062cf3d8ec65e4ee90fd71aae6d686fb43a330922be58494990baa1a11a4",
                "md5": "9aadbc3ee1f1f01d2faa26b5d08adc40",
                "sha256": "a5f4985db787b187933c12dfd89c972854b80ae97f07d004d73cdc9d251e8eb8"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp38-cp38-manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9aadbc3ee1f1f01d2faa26b5d08adc40",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4298252,
            "upload_time": "2020-09-03T06:56:54",
            "upload_time_iso_8601": "2020-09-03T06:56:54.034113Z",
            "url": "https://files.pythonhosted.org/packages/b9/4e/062cf3d8ec65e4ee90fd71aae6d686fb43a330922be58494990baa1a11a4/fasttext_wheel-0.9.2-cp38-cp38-manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93cfc7c14ad184aaa901f003baae5ea900734107aafd6f985e1a32b1a2c504b5",
                "md5": "c639a3525e18d5a13f5b8272fd413827",
                "sha256": "3c0fdfb0fbfe62c95e6f6ffc0119afb3f5d32914b1be8f7052a828d95b1ca23c"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c639a3525e18d5a13f5b8272fd413827",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2841832,
            "upload_time": "2021-03-08T08:28:44",
            "upload_time_iso_8601": "2021-03-08T08:28:44.933261Z",
            "url": "https://files.pythonhosted.org/packages/93/cf/c7c14ad184aaa901f003baae5ea900734107aafd6f985e1a32b1a2c504b5/fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3aee0054dfa7090ff0e017364ca499db8b6ba1262fc27ff8f882e3f3eb51e14",
                "md5": "b63dd5f449a092a5635ba15942576c7e",
                "sha256": "11efd5f0aebcc6737636b6890ac0b85f3b87aa359645969b4a1962459e588c69"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b63dd5f449a092a5635ba15942576c7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2622738,
            "upload_time": "2021-03-08T08:28:27",
            "upload_time_iso_8601": "2021-03-08T08:28:27.120423Z",
            "url": "https://files.pythonhosted.org/packages/e3/ae/e0054dfa7090ff0e017364ca499db8b6ba1262fc27ff8f882e3f3eb51e14/fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d46af4a2f87f17da37953c9eb12c463b924858d602c1ca80ecc34927f2a3d2dd",
                "md5": "d9ba93ea1b1871cdfc6857d285711c8a",
                "sha256": "3328e851e5896b373395ea108437045fa830c68ef86b0ab4db49bb7d64da77b7"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d9ba93ea1b1871cdfc6857d285711c8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2768539,
            "upload_time": "2021-07-16T09:04:36",
            "upload_time_iso_8601": "2021-07-16T09:04:36.342607Z",
            "url": "https://files.pythonhosted.org/packages/d4/6a/f4a2f87f17da37953c9eb12c463b924858d602c1ca80ecc34927f2a3d2dd/fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ad44ea121e11741f53dd005e2df19024cf91d2a8db5c7328bd0a5416ec53ab2",
                "md5": "4b6c4e2514e452e85ad7e7f3d720124e",
                "sha256": "d29ac75e948ed3ef44df54b6fe203c8b9b3c08fb486a8634b6144425e72531ed"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "4b6c4e2514e452e85ad7e7f3d720124e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2893568,
            "upload_time": "2021-07-16T09:04:25",
            "upload_time_iso_8601": "2021-07-16T09:04:25.304873Z",
            "url": "https://files.pythonhosted.org/packages/6a/d4/4ea121e11741f53dd005e2df19024cf91d2a8db5c7328bd0a5416ec53ab2/fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2923263ec6f8ff5fe2f050f7dca075fee80df6f0eac557c1e37210df1a00befd",
                "md5": "d33bb0faa6ce532e11864a309a0501ed",
                "sha256": "b10eb3702de7b56b4de83b83d39248e75198434fa7f6139805aa7b0a1b31245b"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d33bb0faa6ce532e11864a309a0501ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2810512,
            "upload_time": "2021-07-16T09:05:26",
            "upload_time_iso_8601": "2021-07-16T09:05:26.469761Z",
            "url": "https://files.pythonhosted.org/packages/29/23/263ec6f8ff5fe2f050f7dca075fee80df6f0eac557c1e37210df1a00befd/fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22ceb940a9378ea2e1f1fc10b6616a3867da02e938c869fce7e33604bc0171bf",
                "md5": "f920f84807fcf6d1cfd4693077e550a4",
                "sha256": "1d64763e6f5d5f84ec4f226d78a56e9182fcd15e48219f10eecd09dc2cccefc9"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "f920f84807fcf6d1cfd4693077e550a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4286301,
            "upload_time": "2021-07-16T08:59:32",
            "upload_time_iso_8601": "2021-07-16T08:59:32.916365Z",
            "url": "https://files.pythonhosted.org/packages/22/ce/b940a9378ea2e1f1fc10b6616a3867da02e938c869fce7e33604bc0171bf/fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "552e96dcf52631af45c442a89c7a941b1e3479aa4bcb13206c115ebd7573b3ac",
                "md5": "982cec42fdbb3f3cd6df2e172b9af07c",
                "sha256": "41b7f1237df82d29b6a64ca93894d8558c8b1791fd4f782b28a846c6ebccd182"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "982cec42fdbb3f3cd6df2e172b9af07c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4411442,
            "upload_time": "2021-07-16T08:59:08",
            "upload_time_iso_8601": "2021-07-16T08:59:08.972983Z",
            "url": "https://files.pythonhosted.org/packages/55/2e/96dcf52631af45c442a89c7a941b1e3479aa4bcb13206c115ebd7573b3ac/fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4455f2e35bf0db9d2153593a70bf7ebb6657e9cd48ced2efa61742198af42851",
                "md5": "7648d778bbef7042d041422e8343410c",
                "sha256": "9a5dcb79b828132cc16beb3d790b90c00b31b34a4cfb320a9ac2bfbcb507b12e"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7648d778bbef7042d041422e8343410c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4346201,
            "upload_time": "2022-10-25T07:09:22",
            "upload_time_iso_8601": "2022-10-25T07:09:22.575472Z",
            "url": "https://files.pythonhosted.org/packages/44/55/f2e35bf0db9d2153593a70bf7ebb6657e9cd48ced2efa61742198af42851/fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d731f8754ce4cd6953b05e3517907f4e4e123a198043add7535f371f36ddbfe1",
                "md5": "d7d8bb4aa2a989575b6ebb3faddd7a54",
                "sha256": "31811c96ffe97d05272d77b7c0d4fe35b5d00dd63a189653eb9df3c60e11710c"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d7d8bb4aa2a989575b6ebb3faddd7a54",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4428050,
            "upload_time": "2022-10-25T07:10:05",
            "upload_time_iso_8601": "2022-10-25T07:10:05.820302Z",
            "url": "https://files.pythonhosted.org/packages/d7/31/f8754ce4cd6953b05e3517907f4e4e123a198043add7535f371f36ddbfe1/fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "975c6250f218ff3f0dfd9da341d9914e978d2a389ec965bda7673eb5d9762eba",
                "md5": "7cc52cdd73be63c1b5a2729d8f9853b3",
                "sha256": "44b69266aa8604040be502985d6a56951ae9cd89dc9ec7c4505e864b5c584e0e"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "7cc52cdd73be63c1b5a2729d8f9853b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 196259,
            "upload_time": "2020-09-03T11:39:16",
            "upload_time_iso_8601": "2020-09-03T11:39:16.134798Z",
            "url": "https://files.pythonhosted.org/packages/97/5c/6250f218ff3f0dfd9da341d9914e978d2a389ec965bda7673eb5d9762eba/fasttext_wheel-0.9.2-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef3b0db14e26d8ccbe34ec1c2b6ece6cd9e8e427fd24917c30424680a38972b8",
                "md5": "8cb843a7293fa89d863c9fd373362c0e",
                "sha256": "084fa472a49dc0c40e8153cae2b62b42433255c441934b0e9fd9526cab822991"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8cb843a7293fa89d863c9fd373362c0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 225746,
            "upload_time": "2020-09-03T11:36:19",
            "upload_time_iso_8601": "2020-09-03T11:36:19.019670Z",
            "url": "https://files.pythonhosted.org/packages/ef/3b/0db14e26d8ccbe34ec1c2b6ece6cd9e8e427fd24917c30424680a38972b8/fasttext_wheel-0.9.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0995b0c570466ed998b4645a071369da18919b0d452ebc1460f1f24a414d049e",
                "md5": "5454bc471af52cd331d5d80a48e74211",
                "sha256": "5d3636932dba77811225dee9af540af4b4eb80a2ddd214ae476dc4a945d932d7"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp39-cp39-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5454bc471af52cd331d5d80a48e74211",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 330524,
            "upload_time": "2020-10-12T02:09:14",
            "upload_time_iso_8601": "2020-10-12T02:09:14.618985Z",
            "url": "https://files.pythonhosted.org/packages/09/95/b0c570466ed998b4645a071369da18919b0d452ebc1460f1f24a414d049e/fasttext_wheel-0.9.2-cp39-cp39-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b84574a975a5cfdc9800a9490de1a5ecb2eac5c77cb323703aea4615478f946",
                "md5": "bfa802307d90a149bfb82494c5819ac9",
                "sha256": "6f4ef14f4f866fa0d5c17facf490c6821a109ea78788c61cc168807cfe038110"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bfa802307d90a149bfb82494c5819ac9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 291572,
            "upload_time": "2020-12-08T05:08:59",
            "upload_time_iso_8601": "2020-12-08T05:08:59.358622Z",
            "url": "https://files.pythonhosted.org/packages/1b/84/574a975a5cfdc9800a9490de1a5ecb2eac5c77cb323703aea4615478f946/fasttext_wheel-0.9.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d21da8e3bc4b3fabcb24c0102001fb86518db08abfeefcadf00cc064530fa67a",
                "md5": "707dde46e0301a30c29e157845e0ee34",
                "sha256": "c12e4eb12eb9181e4c31d7ba671a2a96f86b5e2e987e691554d40a3846908658"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "707dde46e0301a30c29e157845e0ee34",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 327928,
            "upload_time": "2021-07-17T02:40:50",
            "upload_time_iso_8601": "2021-07-17T02:40:50.966783Z",
            "url": "https://files.pythonhosted.org/packages/d2/1d/a8e3bc4b3fabcb24c0102001fb86518db08abfeefcadf00cc064530fa67a/fasttext_wheel-0.9.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "555af2d44f55150131c36d6205b5f549bd18f79e33346e3abf28338280fdaffe",
                "md5": "a009538659eca57d0bc9dd482714ef9b",
                "sha256": "3e66247d3035954c00ee987c5927f9ca7226597a5b3a1d43784b5935b35addbf"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp39-cp39-manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "a009538659eca57d0bc9dd482714ef9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4177395,
            "upload_time": "2020-10-12T02:08:47",
            "upload_time_iso_8601": "2020-10-12T02:08:47.638780Z",
            "url": "https://files.pythonhosted.org/packages/55/5a/f2d44f55150131c36d6205b5f549bd18f79e33346e3abf28338280fdaffe/fasttext_wheel-0.9.2-cp39-cp39-manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "059df569062e8611dbe24f02f9d20794abfc7755e93c85b77fc05ba5cb25cd39",
                "md5": "912462285fa09d02f2044059d33b3270",
                "sha256": "07387bd66a619e23e9b1520e5472a97ae2f63d6790511c242b6bbb8b008386ff"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp39-cp39-manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "912462285fa09d02f2044059d33b3270",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4292757,
            "upload_time": "2020-10-12T02:08:57",
            "upload_time_iso_8601": "2020-10-12T02:08:57.970288Z",
            "url": "https://files.pythonhosted.org/packages/05/9d/f569062e8611dbe24f02f9d20794abfc7755e93c85b77fc05ba5cb25cd39/fasttext_wheel-0.9.2-cp39-cp39-manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86f3d3f4aafbaa396d84df0cef5367172cefe3d10021943bacc5859bc7c7de40",
                "md5": "470dd572d7aebb74b1045e4e30445ed2",
                "sha256": "1d96be81f8365783c4420b02024b1794ac13fa232be04813a2dae9cdc389e82d"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "470dd572d7aebb74b1045e4e30445ed2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2844850,
            "upload_time": "2021-03-08T08:28:46",
            "upload_time_iso_8601": "2021-03-08T08:28:46.195720Z",
            "url": "https://files.pythonhosted.org/packages/86/f3/d3f4aafbaa396d84df0cef5367172cefe3d10021943bacc5859bc7c7de40/fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b069a0b8af7d54d1d44e99db6ac781b2e112b265f3fe99286597641eae50b8b1",
                "md5": "82c5a4e202796497e7a89428481a8e4e",
                "sha256": "1a6575feedff466d3af5a77f073294338da5dc361d538b6d1da74247336eba5b"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "82c5a4e202796497e7a89428481a8e4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2624561,
            "upload_time": "2021-03-08T08:28:28",
            "upload_time_iso_8601": "2021-03-08T08:28:28.743772Z",
            "url": "https://files.pythonhosted.org/packages/b0/69/a0b8af7d54d1d44e99db6ac781b2e112b265f3fe99286597641eae50b8b1/fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae4198a1ddde798abbc086275be251e8be82590bd970205d6a1e7f745a3c881f",
                "md5": "c74dd03324df650f8ae760ebef93b5f2",
                "sha256": "290e0030f237713afa30fc9b044aeac975f4d77c7281e1a533c08976d2ced05f"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c74dd03324df650f8ae760ebef93b5f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2770564,
            "upload_time": "2021-07-16T09:04:37",
            "upload_time_iso_8601": "2021-07-16T09:04:37.932433Z",
            "url": "https://files.pythonhosted.org/packages/ae/41/98a1ddde798abbc086275be251e8be82590bd970205d6a1e7f745a3c881f/fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c3512e331df177b7eccad33256091b4965728019a66c713c06042a3434f2923",
                "md5": "968f011c080ce4ebebea435006612b09",
                "sha256": "7547a347a3b173a67571b629e5fa15f5d5154a9bf5809c94958bf6ec0e142512"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "968f011c080ce4ebebea435006612b09",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2897618,
            "upload_time": "2021-07-16T09:04:27",
            "upload_time_iso_8601": "2021-07-16T09:04:27.066691Z",
            "url": "https://files.pythonhosted.org/packages/1c/35/12e331df177b7eccad33256091b4965728019a66c713c06042a3434f2923/fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bfbf3f2d78e83ce7381f3afe625a78aedeab2b8f23d0dc56292f1639eca1ae0",
                "md5": "b47e281dde7e9cac503b223df1e81038",
                "sha256": "f5895b20801b412a018ac4d56ef0d37d753e03f04fdbc23221f612f64dd83489"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b47e281dde7e9cac503b223df1e81038",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2812748,
            "upload_time": "2021-07-16T09:05:28",
            "upload_time_iso_8601": "2021-07-16T09:05:28.962807Z",
            "url": "https://files.pythonhosted.org/packages/7b/fb/f3f2d78e83ce7381f3afe625a78aedeab2b8f23d0dc56292f1639eca1ae0/fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ea0e25914ea65bd94ae5eaf78a9050354255454be7fff522e5acfd57d5f3119",
                "md5": "08ac33d8643c9cbd3c2378689ea3d5af",
                "sha256": "7114a7950ca2a380647cc4268379f01b9d2dea5c7f9ec1a8bf063700a665b802"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "08ac33d8643c9cbd3c2378689ea3d5af",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4283954,
            "upload_time": "2021-07-16T08:59:34",
            "upload_time_iso_8601": "2021-07-16T08:59:34.704386Z",
            "url": "https://files.pythonhosted.org/packages/5e/a0/e25914ea65bd94ae5eaf78a9050354255454be7fff522e5acfd57d5f3119/fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30d39d39d168b5c48a8fce1d43982e7ba960fe9544376e5098a8f79706c0ea80",
                "md5": "0b3d97e45816d93a81a4461fbffd90f7",
                "sha256": "20e0f4271fbbe606d6218bfbbe4a6496d8ae33ff5b1f94aacec003e3ca593fce"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0b3d97e45816d93a81a4461fbffd90f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4407639,
            "upload_time": "2021-07-16T08:59:11",
            "upload_time_iso_8601": "2021-07-16T08:59:11.258253Z",
            "url": "https://files.pythonhosted.org/packages/30/d3/9d39d168b5c48a8fce1d43982e7ba960fe9544376e5098a8f79706c0ea80/fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "305142ceb741f6e6a953667a8a3bd93386192df56341e2c5d15e88d57d9bbc67",
                "md5": "9f3aa2a4caae32f7ac964e2db659ea2f",
                "sha256": "35edd9a4c1a8b058b7aef686b5a6d941109db1f0d563ae19f48623b611283782"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9f3aa2a4caae32f7ac964e2db659ea2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4341654,
            "upload_time": "2022-10-25T07:09:24",
            "upload_time_iso_8601": "2022-10-25T07:09:24.981444Z",
            "url": "https://files.pythonhosted.org/packages/30/51/42ceb741f6e6a953667a8a3bd93386192df56341e2c5d15e88d57d9bbc67/fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cca314cad5f06da58972acad9e5bf3898712edf17b12c34186b181f268a1a65e",
                "md5": "f4a49d888ebdfe3b178f2ee27346b9e6",
                "sha256": "fd59ea516b352911bce63c348c5c6f0981c54a88649db3ce5e437c386a994fe4"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f4a49d888ebdfe3b178f2ee27346b9e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4421199,
            "upload_time": "2022-10-25T07:10:07",
            "upload_time_iso_8601": "2022-10-25T07:10:07.702932Z",
            "url": "https://files.pythonhosted.org/packages/cc/a3/14cad5f06da58972acad9e5bf3898712edf17b12c34186b181f268a1a65e/fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7066205b21e4aed77afe638efaaacadff71af7d6c6a58eae3e33a05623ac361",
                "md5": "71584089240f79c6f0e56f2e07c91105",
                "sha256": "5f3d27433b2280304f2aaba6b63bc79893a5113eed8e1c349d709d26ad072357"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "71584089240f79c6f0e56f2e07c91105",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 196280,
            "upload_time": "2020-10-12T02:09:50",
            "upload_time_iso_8601": "2020-10-12T02:09:50.599627Z",
            "url": "https://files.pythonhosted.org/packages/a7/06/6205b21e4aed77afe638efaaacadff71af7d6c6a58eae3e33a05623ac361/fasttext_wheel-0.9.2-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a12b37a1af2a5a09d9234877bc6e1403fae68adee43afc027fc6da7f576e15a",
                "md5": "c07b3448cb85912624daee6d5793d444",
                "sha256": "4cb4f08083429cb367d29722528e1e0371c512e77f1956c341151159d7a56197"
            },
            "downloads": -1,
            "filename": "fasttext_wheel-0.9.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c07b3448cb85912624daee6d5793d444",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 225638,
            "upload_time": "2020-10-12T02:12:14",
            "upload_time_iso_8601": "2020-10-12T02:12:14.928659Z",
            "url": "https://files.pythonhosted.org/packages/4a/12/b37a1af2a5a09d9234877bc6e1403fae68adee43afc027fc6da7f576e15a/fasttext_wheel-0.9.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c851022e84b23ec435248a39f727dae94240321ebe2fdc104800de80410e1550",
                "md5": "39a98e7d43795740fba82fe5bb8125f0",
                "sha256": "056e088318ef0e0cc690c4cb18637320eaa3cdb986b62d67bb50d6a7a82e4051"
            },
            "downloads": -1,
            "filename": "fasttext-wheel-0.9.2.tar.gz",
            "has_sig": false,
            "md5_digest": "39a98e7d43795740fba82fe5bb8125f0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 71384,
            "upload_time": "2023-05-05T12:02:55",
            "upload_time_iso_8601": "2023-05-05T12:02:55.501134Z",
            "url": "https://files.pythonhosted.org/packages/c8/51/022e84b23ec435248a39f727dae94240321ebe2fdc104800de80410e1550/fasttext-wheel-0.9.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-05 12:02:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "facebookresearch",
    "github_project": "fastText",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "circle": true,
    "lcname": "fasttext-wheel"
}
        
Elapsed time: 0.22553s