Skip to main content

fasttext Python bindings

Project description

fastText CircleCI

fastText 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

fastText 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 (version 2.7 or ≥ 3.4), NumPy & SciPy and pybind11.

Installation

To install the latest release, you can do :

$ pip install fasttext

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

$ 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, we can use fasttext.train_unsupervised function like this:

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.

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.

model.save_model("model_filename.bin")

and retrieve it later thanks to the function load_model :

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

For more information about word representation usage of fasttext, you can refer to our word representations tutorial.

Text classification model

In order to train a text classifier using the method described here, we can use fasttext.train_supervised function like this:

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:

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:

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 :

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:

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 :

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.

For more information about text classification usage of fasttext, you can refer to our text classification tutorial.

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.

# 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.

IMPORTANT: Preprocessing data / encoding conventions

In general it is important to properly preprocess your data. In particular our example scripts in the root folder do this.

fastText assumes UTF-8 encoded text. All text must be unicode for Python2 and str for Python3. The passed text will be encoded as UTF-8 by pybind11 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.

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. This means if you have text that is not separate by newlines, such as the fil9 dataset, 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 to identify subsequent bytes of a multi-byte sequence. Knowing this is especially important when choosing the minimum and maximum length of subwords. Further, the EOS token (as specified in the Dictionary header) 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 and in particular the tutorials on our website.

You can find further python examples in the doc folder.

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

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

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 :

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 :

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.

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

Join the fastText community

Project details


Download files

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

Source Distribution

fasttext-wheel-0.9.2.tar.gz (71.4 kB view details)

Uploaded Source

Built Distributions

fasttext_wheel-0.9.2-cp312-cp312-win_amd64.whl (234.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

fasttext_wheel-0.9.2-cp312-cp312-win32.whl (204.2 kB view details)

Uploaded CPython 3.12 Windows x86

fasttext_wheel-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

fasttext_wheel-0.9.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (4.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

fasttext_wheel-0.9.2-cp312-cp312-macosx_10_9_x86_64.whl (310.6 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

fasttext_wheel-0.9.2-cp311-cp311-win_amd64.whl (232.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

fasttext_wheel-0.9.2-cp311-cp311-win32.whl (202.5 kB view details)

Uploaded CPython 3.11 Windows x86

fasttext_wheel-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

fasttext_wheel-0.9.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (4.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

fasttext_wheel-0.9.2-cp311-cp311-macosx_11_0_arm64.whl (330.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

fasttext_wheel-0.9.2-cp311-cp311-macosx_10_9_x86_64.whl (307.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

fasttext_wheel-0.9.2-cp310-cp310-win_amd64.whl (241.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

fasttext_wheel-0.9.2-cp310-cp310-win32.whl (210.5 kB view details)

Uploaded CPython 3.10 Windows x86

fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64

fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

fasttext_wheel-0.9.2-cp310-cp310-macosx_12_0_arm64.whl (324.3 kB view details)

Uploaded CPython 3.10 macOS 12.0+ ARM64

fasttext_wheel-0.9.2-cp310-cp310-macosx_10_9_x86_64.whl (638.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

fasttext_wheel-0.9.2-cp39-cp39-win_amd64.whl (225.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

fasttext_wheel-0.9.2-cp39-cp39-win32.whl (196.3 kB view details)

Uploaded CPython 3.9 Windows x86

fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (4.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

fasttext_wheel-0.9.2-cp39-cp39-manylinux2010_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

fasttext_wheel-0.9.2-cp39-cp39-manylinux2010_i686.whl (4.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

fasttext_wheel-0.9.2-cp39-cp39-macosx_11_0_arm64.whl (327.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

fasttext_wheel-0.9.2-cp39-cp39-macosx_10_15_x86_64.whl (330.5 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

fasttext_wheel-0.9.2-cp39-cp39-macosx_10_9_x86_64.whl (291.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

fasttext_wheel-0.9.2-cp38-cp38-win_amd64.whl (225.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

fasttext_wheel-0.9.2-cp38-cp38-win32.whl (196.3 kB view details)

Uploaded CPython 3.8 Windows x86

fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (4.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

fasttext_wheel-0.9.2-cp38-cp38-manylinux2010_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

fasttext_wheel-0.9.2-cp38-cp38-manylinux2010_i686.whl (4.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

fasttext_wheel-0.9.2-cp38-cp38-macosx_11_0_arm64.whl (327.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

fasttext_wheel-0.9.2-cp38-cp38-macosx_10_15_x86_64.whl (330.7 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

fasttext_wheel-0.9.2-cp38-cp38-macosx_10_9_x86_64.whl (334.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

fasttext_wheel-0.9.2-cp37-cp37m-win_amd64.whl (225.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

fasttext_wheel-0.9.2-cp37-cp37m-win32.whl (197.9 kB view details)

Uploaded CPython 3.7m Windows x86

fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (4.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (4.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

fasttext_wheel-0.9.2-cp37-cp37m-manylinux2010_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

fasttext_wheel-0.9.2-cp37-cp37m-manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

fasttext_wheel-0.9.2-cp37-cp37m-macosx_10_15_x86_64.whl (325.0 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

fasttext_wheel-0.9.2-cp37-cp37m-macosx_10_9_x86_64.whl (329.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

fasttext_wheel-0.9.2-cp36-cp36m-win_amd64.whl (225.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

fasttext_wheel-0.9.2-cp36-cp36m-win32.whl (197.9 kB view details)

Uploaded CPython 3.6m Windows x86

fasttext_wheel-0.9.2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

fasttext_wheel-0.9.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl (4.4 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

fasttext_wheel-0.9.2-cp36-cp36m-manylinux2010_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

fasttext_wheel-0.9.2-cp36-cp36m-manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

fasttext_wheel-0.9.2-cp36-cp36m-macosx_10_15_x86_64.whl (325.0 kB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

fasttext_wheel-0.9.2-cp36-cp36m-macosx_10_9_x86_64.whl (329.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

fasttext_wheel-0.9.2-cp35-cp35m-win_amd64.whl (235.1 kB view details)

Uploaded CPython 3.5m Windows x86-64

fasttext_wheel-0.9.2-cp35-cp35m-win32.whl (195.4 kB view details)

Uploaded CPython 3.5m Windows x86

fasttext_wheel-0.9.2-cp35-cp35m-manylinux2010_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

fasttext_wheel-0.9.2-cp35-cp35m-manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

fasttext_wheel-0.9.2-cp35-cp35m-macosx_10_15_x86_64.whl (325.0 kB view details)

Uploaded CPython 3.5m macOS 10.15+ x86-64

fasttext_wheel-0.9.2-cp35-cp35m-macosx_10_9_x86_64.whl (329.3 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

fasttext_wheel-0.9.2-cp27-cp27mu-manylinux2010_x86_64.whl (4.3 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

fasttext_wheel-0.9.2-cp27-cp27mu-manylinux2010_i686.whl (4.2 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

fasttext_wheel-0.9.2-cp27-cp27m-manylinux2010_x86_64.whl (4.3 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ x86-64

fasttext_wheel-0.9.2-cp27-cp27m-manylinux2010_i686.whl (4.2 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

fasttext_wheel-0.9.2-cp27-cp27m-macosx_11_1_arm64.whl (291.8 kB view details)

Uploaded CPython 2.7m macOS 11.1+ ARM64

fasttext_wheel-0.9.2-cp27-cp27m-macosx_10_15_x86_64.whl (326.2 kB view details)

Uploaded CPython 2.7m macOS 10.15+ x86-64

fasttext_wheel-0.9.2-cp27-cp27m-macosx_10_9_x86_64.whl (330.3 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

Details for the file fasttext-wheel-0.9.2.tar.gz.

File metadata

  • Download URL: fasttext-wheel-0.9.2.tar.gz
  • Upload date:
  • Size: 71.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for fasttext-wheel-0.9.2.tar.gz
Algorithm Hash digest
SHA256 056e088318ef0e0cc690c4cb18637320eaa3cdb986b62d67bb50d6a7a82e4051
MD5 39a98e7d43795740fba82fe5bb8125f0
BLAKE2b-256 c851022e84b23ec435248a39f727dae94240321ebe2fdc104800de80410e1550

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8a0cc9e92377d27835a71862c68782e70c9bbd2a666a1a51b2c8261fc9892470
MD5 d4562c84e61ff8142bc0011a1925bb93
BLAKE2b-256 d3e15c1880859a122a57793d13685af6451bcb67be90bf74549bcf042c2ade6b

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 79bfa9b168c115e3b4eab1f7694a80ca6a9ea96ee5e2e4d737e07f5b61812ae8
MD5 35023ca858281ef422d73c039f0e8657
BLAKE2b-256 94981c655e814d470ee5ae978b21739ad8a1a598a14b9929b1e966a8fdfe5ce6

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5758d911a4e4539c75e93d58d9feee2c6de96a5addc4f4d7d76ed4e8953a4f35
MD5 537deff30b56c5e870ca583ce003d962
BLAKE2b-256 ff40ed638abf8ac6fd0d1e7c47d07d37621e86f46522bbad0bec6e4f6d85a39d

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e73457b66edd1fb893092c1717102e7e7d184a9413735801a4c39d0299846940
MD5 68715b55fec3bc4d15e84a6d0f75a5c0
BLAKE2b-256 fe0a4f841f20618e9dcd3420b161d26df77042837a7346aa09ed8eda002ab676

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ca27b054837168dd34b202ef59c903fd713d2307c9d27814ff67bc2d6beeadd2
MD5 3d0d126564165108776bad876586edd6
BLAKE2b-256 8909f2832c3f4d8d38dcc072c9d15632125ccd61e62243e4d0ef99eaf545bf26

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a30b779f3f77eca0d31bb11c074fadbc5ab9e6e4c7cdb3135780a61d63eb3fb
MD5 0c3db2b00788e532367e422c6ec01b43
BLAKE2b-256 09c3a9b5519a2d4eee79994a19ae8d4a093fff064802f62fde2402470c160502

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 6ab035ecdf8debd35bf513613abaca714876b799fede8ab32c3841417178c543
MD5 953e3edbfe1556c1c308fed6769aa180
BLAKE2b-256 2154637ccc9b6f064e31151e16d7bc597696deff85998a0a6b0cec970aeb22f4

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a0bbeaf364fdae4269648391ce44f3c4d5774ec7bea614b65b7c51254f1697fd
MD5 9dfd0ff1ce201492efe57eb14a120585
BLAKE2b-256 f36ffb366b9cb5531e5df51cf67e2693d7bf9b1f4ace859e0e70d62b73c818d3

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d673dc21be911134142642e5cf3a92537f565156ede0871f3a769108f446163
MD5 3b9f99e6465cf617c32a2c1db9fa55bb
BLAKE2b-256 cf919dc1baf7d53fcf980406656d568a609cdec5afa94765fd4e32850f74e8d6

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc650bd6984ea15207ab09e56f20c2fd09fe90822f4663896185cedb79825d6d
MD5 14b6403ee75e96eaef0554e5ac93c569
BLAKE2b-256 1e80382fc6db2a7d80f343ff26f7506f1214dcc1ac1c9fcca1d1c61faee80be7

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1afb40118fb1b39e159bbdded14834a6a95415c0be957553647b9d70c7cc45ff
MD5 ccae41c421e43a2aa211e67fe841e778
BLAKE2b-256 96582d1c2557cefa8d30c7e7ed182cac53cc811b4dcf265ffa64fb8e8a6287c5

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 39d3201a8e6dabf59c0d8f9a7064d12bb996bca38f5f15e5a678e12fcbd39a35
MD5 65ee6a0bea8e3fee4e7388d24faf1aac
BLAKE2b-256 d9e3401187b0dbb79c9e878f74aa70921478817ef3a154d2edd2b41c5ab4d476

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ec13d485e0202e729b3bcb7283dda9c499581f691fa8e835e237ee5cf69a2b5
MD5 e02e0c5d5c2dfcb8cdf762af126ec71b
BLAKE2b-256 f61394644fa56b36d5638e2c689f4506e2685a13c78765d03ae22294711460d4

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9e09cff3f2002cdef5f046a0969a0bf886d5386c2eb1c15874d90f9a95edb8d0
MD5 26a9089e50296823c23635985e501846
BLAKE2b-256 644d39e0520fbbde6861467948dfd188aefca614c671e5801ca86b95059f9b1d

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c7b94290bc5bf1a8f2cf6ca2e84364bca3588525625907323d3a77bc96365915
MD5 c1b0f398cd3ff611f3fad58dbee3ac94
BLAKE2b-256 5dbfa9053e329d43a8daac6afe21f4e856b9f2dabfd69e2a8359c23e3c2e345b

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad1a3e10354cb71cb2e182ce4cb7fa61fd2396fe4e28d52002b8f6a749138e4d
MD5 811991a9821fdeb3b32715726a7f3d45
BLAKE2b-256 31c474783db26f0067ce9508678b18e033b0d0575e389a7a93431aae0338afcd

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 b1e6c4aee8dfc5629aba54c0c044eb0c699b3f82ee5f0f1a8edf69c84ffaa1bd
MD5 314a5722dcdb0c4469b927a22c6eebba
BLAKE2b-256 2d862b43814c0f0722e3800ffb0ab873f7d17d9ec107d0b7b477583e6e8ac769

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2dcbe5cb3ebad68667772ff2457d1d5ced69e9caa19fe35e53fe1b0c68db69f6
MD5 e8ec4b41a53d8eeed125a75d6382bb42
BLAKE2b-256 0575105f62d1d24e0bae7c53893c1bbe3cf6eed71c6aa33961105058647e2409

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef5be5e24ad4aab61eb42c30e1a7909464b20958907c23dfe4037ef247755254
MD5 b3c59c01b3a21f282c5217aa78f01017
BLAKE2b-256 e3248a85a2d6c80b303762f2bd296f7a3bbc1027ce6731a3d6f0bc28665c8065

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aefd4dbecf4c243628a513c3f9f9008a4c94d63f4194cfde6d11975710f04b7c
MD5 ab0e9b1089a92f8e9dbbbb578ed90851
BLAKE2b-256 028a625195477d08abc9d1674ee99c818f565c4a49849db75078c1e319a189db

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a32cc0bee31985c5a15ae2ec4f7d777c84e84294d70969d7382961305b0851cf
MD5 5225a2c62bd3bd169986c3281e1c8b41
BLAKE2b-256 e887ff2a0cdcd422a951a3c000a809c2f77462085dde0192f10405377f5454e3

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 acb1e336c63fcf46ef8965904c03589d230ebc6a3c4a7f05b0a32a7de85de11a
MD5 b5cb3645c35d8e5572f1af160fe46437
BLAKE2b-256 1f089a495ba568887cb5f9022b600806beb39754ff0870d779b4976e039fdb24

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5c4938600006dd13bb215f105adb971e8f129491e03cc5de5ac53f292cdbc9a6
MD5 222433bc948ea96d9bc99c40085348e2
BLAKE2b-256 c6fd0f3d7275f4a4750f9ed847280df7182d7e1fe7e8dd6a329ad1fdc6f047ed

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0aa4755a3ab0717e32627ede55e9c12cd7bbba464c73af7f08a3142bd6c62df7
MD5 f4a06fe8de60d1594619daeff7fb111d
BLAKE2b-256 3a785af1ed52339a6c09277921f56e60cc1c167154147a3038ab77aaaf45ef19

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d5d47dacf4930254de1806b19cc603a0daac034477a27329dc7b3a4f4240d4a
MD5 2b0ed6227d1b99ecaa5db1f1c1c07a5c
BLAKE2b-256 14a3d7f8b00eb6aeca39d4beb9a683b78eaa9133e162c5cde09a9b16d4eb4611

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 09a25790ad17ee21f31efe39d51e4106c718a1ed9c7ac0bdc1ad7512f2d64d22
MD5 04bccdd3af7d1b0e25878f292d4bf133
BLAKE2b-256 ccd9f216866c2d31beac59ad97caa502e3208cf9b21581feba864d7c82ff5995

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2cce299a49f50b5867fff464d1051beebe1d612b23213bb29b09f96935ca4ca0
MD5 885f55e07e492435b0ac28fd744f5f2b
BLAKE2b-256 21f2defd13727934b9ffa9c01c1facf1dc1353d9d19ad81e8c85f83b08d846b8

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8280415f59178879963791da9b51eee23a0faf1230fbc770fe917801b5d8f3f6
MD5 9ffa8a8b54a992677ee792f72e8052a4
BLAKE2b-256 ae00d0ef9c22f09abc766aa50144e991e747dbb494c73636201ac2327d8ada55

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dbad8ab4820b08273450a395f76a536044a749227ecac060ba48a1d70426768b
MD5 ead25df0eae7bcf9bce03fa8e809b278
BLAKE2b-256 0a10b1f0550ced5eb4c4a31edf8cd363e704d12a75a058a156340c794895ac1b

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 3b7f0d76e2c2b20a582725dc9c7e3419bb55745ac2842271c2e785047b143ac7
MD5 33abf5cc36bb8d1570599e03eba2cc30
BLAKE2b-256 cbcbf5c76ed5c886dd5323e91c0d8d0264a3fae7a398a5fa5fb63eaf226d7893

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f1dba6805073d46495dc700a8e29a5524c87f141a29820664c47207260723e78
MD5 a0496a6d072d18c2bf4fe3d4e8f4b7ee
BLAKE2b-256 943d9de31e989742bca76d85b297fe01d873cb8211ee4faaa8472a43c937783f

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e8a73ee48502dfc6243faf6799dec3067795a6dc02c1d47fedc620e80e9ee94
MD5 0c55c6e3fdcda7beaa731764a82643b2
BLAKE2b-256 2aff83af4b09e6500c891007ed1ee77e93c7bf6b909c69b0cf67489de3343c81

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp310-cp310-macosx_12_0_arm64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp310-cp310-macosx_12_0_arm64.whl
  • Upload date:
  • Size: 324.3 kB
  • Tags: CPython 3.10, macOS 12.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.13

File hashes

Hashes for fasttext_wheel-0.9.2-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 c4e9e59778eb3f3a3c99bf3c1257791564fbafab9b80e89345ee0940c20e1648
MD5 1da301ba72a331d1c9459fd9b553341e
BLAKE2b-256 c014c3a40b7255b8f0d62090a153dad406855689daa44982b7ae70b84ee5cfef

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af606b17d47695a17ee87dc5a5c76e29cc957f08bd090cb2441e3815c030a99d
MD5 75830a2e77dd5316234b748d1aa075fd
BLAKE2b-256 1eeddd07bba161fd4bd08a67ab108e37b6ed919b0967913a82d33c45cc3ed047

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 225.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.9.0

File hashes

Hashes for fasttext_wheel-0.9.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4cb4f08083429cb367d29722528e1e0371c512e77f1956c341151159d7a56197
MD5 c07b3448cb85912624daee6d5793d444
BLAKE2b-256 4a12b37a1af2a5a09d9234877bc6e1403fae68adee43afc027fc6da7f576e15a

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 196.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.9.0

File hashes

Hashes for fasttext_wheel-0.9.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5f3d27433b2280304f2aaba6b63bc79893a5113eed8e1c349d709d26ad072357
MD5 71584089240f79c6f0e56f2e07c91105
BLAKE2b-256 a7066205b21e4aed77afe638efaaacadff71af7d6c6a58eae3e33a05623ac361

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd59ea516b352911bce63c348c5c6f0981c54a88649db3ce5e437c386a994fe4
MD5 f4a49d888ebdfe3b178f2ee27346b9e6
BLAKE2b-256 cca314cad5f06da58972acad9e5bf3898712edf17b12c34186b181f268a1a65e

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 35edd9a4c1a8b058b7aef686b5a6d941109db1f0d563ae19f48623b611283782
MD5 9f3aa2a4caae32f7ac964e2db659ea2f
BLAKE2b-256 305142ceb741f6e6a953667a8a3bd93386192df56341e2c5d15e88d57d9bbc67

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 20e0f4271fbbe606d6218bfbbe4a6496d8ae33ff5b1f94aacec003e3ca593fce
MD5 0b3d97e45816d93a81a4461fbffd90f7
BLAKE2b-256 30d39d39d168b5c48a8fce1d43982e7ba960fe9544376e5098a8f79706c0ea80

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7114a7950ca2a380647cc4268379f01b9d2dea5c7f9ec1a8bf063700a665b802
MD5 08ac33d8643c9cbd3c2378689ea3d5af
BLAKE2b-256 5ea0e25914ea65bd94ae5eaf78a9050354255454be7fff522e5acfd57d5f3119

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_s390x.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f5895b20801b412a018ac4d56ef0d37d753e03f04fdbc23221f612f64dd83489
MD5 b47e281dde7e9cac503b223df1e81038
BLAKE2b-256 7bfbf3f2d78e83ce7381f3afe625a78aedeab2b8f23d0dc56292f1639eca1ae0

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 290e0030f237713afa30fc9b044aeac975f4d77c7281e1a533c08976d2ced05f
MD5 c74dd03324df650f8ae760ebef93b5f2
BLAKE2b-256 ae4198a1ddde798abbc086275be251e8be82590bd970205d6a1e7f745a3c881f

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_ppc64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_ppc64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 7547a347a3b173a67571b629e5fa15f5d5154a9bf5809c94958bf6ec0e142512
MD5 968f011c080ce4ebebea435006612b09
BLAKE2b-256 1c3512e331df177b7eccad33256091b4965728019a66c713c06042a3434f2923

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_armv7l.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1a6575feedff466d3af5a77f073294338da5dc361d538b6d1da74247336eba5b
MD5 82c5a4e202796497e7a89428481a8e4e
BLAKE2b-256 b069a0b8af7d54d1d44e99db6ac781b2e112b265f3fe99286597641eae50b8b1

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d96be81f8365783c4420b02024b1794ac13fa232be04813a2dae9cdc389e82d
MD5 470dd572d7aebb74b1045e4e30445ed2
BLAKE2b-256 86f3d3f4aafbaa396d84df0cef5367172cefe3d10021943bacc5859bc7c7de40

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for fasttext_wheel-0.9.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 07387bd66a619e23e9b1520e5472a97ae2f63d6790511c242b6bbb8b008386ff
MD5 912462285fa09d02f2044059d33b3270
BLAKE2b-256 059df569062e8611dbe24f02f9d20794abfc7755e93c85b77fc05ba5cb25cd39

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for fasttext_wheel-0.9.2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3e66247d3035954c00ee987c5927f9ca7226597a5b3a1d43784b5935b35addbf
MD5 a009538659eca57d0bc9dd482714ef9b
BLAKE2b-256 555af2d44f55150131c36d6205b5f549bd18f79e33346e3abf28338280fdaffe

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 327.9 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.6

File hashes

Hashes for fasttext_wheel-0.9.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c12e4eb12eb9181e4c31d7ba671a2a96f86b5e2e987e691554d40a3846908658
MD5 707dde46e0301a30c29e157845e0ee34
BLAKE2b-256 d21da8e3bc4b3fabcb24c0102001fb86518db08abfeefcadf00cc064530fa67a

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 330.5 kB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.9.0

File hashes

Hashes for fasttext_wheel-0.9.2-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5d3636932dba77811225dee9af540af4b4eb80a2ddd214ae476dc4a945d932d7
MD5 5454bc471af52cd331d5d80a48e74211
BLAKE2b-256 0995b0c570466ed998b4645a071369da18919b0d452ebc1460f1f24a414d049e

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 291.6 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0.post20201207 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.0

File hashes

Hashes for fasttext_wheel-0.9.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f4ef14f4f866fa0d5c17facf490c6821a109ea78788c61cc168807cfe038110
MD5 bfa802307d90a149bfb82494c5819ac9
BLAKE2b-256 1b84574a975a5cfdc9800a9490de1a5ecb2eac5c77cb323703aea4615478f946

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 225.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for fasttext_wheel-0.9.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 084fa472a49dc0c40e8153cae2b62b42433255c441934b0e9fd9526cab822991
MD5 8cb843a7293fa89d863c9fd373362c0e
BLAKE2b-256 ef3b0db14e26d8ccbe34ec1c2b6ece6cd9e8e427fd24917c30424680a38972b8

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 196.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for fasttext_wheel-0.9.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 44b69266aa8604040be502985d6a56951ae9cd89dc9ec7c4505e864b5c584e0e
MD5 7cc52cdd73be63c1b5a2729d8f9853b3
BLAKE2b-256 975c6250f218ff3f0dfd9da341d9914e978d2a389ec965bda7673eb5d9762eba

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31811c96ffe97d05272d77b7c0d4fe35b5d00dd63a189653eb9df3c60e11710c
MD5 d7d8bb4aa2a989575b6ebb3faddd7a54
BLAKE2b-256 d731f8754ce4cd6953b05e3517907f4e4e123a198043add7535f371f36ddbfe1

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a5dcb79b828132cc16beb3d790b90c00b31b34a4cfb320a9ac2bfbcb507b12e
MD5 7648d778bbef7042d041422e8343410c
BLAKE2b-256 4455f2e35bf0db9d2153593a70bf7ebb6657e9cd48ced2efa61742198af42851

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 41b7f1237df82d29b6a64ca93894d8558c8b1791fd4f782b28a846c6ebccd182
MD5 982cec42fdbb3f3cd6df2e172b9af07c
BLAKE2b-256 552e96dcf52631af45c442a89c7a941b1e3479aa4bcb13206c115ebd7573b3ac

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1d64763e6f5d5f84ec4f226d78a56e9182fcd15e48219f10eecd09dc2cccefc9
MD5 f920f84807fcf6d1cfd4693077e550a4
BLAKE2b-256 22ceb940a9378ea2e1f1fc10b6616a3867da02e938c869fce7e33604bc0171bf

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_s390x.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b10eb3702de7b56b4de83b83d39248e75198434fa7f6139805aa7b0a1b31245b
MD5 d33bb0faa6ce532e11864a309a0501ed
BLAKE2b-256 2923263ec6f8ff5fe2f050f7dca075fee80df6f0eac557c1e37210df1a00befd

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3328e851e5896b373395ea108437045fa830c68ef86b0ab4db49bb7d64da77b7
MD5 d9ba93ea1b1871cdfc6857d285711c8a
BLAKE2b-256 d46af4a2f87f17da37953c9eb12c463b924858d602c1ca80ecc34927f2a3d2dd

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_ppc64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_ppc64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 d29ac75e948ed3ef44df54b6fe203c8b9b3c08fb486a8634b6144425e72531ed
MD5 4b6c4e2514e452e85ad7e7f3d720124e
BLAKE2b-256 6ad44ea121e11741f53dd005e2df19024cf91d2a8db5c7328bd0a5416ec53ab2

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_armv7l.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 11efd5f0aebcc6737636b6890ac0b85f3b87aa359645969b4a1962459e588c69
MD5 b63dd5f449a092a5635ba15942576c7e
BLAKE2b-256 e3aee0054dfa7090ff0e017364ca499db8b6ba1262fc27ff8f882e3f3eb51e14

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c0fdfb0fbfe62c95e6f6ffc0119afb3f5d32914b1be8f7052a828d95b1ca23c
MD5 c639a3525e18d5a13f5b8272fd413827
BLAKE2b-256 93cfc7c14ad184aaa901f003baae5ea900734107aafd6f985e1a32b1a2c504b5

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for fasttext_wheel-0.9.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a5f4985db787b187933c12dfd89c972854b80ae97f07d004d73cdc9d251e8eb8
MD5 9aadbc3ee1f1f01d2faa26b5d08adc40
BLAKE2b-256 b94e062cf3d8ec65e4ee90fd71aae6d686fb43a330922be58494990baa1a11a4

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for fasttext_wheel-0.9.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e64226520d7433ee0997db4b29abeb21a465b48d68389fee50137eb08f7dd756
MD5 5a31dfcf3c48175048fd6ec6be3e7525
BLAKE2b-256 197b5724a23b2775f52ffd5d499b18f27a509637b6ff0c7ceb0f827a0ac15da0

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 327.7 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.6

File hashes

Hashes for fasttext_wheel-0.9.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d08cf0ea4081b755e029160a96f9be5cfc5468ad54f476fe0ef7a6dec5dc52c
MD5 090bfb26bfb702f103d1200f37595dfa
BLAKE2b-256 43ffa7f5a22914db1a3191e765f012ab0f5aedb15da63ac55daecd6b91433a20

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 330.7 kB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for fasttext_wheel-0.9.2-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0ca1cf85b5159db69223cfa8a1cc5a00b521bb4bb5336fdf344ba743ca8f1dae
MD5 65901ad4335405a64c6e48a64d309e6b
BLAKE2b-256 0eb25566b24692211fade36581639a367e77e1fde06e8a4b57b14af5380c8850

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 334.8 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0.post20201207 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.5

File hashes

Hashes for fasttext_wheel-0.9.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ab7e2431999d352f0d417c7edc7bb76ee4377fd35d59dd4e77cefd33ee7341c8
MD5 24469003c31e370222e564d29b64c289
BLAKE2b-256 f4ee9441cb5fd8472e67ec2481bacb4ab1de6597875272e4e4e35b21040aa44a

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 225.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.9

File hashes

Hashes for fasttext_wheel-0.9.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 17b02b00ca26f84c5a645141e1a88b80a835d74077d5a55738884f2f3e43da2c
MD5 8c7c2b1b2490247f081648a3bf1034ab
BLAKE2b-256 7a5f0e8be0e4c9dd4cb18f0f5b5ca19aff5086e01622301aa926b59ca08e90d5

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 197.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.9

File hashes

Hashes for fasttext_wheel-0.9.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 91e744f4100cea6ec7da41a85e9b7b905d679959357cec654febbc42f472c330
MD5 9213cbbd1215e3e451fcdcb53fa7fd4a
BLAKE2b-256 fa6c7d4ebd900a57ba8772fb6c3a4777e38ed94f795e9ee300408a7ccb73fdc3

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e76af4ce3974f28e80da9edfe650703454acaa4597f143ec6ba31892ddefb17
MD5 5980ecc50701339bf0ae9c8b31fe3805
BLAKE2b-256 92345fdc566ef765364f9f6b3f1b8cb1fb8250097d00ae97aad062f083b4d752

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d22d15523bcf1715af25f9ee33064658c9a51d4447ea32d5b57f003670fd02bc
MD5 f45234a5d941e2a35e15e59c6203d454
BLAKE2b-256 7190487458ed286f4f12a9f0b172ce694d5948591f02a45dac1afc50bca83574

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1a0bf5f547430b838abcb0957fc7978feb4a02762b445a6c071394fab7207efd
MD5 aeadb05e6cb1e9bad33d77eadb376e0d
BLAKE2b-256 404f817f2eb1d683f3f7482b9806fc97aac29ed6f460ae7569f598946dfa1a91

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d5e389c0912606e45be7bcc860d60f8d9e0bc094e84b8c7d2445670ff7275c32
MD5 248d18e6f0ea9c43b53b3a0999f12f6e
BLAKE2b-256 3b2cc5d43e0627168f26c82dd8e8b0fc7330531f874d5faf2f6ab0b66b5b6ff6

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_s390x.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4bbe7046d079ba5724328eb8556212f60315edd26a2625c5bddad307bcee1267
MD5 4321c8b89295ceec2784a0a248991de9
BLAKE2b-256 1c6ea98de4d31894356a997db2209ca7c65714742d0b0be31b0d10263f22397d

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0cc583882ad40425d4bcaa09593adb0ce8140b27bbc0d3ea0129421cf785928b
MD5 beda9186ce5d5b3c20b293b004baec0e
BLAKE2b-256 6326cfef9f6c5fe35112f513d3abbc89ff17f23ef853f7fe75c5e042ed6c2b66

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_ppc64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_ppc64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 3e9e9812f9acc9054ec6cb9d60df918b94348ca8d0f1c49408de253f622038c4
MD5 169cbcc3f0809c75b54ff80cb91644fd
BLAKE2b-256 da7068ccaea076eb493cf6c6ecaec97e7222a2885ebfbbdbc7a7057b83f9ee59

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_armv7l.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94afa157f43dc619c070838c6073d4b22e04007229113761e6c67b960c0c7a30
MD5 d7740d6da344301a8f93f6192626155c
BLAKE2b-256 3eec51ae2125f492082aaf6bf9635d3cbc9d904293143ee46ec1a989433dd87c

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 708ccdb59873ab14972944a5ef24bb46ffff9ee851b47b905050716b4d8a1a1e
MD5 e2ee7a77ea200cbd4a5206b391cb5430
BLAKE2b-256 a5720f77b65903aa05d50d8914ec06ee59257cdd2e4f1addc0cb91ad31e5429f

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for fasttext_wheel-0.9.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2ed30ae57f7cab129b2b474929c83e1065be3f11998730a0a178d3a7335fdc6a
MD5 610ddf49fb01fea14daa724d778f1821
BLAKE2b-256 ac4353c94feb8b9ff2f8d726bd01cc486513e13a5bc2f7076101c781df42854d

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for fasttext_wheel-0.9.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ae70c70135c909c2951cae5496bf4ad19d268c03c0c2bd3bf71ce586126d7a5d
MD5 1cf7eed2c7071646f0a6d9f40523f603
BLAKE2b-256 8a51484490db4ceaf4a647097562b9e7c14fb7bf873083a601812d8a6ccc3ef5

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 325.0 kB
  • Tags: CPython 3.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.9

File hashes

Hashes for fasttext_wheel-0.9.2-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 aabcb1efa04a411ee22d364b6dc7e5ffb6b5c72c7522b6d065f03685d54e0c64
MD5 7a872f08a8c32fb85de011199ea26881
BLAKE2b-256 8d9d36c69da842220a4bfa823301a8fcbd8724e91c1ff10719b7c3e5090ddd3e

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 329.3 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0.post20201207 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for fasttext_wheel-0.9.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 964ed076a2190841e3bb7f774c36088810b0e63b30e18c26867f6e7a7b1e7068
MD5 87d89d5deca1759ead25af1784ecd295
BLAKE2b-256 a3c3a63c388ac4df696f9e6193075acf2eec4070d887107bf2355799a4c9e05a

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 225.3 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.8

File hashes

Hashes for fasttext_wheel-0.9.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4990269d29fb1b31ca5595f48be2116c85c8c22e591a16743fea993e97d02418
MD5 bf5f93a6cd628d48268a69b3dd0a8825
BLAKE2b-256 f3c7bda42df49729354da6d325ca3a77201bfae16d81898ee59aa58ab4fcf22f

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 197.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.8

File hashes

Hashes for fasttext_wheel-0.9.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a6231f28c5048c59e1c3231b38887111f6a0b2f51a040323841bd8920dd98683
MD5 035c0c35977cf61dd19a7179e5611dec
BLAKE2b-256 25962490bd32e6d0339d8fe4ca1627571add62b53df76be32949ffc6917bd1e9

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fefb1e8aa652aab231b5a37e3e5a59a13a95d36143616f9ef8902403a3e5556a
MD5 09efebf6fe430ec9d32a4cfdff807ca8
BLAKE2b-256 bd4c4bd39e8a355615403cd41477725ec1d39d8ab1507c6c4674ac4548284d54

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 704c285c364e44384c88968cdcb8688907d23184aff373a22924135ed4f29e3a
MD5 56b6b60d862043082842e113c8a0d793
BLAKE2b-256 de10ff3f9d3e2215ca1722021aecd692efaf9083e9507da971559b387a603ebd

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_s390x.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7f6727e40836c55bf2b9d7761ee25a6274abc17ae4f1ca0ea6eca3973661077b
MD5 81da3e5344778a70ce96773695a0824c
BLAKE2b-256 6a5e7a0d41360edbf40424e7ac2ebf892d4a7472159f7111c960f2080d17e756

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 14fb62960fcfe8408fdc8e2854c2c583a04e422f424ccea34c07070f15e1b0a2
MD5 86ee58c4a9cd867b7f5c4fefd2359f14
BLAKE2b-256 b52d6f7d437c746f9881d75fa06a881620eb19916dc6697583bbf800219f8da1

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_ppc64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_ppc64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6

File hashes

Hashes for fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 365d998c0d8b910282b9b03c9706d0e87cd569b3a8b37aefd901b237ec10a4ed
MD5 d7af5c591d1731605d764ed0f2eb4c31
BLAKE2b-256 8c49e72162487a4080a13187ccf486af0ee64631a0821fcd21dcf8aeea626357

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_armv7l.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d1d070b71c765f9e96be36ac6867a4f6d73072ba432b685f424b8d47a2e6c957
MD5 18a0b576f5f0c3d1ce693e1003321906
BLAKE2b-256 4ff881887a2e2641463e465e86d62f2c07860b894a939cb73db9d7a61333c737

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb71f70083ae127b1d0cbfb54857f873091da0ad3a5f63c530654c5104196d9b
MD5 1e0808e8d2070cb357e4b50a5d15881e
BLAKE2b-256 6f314848369078f17548fc606ed758f7b6f9be1c751d50e2d39805817c70fb69

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for fasttext_wheel-0.9.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b59f84675ce247735e00acab7afbe4c74753f4fe2c9b0bf21fc60417d339a781
MD5 687c712f911a64d5c300749158dfdadf
BLAKE2b-256 ba79bbdb7e27886ee38f0b2a6ace778a778ab7d6baf0c760c248761bffceae6e

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for fasttext_wheel-0.9.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 18fc4ef2f9fd5060cc7174b121bcdc79edf4d66918ecfda60c030ed94309eb17
MD5 7e4ab3db096772d6bc9af5627a6fbfb3
BLAKE2b-256 582b2e986947ac205fcfebc4453c7d4e69dc364442e8fd1eb1e421f3251604d1

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.16

File hashes

Hashes for fasttext_wheel-0.9.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e8fe842818380ec56ef303461577ac5df7d4308115555879580e11e8ec055dc8
MD5 29379773cad7401c3d1c70c59c79d030
BLAKE2b-256 39ff12d989a94c53324fca84566ce9c13927180bd6ef26f0470f83cdc862b1cb

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp36-cp36m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 325.0 kB
  • Tags: CPython 3.6m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.12

File hashes

Hashes for fasttext_wheel-0.9.2-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ed960c08196ecd30a349c019a6e79214e0f27da7f21141872b2c02c7286e435a
MD5 ce8366f40d4434848cf8e1b563afd9b3
BLAKE2b-256 bff783167c103084f4566c30538b87692a9c499da28410685585e1f3432908c6

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 329.3 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0.post20201207 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.6.12

File hashes

Hashes for fasttext_wheel-0.9.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 26b0ca89c6d5e5fc5c864eb18e327674a45b2c98f38845d58d3e5beae6982ead
MD5 447efb357ef124148840116fc9926bd9
BLAKE2b-256 fe26a4996a3a9d630e4e881218d578fb6b761a70990a801045ac8678706284c7

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 235.1 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.4

File hashes

Hashes for fasttext_wheel-0.9.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 2da8e97ac82fe99960e1363c87022abe403a677d5229c7e44787d0c764159b99
MD5 ecb93758c97ff79be15860316c83beb8
BLAKE2b-256 e5333d4358d92f2396edc6ed44d886401a6033e39ab36ef665e20ef8df9a3451

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp35-cp35m-win32.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 195.4 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.4

File hashes

Hashes for fasttext_wheel-0.9.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 84f7bb711137729bace4553cea481fc60b1b8004acd67091ac556e4415fa29f9
MD5 8bb763cb8cb9b2234bb232a582afe711
BLAKE2b-256 ceb27c88e7f7fa02b421d4d0be4ea36888305a8ef434f38165132a26496413e0

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for fasttext_wheel-0.9.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 477ef49476f6f9558ae53d4bd9cad625ffd5737073152d1375863b350c2e880f
MD5 cccb115fff79cabf1cc9f22bef3aa9ff
BLAKE2b-256 3f46a7338eb40c80ebe0ffcbb0e2269bd4fe23dba02f0c5f010bba738e58b269

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for fasttext_wheel-0.9.2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a3bb1d14478c7dac126675f057750e854af646be9c028f6e9653cbaf4172a0ec
MD5 adf6554527d2933031100865740e32af
BLAKE2b-256 caf6d89786df0e4671bca8acecfa68d4c27740d1c78855032ba12600513ae567

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp35-cp35m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp35-cp35m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 325.0 kB
  • Tags: CPython 3.5m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.9

File hashes

Hashes for fasttext_wheel-0.9.2-cp35-cp35m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 17beeccd3935a5c531deb45217dde8d9758ffe764b1a89d82d5dddc8f36aa4e5
MD5 eb0d18abbb2bfdcf5d2f6a4fecaf53ef
BLAKE2b-256 c7de48bda15a5b3cc0964df4323c80ff1ec80daa7b51c19ba1aa46aaa43ffe8f

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 329.3 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/40.2.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.5.6

File hashes

Hashes for fasttext_wheel-0.9.2-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8def868707775661afc18299b67cbb6548fd98dd6c5b3e1826bf3f95db8ce7a0
MD5 cf27733a6543c631bf70d8b857ac7076
BLAKE2b-256 21e5bf5ab1e84f59c06d73b65a8c5643210e05386df7176404d05e7c293977f7

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for fasttext_wheel-0.9.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e6d8bbc2a0f64bfd66875d0d615dec2e6c3a1e2913cef8aa87a78c2eebe45093
MD5 2f74be88c8c2cbe8b9a005446c184261
BLAKE2b-256 b60ea2b5061b0c0aa9c75154740009758741c45eb7f369188146d90125670fd7

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for fasttext_wheel-0.9.2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 838ff1e03ce613964e9a30c3fa96bf1ef3d63b891990eb5c56b054a3b03b2999
MD5 98a1b98414ddabb904db9ec2531c49f1
BLAKE2b-256 c1d6afc534f4326d8035758a2dfbba62359884c6dbbf2a31d9ed77e272fb9c38

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for fasttext_wheel-0.9.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c5afabc433c923526e0572e1ed1bf7b21ee5aa77869cb7896f3eab1402067973
MD5 8e063217eb9784bf84a288466f4f2960
BLAKE2b-256 332fe79c2e6ac4c352784a9d571768a247333a476be43fb78a767c8dc2d2b922

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for fasttext_wheel-0.9.2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 aced443e9f380b6fd3163e3bfdec43567f7024295a6c9228f91f9566671b7023
MD5 73d345cdb612612603e6cc75d010625d
BLAKE2b-256 8346ca387fe9206a9b81e2d6b5f254fecc2b28dcc8b84683764f34e039644018

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp27-cp27m-macosx_11_1_arm64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp27-cp27m-macosx_11_1_arm64.whl
  • Upload date:
  • Size: 291.8 kB
  • Tags: CPython 2.7m, macOS 11.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for fasttext_wheel-0.9.2-cp27-cp27m-macosx_11_1_arm64.whl
Algorithm Hash digest
SHA256 2e3b0a205baee622877aa5a83b369947e68271c99b9a6eccc8fbe48948d6e6b5
MD5 5781ab1de73cd4c02d04bea1452808e7
BLAKE2b-256 c17a513614f035783389dc99e7e53f9ceabdeee2631d9def02951c8662241925

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp27-cp27m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp27-cp27m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 326.2 kB
  • Tags: CPython 2.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/2.7.18

File hashes

Hashes for fasttext_wheel-0.9.2-cp27-cp27m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 efa1fae3b10b64978ba78a2cd1490627c8d861c23f39abd95393d5836e4f0c8f
MD5 a7a70df01f37a6c7268e165ef0a8661a
BLAKE2b-256 235ef2b3287f9dc873bbe41dfa2edf3dc934b056eaca0afe139612b7ded9e797

See more details on using hashes here.

File details

Details for the file fasttext_wheel-0.9.2-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: fasttext_wheel-0.9.2-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 330.3 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/44.0.0.post20200106 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/2.7.18

File hashes

Hashes for fasttext_wheel-0.9.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 04d5e693c25880574faf9e5a24bc19514e560dd41add7ecd88cb253f50874669
MD5 d640b710bfde1e9a59f0aed57090936f
BLAKE2b-256 059d6fa50db0373dfced92bf670b007b51cc326a6da3bf2df67e280785200f9c

See more details on using hashes here.

Supported by

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