Skip to main content
Files added late

83 files were added to this release more than 14 days after its initial publication. Inspect the release files before installing.

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

Release files for fasttext-wheel 0.9.2

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

Files added late

83 files were uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release files before installing.

Source distribution (sdist)

Source distribution for fasttext-wheel 0.9.2
File Size Uploaded
fasttext-wheel-0.9.2.tar.gz 71.4 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for fasttext-wheel 0.9.2
File
fasttext_wheel-0.9.2-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
fasttext_wheel-0.9.2-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
fasttext_wheel-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
fasttext_wheel-0.9.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32 Details
fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_ppc64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-be Details
fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
fasttext_wheel-0.9.2-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
fasttext_wheel-0.9.2-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
fasttext_wheel-0.9.2-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
fasttext_wheel-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
fasttext_wheel-0.9.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_ppc64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-be Details
fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
fasttext_wheel-0.9.2-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
fasttext_wheel-0.9.2-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
fasttext_wheel-0.9.2-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
fasttext_wheel-0.9.2-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.12+ x86-64 Details
fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.12+ x86-32 Details
fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_ppc64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-be Details
fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
fasttext_wheel-0.9.2-cp310-cp310-macosx_12_0_arm64.whl CPython 3.10 CPython 3.10 macOS 12.0+ ARM64 Details
fasttext_wheel-0.9.2-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
fasttext_wheel-0.9.2-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
fasttext_wheel-0.9.2-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-64 Details
fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-32 Details
fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_ppc64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-be Details
fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_armv7l.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARMv7l Details
fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
fasttext_wheel-0.9.2-cp39-cp39-manylinux2010_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-64 Details
fasttext_wheel-0.9.2-cp39-cp39-manylinux2010_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-32 Details
fasttext_wheel-0.9.2-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
fasttext_wheel-0.9.2-cp39-cp39-macosx_10_15_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.15+ x86-64 Details
fasttext_wheel-0.9.2-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
fasttext_wheel-0.9.2-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
fasttext_wheel-0.9.2-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-64 Details
fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-32 Details
fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_ppc64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-be Details
fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_armv7l.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARMv7l Details
fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
fasttext_wheel-0.9.2-cp38-cp38-manylinux2010_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-64 Details
fasttext_wheel-0.9.2-cp38-cp38-manylinux2010_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-32 Details
fasttext_wheel-0.9.2-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
fasttext_wheel-0.9.2-cp38-cp38-macosx_10_15_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.15+ x86-64 Details
fasttext_wheel-0.9.2-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
fasttext_wheel-0.9.2-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
fasttext_wheel-0.9.2-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Details
fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64 Details
fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32 Details
fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x Details
fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_ppc64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-be Details
fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_armv7l.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARMv7l Details
fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
fasttext_wheel-0.9.2-cp37-cp37m-manylinux2010_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64 Details
fasttext_wheel-0.9.2-cp37-cp37m-manylinux2010_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32 Details
fasttext_wheel-0.9.2-cp37-cp37m-macosx_10_15_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.15+ x86-64 Details
fasttext_wheel-0.9.2-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
fasttext_wheel-0.9.2-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
fasttext_wheel-0.9.2-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
fasttext_wheel-0.9.2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64 Details
fasttext_wheel-0.9.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32 Details
fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_s390x.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x Details
fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_ppc64le.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_ppc64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-be Details
fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_armv7l.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARMv7l Details
fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64 Details
fasttext_wheel-0.9.2-cp36-cp36m-manylinux2010_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64 Details
fasttext_wheel-0.9.2-cp36-cp36m-manylinux2010_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32 Details
fasttext_wheel-0.9.2-cp36-cp36m-manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
fasttext_wheel-0.9.2-cp36-cp36m-macosx_10_15_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.15+ x86-64 Details
fasttext_wheel-0.9.2-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details
fasttext_wheel-0.9.2-cp35-cp35m-win_amd64.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-64 Details
fasttext_wheel-0.9.2-cp35-cp35m-win32.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-32 Details
fasttext_wheel-0.9.2-cp35-cp35m-manylinux2010_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-64 Details
fasttext_wheel-0.9.2-cp35-cp35m-manylinux2010_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-32 Details
fasttext_wheel-0.9.2-cp35-cp35m-macosx_10_15_x86_64.whl CPython 3.5 CPython 3.5 pymalloc macOS 10.15+ x86-64 Details
fasttext_wheel-0.9.2-cp35-cp35m-macosx_10_9_x86_64.whl CPython 3.5 CPython 3.5 pymalloc macOS 10.9+ x86-64 Details
fasttext_wheel-0.9.2-cp27-cp27mu-manylinux2010_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-64 Details
fasttext_wheel-0.9.2-cp27-cp27mu-manylinux2010_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-32 Details
fasttext_wheel-0.9.2-cp27-cp27m-manylinux2010_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-64 Details
fasttext_wheel-0.9.2-cp27-cp27m-manylinux2010_i686.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-32 Details
fasttext_wheel-0.9.2-cp27-cp27m-macosx_11_1_arm64.whl CPython 2.7 CPython 2.7 pymalloc macosx 11 1 arm64 Details
fasttext_wheel-0.9.2-cp27-cp27m-macosx_10_15_x86_64.whl CPython 2.7 CPython 2.7 pymalloc macOS 10.15+ x86-64 Details
fasttext_wheel-0.9.2-cp27-cp27m-macosx_10_9_x86_64.whl CPython 2.7 CPython 2.7 pymalloc macOS 10.9+ x86-64 Details

Total release size: 268.1 MB

Release files / fasttext-wheel-0.9.2.tar.gz

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext-wheel-0.9.2.tar.gz
Size 71.4 kB
Tags Source
SHA-256 checksum
How to use checksums
056e088318ef0e0cc690c4cb18637320eaa3cdb986b62d67bb50d6a7a82e4051
BLAKE2b-256 checksum
How to use checksums
c851022e84b23ec435248a39f727dae94240321ebe2fdc104800de80410e1550
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / fasttext_wheel-0.9.2-cp312-cp312-win_amd64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp312-cp312-win_amd64.whl
Size 234.7 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
8a0cc9e92377d27835a71862c68782e70c9bbd2a666a1a51b2c8261fc9892470
BLAKE2b-256 checksum
How to use checksums
d3e15c1880859a122a57793d13685af6451bcb67be90bf74549bcf042c2ade6b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.2

Release files / fasttext_wheel-0.9.2-cp312-cp312-win32.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp312-cp312-win32.whl
Size 204.2 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
79bfa9b168c115e3b4eab1f7694a80ca6a9ea96ee5e2e4d737e07f5b61812ae8
BLAKE2b-256 checksum
How to use checksums
94981c655e814d470ee5ae978b21739ad8a1a598a14b9929b1e966a8fdfe5ce6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.2

Release files / fasttext_wheel-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.6 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5758d911a4e4539c75e93d58d9feee2c6de96a5addc4f4d7d76ed4e8953a4f35
BLAKE2b-256 checksum
How to use checksums
ff40ed638abf8ac6fd0d1e7c47d07d37621e86f46522bbad0bec6e4f6d85a39d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.9.18

Release files / fasttext_wheel-0.9.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 4.5 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
e73457b66edd1fb893092c1717102e7e7d184a9413735801a4c39d0299846940
BLAKE2b-256 checksum
How to use checksums
fe0a4f841f20618e9dcd3420b161d26df77042837a7346aa09ed8eda002ab676
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.9.18

Release files / fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_s390x.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_s390x.whl
Size 2.9 MB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
ca27b054837168dd34b202ef59c903fd713d2307c9d27814ff67bc2d6beeadd2
BLAKE2b-256 checksum
How to use checksums
8909f2832c3f4d8d38dcc072c9d15632125ccd61e62243e4d0ef99eaf545bf26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.9.18

Release files / fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_ppc64le.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_ppc64le.whl
Size 2.9 MB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
0a30b779f3f77eca0d31bb11c074fadbc5ab9e6e4c7cdb3135780a61d63eb3fb
BLAKE2b-256 checksum
How to use checksums
09c3a9b5519a2d4eee79994a19ae8d4a093fff064802f62fde2402470c160502
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.9.18

Release files / fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_ppc64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_ppc64.whl
Size 3.0 MB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-be
SHA-256 checksum
How to use checksums
6ab035ecdf8debd35bf513613abaca714876b799fede8ab32c3841417178c543
BLAKE2b-256 checksum
How to use checksums
2154637ccc9b6f064e31151e16d7bc597696deff85998a0a6b0cec970aeb22f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.9.18

Release files / fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_armv7l.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_armv7l.whl
Size 2.7 MB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
a0bbeaf364fdae4269648391ce44f3c4d5774ec7bea614b65b7c51254f1697fd
BLAKE2b-256 checksum
How to use checksums
f36ffb366b9cb5531e5df51cf67e2693d7bf9b1f4ace859e0e70d62b73c818d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.9.18

Release files / fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp312-cp312-manylinux2014_aarch64.whl
Size 2.9 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
1d673dc21be911134142642e5cf3a92537f565156ede0871f3a769108f446163
BLAKE2b-256 checksum
How to use checksums
cf919dc1baf7d53fcf980406656d568a609cdec5afa94765fd4e32850f74e8d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.9.18

Release files / fasttext_wheel-0.9.2-cp312-cp312-macosx_10_9_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp312-cp312-macosx_10_9_x86_64.whl
Size 310.6 kB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
cc650bd6984ea15207ab09e56f20c2fd09fe90822f4663896185cedb79825d6d
BLAKE2b-256 checksum
How to use checksums
1e80382fc6db2a7d80f343ff26f7506f1214dcc1ac1c9fcca1d1c61faee80be7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.2

Release files / fasttext_wheel-0.9.2-cp311-cp311-win_amd64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp311-cp311-win_amd64.whl
Size 232.4 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
1afb40118fb1b39e159bbdded14834a6a95415c0be957553647b9d70c7cc45ff
BLAKE2b-256 checksum
How to use checksums
96582d1c2557cefa8d30c7e7ed182cac53cc811b4dcf265ffa64fb8e8a6287c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.0rc2

Release files / fasttext_wheel-0.9.2-cp311-cp311-win32.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp311-cp311-win32.whl
Size 202.5 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
39d3201a8e6dabf59c0d8f9a7064d12bb996bca38f5f15e5a678e12fcbd39a35
BLAKE2b-256 checksum
How to use checksums
d9e3401187b0dbb79c9e878f74aa70921478817ef3a154d2edd2b41c5ab4d476
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.0rc2

Release files / fasttext_wheel-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.4 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1ec13d485e0202e729b3bcb7283dda9c499581f691fa8e835e237ee5cf69a2b5
BLAKE2b-256 checksum
How to use checksums
f61394644fa56b36d5638e2c689f4506e2685a13c78765d03ae22294711460d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.15

Release files / fasttext_wheel-0.9.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 4.4 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
9e09cff3f2002cdef5f046a0969a0bf886d5386c2eb1c15874d90f9a95edb8d0
BLAKE2b-256 checksum
How to use checksums
644d39e0520fbbde6861467948dfd188aefca614c671e5801ca86b95059f9b1d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.15

Release files / fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_s390x.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_s390x.whl
Size 2.8 MB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
c7b94290bc5bf1a8f2cf6ca2e84364bca3588525625907323d3a77bc96365915
BLAKE2b-256 checksum
How to use checksums
5dbfa9053e329d43a8daac6afe21f4e856b9f2dabfd69e2a8359c23e3c2e345b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.15

Release files / fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_ppc64le.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_ppc64le.whl
Size 2.8 MB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
ad1a3e10354cb71cb2e182ce4cb7fa61fd2396fe4e28d52002b8f6a749138e4d
BLAKE2b-256 checksum
How to use checksums
31c474783db26f0067ce9508678b18e033b0d0575e389a7a93431aae0338afcd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.15

Release files / fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_ppc64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_ppc64.whl
Size 2.9 MB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-be
SHA-256 checksum
How to use checksums
b1e6c4aee8dfc5629aba54c0c044eb0c699b3f82ee5f0f1a8edf69c84ffaa1bd
BLAKE2b-256 checksum
How to use checksums
2d862b43814c0f0722e3800ffb0ab873f7d17d9ec107d0b7b477583e6e8ac769
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.15

Release files / fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_armv7l.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_armv7l.whl
Size 2.7 MB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
2dcbe5cb3ebad68667772ff2457d1d5ced69e9caa19fe35e53fe1b0c68db69f6
BLAKE2b-256 checksum
How to use checksums
0575105f62d1d24e0bae7c53893c1bbe3cf6eed71c6aa33961105058647e2409
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.15

Release files / fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp311-cp311-manylinux2014_aarch64.whl
Size 2.9 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ef5be5e24ad4aab61eb42c30e1a7909464b20958907c23dfe4037ef247755254
BLAKE2b-256 checksum
How to use checksums
e3248a85a2d6c80b303762f2bd296f7a3bbc1027ce6731a3d6f0bc28665c8065
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.15

Release files / fasttext_wheel-0.9.2-cp311-cp311-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp311-cp311-macosx_11_0_arm64.whl
Size 330.7 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
aefd4dbecf4c243628a513c3f9f9008a4c94d63f4194cfde6d11975710f04b7c
BLAKE2b-256 checksum
How to use checksums
028a625195477d08abc9d1674ee99c818f565c4a49849db75078c1e319a189db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.8

Release files / fasttext_wheel-0.9.2-cp311-cp311-macosx_10_9_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp311-cp311-macosx_10_9_x86_64.whl
Size 307.8 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a32cc0bee31985c5a15ae2ec4f7d777c84e84294d70969d7382961305b0851cf
BLAKE2b-256 checksum
How to use checksums
e887ff2a0cdcd422a951a3c000a809c2f77462085dde0192f10405377f5454e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.0

Release files / fasttext_wheel-0.9.2-cp310-cp310-win_amd64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp310-cp310-win_amd64.whl
Size 241.5 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
acb1e336c63fcf46ef8965904c03589d230ebc6a3c4a7f05b0a32a7de85de11a
BLAKE2b-256 checksum
How to use checksums
1f089a495ba568887cb5f9022b600806beb39754ff0870d779b4976e039fdb24
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.5

Release files / fasttext_wheel-0.9.2-cp310-cp310-win32.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp310-cp310-win32.whl
Size 210.5 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
5c4938600006dd13bb215f105adb971e8f129491e03cc5de5ac53f292cdbc9a6
BLAKE2b-256 checksum
How to use checksums
c6fd0f3d7275f4a4750f9ed847280df7182d7e1fe7e8dd6a329ad1fdc6f047ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.5

Release files / fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.4 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0aa4755a3ab0717e32627ede55e9c12cd7bbba464c73af7f08a3142bd6c62df7
BLAKE2b-256 checksum
How to use checksums
3a785af1ed52339a6c09277921f56e60cc1c167154147a3038ab77aaaf45ef19
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.15

Release files / fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 4.3 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
6d5d47dacf4930254de1806b19cc603a0daac034477a27329dc7b3a4f4240d4a
BLAKE2b-256 checksum
How to use checksums
14a3d7f8b00eb6aeca39d4beb9a683b78eaa9133e162c5cde09a9b16d4eb4611
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.15

Release files / fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 4.5 MB
Tags CPython 3.10 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
09a25790ad17ee21f31efe39d51e4106c718a1ed9c7ac0bdc1ad7512f2d64d22
BLAKE2b-256 checksum
How to use checksums
ccd9f216866c2d31beac59ad97caa502e3208cf9b21581feba864d7c82ff5995
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.13

Release files / fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Size 4.3 MB
Tags CPython 3.10 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
2cce299a49f50b5867fff464d1051beebe1d612b23213bb29b09f96935ca4ca0
BLAKE2b-256 checksum
How to use checksums
21f2defd13727934b9ffa9c01c1facf1dc1353d9d19ad81e8c85f83b08d846b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.13

Release files / fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_s390x.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_s390x.whl
Size 2.8 MB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
8280415f59178879963791da9b51eee23a0faf1230fbc770fe917801b5d8f3f6
BLAKE2b-256 checksum
How to use checksums
ae00d0ef9c22f09abc766aa50144e991e747dbb494c73636201ac2327d8ada55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.13

Release files / fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_ppc64le.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_ppc64le.whl
Size 2.8 MB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
dbad8ab4820b08273450a395f76a536044a749227ecac060ba48a1d70426768b
BLAKE2b-256 checksum
How to use checksums
0a10b1f0550ced5eb4c4a31edf8cd363e704d12a75a058a156340c794895ac1b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.13

Release files / fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_ppc64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_ppc64.whl
Size 2.9 MB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-be
SHA-256 checksum
How to use checksums
3b7f0d76e2c2b20a582725dc9c7e3419bb55745ac2842271c2e785047b143ac7
BLAKE2b-256 checksum
How to use checksums
cbcbf5c76ed5c886dd5323e91c0d8d0264a3fae7a398a5fa5fb63eaf226d7893
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.13

Release files / fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_armv7l.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_armv7l.whl
Size 2.6 MB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
f1dba6805073d46495dc700a8e29a5524c87f141a29820664c47207260723e78
BLAKE2b-256 checksum
How to use checksums
943d9de31e989742bca76d85b297fe01d873cb8211ee4faaa8472a43c937783f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.13

Release files / fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp310-cp310-manylinux2014_aarch64.whl
Size 2.9 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
0e8a73ee48502dfc6243faf6799dec3067795a6dc02c1d47fedc620e80e9ee94
BLAKE2b-256 checksum
How to use checksums
2aff83af4b09e6500c891007ed1ee77e93c7bf6b909c69b0cf67489de3343c81
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.13

Release files / fasttext_wheel-0.9.2-cp310-cp310-macosx_12_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp310-cp310-macosx_12_0_arm64.whl
Size 324.3 kB
Tags CPython 3.10 macOS 12.0+ ARM64
SHA-256 checksum
How to use checksums
c4e9e59778eb3f3a3c99bf3c1257791564fbafab9b80e89345ee0940c20e1648
BLAKE2b-256 checksum
How to use checksums
c014c3a40b7255b8f0d62090a153dad406855689daa44982b7ae70b84ee5cfef
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp310-cp310-macosx_10_9_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp310-cp310-macosx_10_9_x86_64.whl
Size 638.8 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
af606b17d47695a17ee87dc5a5c76e29cc957f08bd090cb2441e3815c030a99d
BLAKE2b-256 checksum
How to use checksums
1eeddd07bba161fd4bd08a67ab108e37b6ed919b0967913a82d33c45cc3ed047
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.4

Release files / fasttext_wheel-0.9.2-cp39-cp39-win_amd64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp39-cp39-win_amd64.whl
Size 225.6 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
4cb4f08083429cb367d29722528e1e0371c512e77f1956c341151159d7a56197
BLAKE2b-256 checksum
How to use checksums
4a12b37a1af2a5a09d9234877bc6e1403fae68adee43afc027fc6da7f576e15a
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp39-cp39-win32.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp39-cp39-win32.whl
Size 196.3 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
5f3d27433b2280304f2aaba6b63bc79893a5113eed8e1c349d709d26ad072357
BLAKE2b-256 checksum
How to use checksums
a7066205b21e4aed77afe638efaaacadff71af7d6c6a58eae3e33a05623ac361
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.4 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
fd59ea516b352911bce63c348c5c6f0981c54a88649db3ce5e437c386a994fe4
BLAKE2b-256 checksum
How to use checksums
cca314cad5f06da58972acad9e5bf3898712edf17b12c34186b181f268a1a65e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.15

Release files / fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Size 4.3 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
35edd9a4c1a8b058b7aef686b5a6d941109db1f0d563ae19f48623b611283782
BLAKE2b-256 checksum
How to use checksums
305142ceb741f6e6a953667a8a3bd93386192df56341e2c5d15e88d57d9bbc67
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.15

Release files / fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 4.4 MB
Tags CPython 3.9 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
20e0f4271fbbe606d6218bfbbe4a6496d8ae33ff5b1f94aacec003e3ca593fce
BLAKE2b-256 checksum
How to use checksums
30d39d39d168b5c48a8fce1d43982e7ba960fe9544376e5098a8f79706c0ea80
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Size 4.3 MB
Tags CPython 3.9 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
7114a7950ca2a380647cc4268379f01b9d2dea5c7f9ec1a8bf063700a665b802
BLAKE2b-256 checksum
How to use checksums
5ea0e25914ea65bd94ae5eaf78a9050354255454be7fff522e5acfd57d5f3119
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_s390x.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_s390x.whl
Size 2.8 MB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
f5895b20801b412a018ac4d56ef0d37d753e03f04fdbc23221f612f64dd83489
BLAKE2b-256 checksum
How to use checksums
7bfbf3f2d78e83ce7381f3afe625a78aedeab2b8f23d0dc56292f1639eca1ae0
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_ppc64le.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_ppc64le.whl
Size 2.8 MB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
290e0030f237713afa30fc9b044aeac975f4d77c7281e1a533c08976d2ced05f
BLAKE2b-256 checksum
How to use checksums
ae4198a1ddde798abbc086275be251e8be82590bd970205d6a1e7f745a3c881f
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_ppc64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_ppc64.whl
Size 2.9 MB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-be
SHA-256 checksum
How to use checksums
7547a347a3b173a67571b629e5fa15f5d5154a9bf5809c94958bf6ec0e142512
BLAKE2b-256 checksum
How to use checksums
1c3512e331df177b7eccad33256091b4965728019a66c713c06042a3434f2923
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_armv7l.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_armv7l.whl
Size 2.6 MB
Tags CPython 3.9 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
1a6575feedff466d3af5a77f073294338da5dc361d538b6d1da74247336eba5b
BLAKE2b-256 checksum
How to use checksums
b069a0b8af7d54d1d44e99db6ac781b2e112b265f3fe99286597641eae50b8b1
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp39-cp39-manylinux2014_aarch64.whl
Size 2.8 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
1d96be81f8365783c4420b02024b1794ac13fa232be04813a2dae9cdc389e82d
BLAKE2b-256 checksum
How to use checksums
86f3d3f4aafbaa396d84df0cef5367172cefe3d10021943bacc5859bc7c7de40
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp39-cp39-manylinux2010_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp39-cp39-manylinux2010_x86_64.whl
Size 4.3 MB
Tags CPython 3.9 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
07387bd66a619e23e9b1520e5472a97ae2f63d6790511c242b6bbb8b008386ff
BLAKE2b-256 checksum
How to use checksums
059df569062e8611dbe24f02f9d20794abfc7755e93c85b77fc05ba5cb25cd39
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp39-cp39-manylinux2010_i686.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp39-cp39-manylinux2010_i686.whl
Size 4.2 MB
Tags CPython 3.9 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
3e66247d3035954c00ee987c5927f9ca7226597a5b3a1d43784b5935b35addbf
BLAKE2b-256 checksum
How to use checksums
555af2d44f55150131c36d6205b5f549bd18f79e33346e3abf28338280fdaffe
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp39-cp39-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp39-cp39-macosx_11_0_arm64.whl
Size 327.9 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c12e4eb12eb9181e4c31d7ba671a2a96f86b5e2e987e691554d40a3846908658
BLAKE2b-256 checksum
How to use checksums
d21da8e3bc4b3fabcb24c0102001fb86518db08abfeefcadf00cc064530fa67a
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp39-cp39-macosx_10_15_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp39-cp39-macosx_10_15_x86_64.whl
Size 330.5 kB
Tags CPython 3.9 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
5d3636932dba77811225dee9af540af4b4eb80a2ddd214ae476dc4a945d932d7
BLAKE2b-256 checksum
How to use checksums
0995b0c570466ed998b4645a071369da18919b0d452ebc1460f1f24a414d049e
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp39-cp39-macosx_10_9_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp39-cp39-macosx_10_9_x86_64.whl
Size 291.6 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
6f4ef14f4f866fa0d5c17facf490c6821a109ea78788c61cc168807cfe038110
BLAKE2b-256 checksum
How to use checksums
1b84574a975a5cfdc9800a9490de1a5ecb2eac5c77cb323703aea4615478f946
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp38-cp38-win_amd64.whl

Download URL fasttext_wheel-0.9.2-cp38-cp38-win_amd64.whl
Size 225.7 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
084fa472a49dc0c40e8153cae2b62b42433255c441934b0e9fd9526cab822991
BLAKE2b-256 checksum
How to use checksums
ef3b0db14e26d8ccbe34ec1c2b6ece6cd9e8e427fd24917c30424680a38972b8
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp38-cp38-win32.whl

Download URL fasttext_wheel-0.9.2-cp38-cp38-win32.whl
Size 196.3 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
44b69266aa8604040be502985d6a56951ae9cd89dc9ec7c4505e864b5c584e0e
BLAKE2b-256 checksum
How to use checksums
975c6250f218ff3f0dfd9da341d9914e978d2a389ec965bda7673eb5d9762eba
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.4 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
31811c96ffe97d05272d77b7c0d4fe35b5d00dd63a189653eb9df3c60e11710c
BLAKE2b-256 checksum
How to use checksums
d731f8754ce4cd6953b05e3517907f4e4e123a198043add7535f371f36ddbfe1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.15

Release files / fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Size 4.3 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
9a5dcb79b828132cc16beb3d790b90c00b31b34a4cfb320a9ac2bfbcb507b12e
BLAKE2b-256 checksum
How to use checksums
4455f2e35bf0db9d2153593a70bf7ebb6657e9cd48ced2efa61742198af42851
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.15

Release files / fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 4.4 MB
Tags CPython 3.8 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
41b7f1237df82d29b6a64ca93894d8558c8b1791fd4f782b28a846c6ebccd182
BLAKE2b-256 checksum
How to use checksums
552e96dcf52631af45c442a89c7a941b1e3479aa4bcb13206c115ebd7573b3ac
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Size 4.3 MB
Tags CPython 3.8 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
1d64763e6f5d5f84ec4f226d78a56e9182fcd15e48219f10eecd09dc2cccefc9
BLAKE2b-256 checksum
How to use checksums
22ceb940a9378ea2e1f1fc10b6616a3867da02e938c869fce7e33604bc0171bf
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_s390x.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_s390x.whl
Size 2.8 MB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
b10eb3702de7b56b4de83b83d39248e75198434fa7f6139805aa7b0a1b31245b
BLAKE2b-256 checksum
How to use checksums
2923263ec6f8ff5fe2f050f7dca075fee80df6f0eac557c1e37210df1a00befd
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_ppc64le.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_ppc64le.whl
Size 2.8 MB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
3328e851e5896b373395ea108437045fa830c68ef86b0ab4db49bb7d64da77b7
BLAKE2b-256 checksum
How to use checksums
d46af4a2f87f17da37953c9eb12c463b924858d602c1ca80ecc34927f2a3d2dd
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_ppc64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_ppc64.whl
Size 2.9 MB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-be
SHA-256 checksum
How to use checksums
d29ac75e948ed3ef44df54b6fe203c8b9b3c08fb486a8634b6144425e72531ed
BLAKE2b-256 checksum
How to use checksums
6ad44ea121e11741f53dd005e2df19024cf91d2a8db5c7328bd0a5416ec53ab2
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_armv7l.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_armv7l.whl
Size 2.6 MB
Tags CPython 3.8 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
11efd5f0aebcc6737636b6890ac0b85f3b87aa359645969b4a1962459e588c69
BLAKE2b-256 checksum
How to use checksums
e3aee0054dfa7090ff0e017364ca499db8b6ba1262fc27ff8f882e3f3eb51e14
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp38-cp38-manylinux2014_aarch64.whl
Size 2.8 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
3c0fdfb0fbfe62c95e6f6ffc0119afb3f5d32914b1be8f7052a828d95b1ca23c
BLAKE2b-256 checksum
How to use checksums
93cfc7c14ad184aaa901f003baae5ea900734107aafd6f985e1a32b1a2c504b5
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp38-cp38-manylinux2010_x86_64.whl

Download URL fasttext_wheel-0.9.2-cp38-cp38-manylinux2010_x86_64.whl
Size 4.3 MB
Tags CPython 3.8 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
a5f4985db787b187933c12dfd89c972854b80ae97f07d004d73cdc9d251e8eb8
BLAKE2b-256 checksum
How to use checksums
b94e062cf3d8ec65e4ee90fd71aae6d686fb43a330922be58494990baa1a11a4
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp38-cp38-manylinux2010_i686.whl

Download URL fasttext_wheel-0.9.2-cp38-cp38-manylinux2010_i686.whl
Size 4.2 MB
Tags CPython 3.8 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
e64226520d7433ee0997db4b29abeb21a465b48d68389fee50137eb08f7dd756
BLAKE2b-256 checksum
How to use checksums
197b5724a23b2775f52ffd5d499b18f27a509637b6ff0c7ceb0f827a0ac15da0
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp38-cp38-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp38-cp38-macosx_11_0_arm64.whl
Size 327.7 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9d08cf0ea4081b755e029160a96f9be5cfc5468ad54f476fe0ef7a6dec5dc52c
BLAKE2b-256 checksum
How to use checksums
43ffa7f5a22914db1a3191e765f012ab0f5aedb15da63ac55daecd6b91433a20
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp38-cp38-macosx_10_15_x86_64.whl

Download URL fasttext_wheel-0.9.2-cp38-cp38-macosx_10_15_x86_64.whl
Size 330.7 kB
Tags CPython 3.8 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
0ca1cf85b5159db69223cfa8a1cc5a00b521bb4bb5336fdf344ba743ca8f1dae
BLAKE2b-256 checksum
How to use checksums
0eb25566b24692211fade36581639a367e77e1fde06e8a4b57b14af5380c8850
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp38-cp38-macosx_10_9_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp38-cp38-macosx_10_9_x86_64.whl
Size 334.8 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
ab7e2431999d352f0d417c7edc7bb76ee4377fd35d59dd4e77cefd33ee7341c8
BLAKE2b-256 checksum
How to use checksums
f4ee9441cb5fd8472e67ec2481bacb4ab1de6597875272e4e4e35b21040aa44a
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp37-cp37m-win_amd64.whl

Download URL fasttext_wheel-0.9.2-cp37-cp37m-win_amd64.whl
Size 225.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
17b02b00ca26f84c5a645141e1a88b80a835d74077d5a55738884f2f3e43da2c
BLAKE2b-256 checksum
How to use checksums
7a5f0e8be0e4c9dd4cb18f0f5b5ca19aff5086e01622301aa926b59ca08e90d5
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp37-cp37m-win32.whl

Download URL fasttext_wheel-0.9.2-cp37-cp37m-win32.whl
Size 197.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
91e744f4100cea6ec7da41a85e9b7b905d679959357cec654febbc42f472c330
BLAKE2b-256 checksum
How to use checksums
fa6c7d4ebd900a57ba8772fb6c3a4777e38ed94f795e9ee300408a7ccb73fdc3
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.6 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6e76af4ce3974f28e80da9edfe650703454acaa4597f143ec6ba31892ddefb17
BLAKE2b-256 checksum
How to use checksums
92345fdc566ef765364f9f6b3f1b8cb1fb8250097d00ae97aad062f083b4d752
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.15

Release files / fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 4.5 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
d22d15523bcf1715af25f9ee33064658c9a51d4447ea32d5b57f003670fd02bc
BLAKE2b-256 checksum
How to use checksums
7190487458ed286f4f12a9f0b172ce694d5948591f02a45dac1afc50bca83574
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.9.15

Release files / fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 4.5 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
1a0bf5f547430b838abcb0957fc7978feb4a02762b445a6c071394fab7207efd
BLAKE2b-256 checksum
How to use checksums
404f817f2eb1d683f3f7482b9806fc97aac29ed6f460ae7569f598946dfa1a91
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Size 4.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
d5e389c0912606e45be7bcc860d60f8d9e0bc094e84b8c7d2445670ff7275c32
BLAKE2b-256 checksum
How to use checksums
3b2cc5d43e0627168f26c82dd8e8b0fc7330531f874d5faf2f6ab0b66b5b6ff6
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_s390x.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_s390x.whl
Size 2.8 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
4bbe7046d079ba5724328eb8556212f60315edd26a2625c5bddad307bcee1267
BLAKE2b-256 checksum
How to use checksums
1c6ea98de4d31894356a997db2209ca7c65714742d0b0be31b0d10263f22397d
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_ppc64le.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_ppc64le.whl
Size 2.8 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
0cc583882ad40425d4bcaa09593adb0ce8140b27bbc0d3ea0129421cf785928b
BLAKE2b-256 checksum
How to use checksums
6326cfef9f6c5fe35112f513d3abbc89ff17f23ef853f7fe75c5e042ed6c2b66
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_ppc64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_ppc64.whl
Size 2.9 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-be
SHA-256 checksum
How to use checksums
3e9e9812f9acc9054ec6cb9d60df918b94348ca8d0f1c49408de253f622038c4
BLAKE2b-256 checksum
How to use checksums
da7068ccaea076eb493cf6c6ecaec97e7222a2885ebfbbdbc7a7057b83f9ee59
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_armv7l.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_armv7l.whl
Size 2.6 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
94afa157f43dc619c070838c6073d4b22e04007229113761e6c67b960c0c7a30
BLAKE2b-256 checksum
How to use checksums
3eec51ae2125f492082aaf6bf9635d3cbc9d904293143ee46ec1a989433dd87c
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp37-cp37m-manylinux2014_aarch64.whl
Size 2.8 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
708ccdb59873ab14972944a5ef24bb46ffff9ee851b47b905050716b4d8a1a1e
BLAKE2b-256 checksum
How to use checksums
a5720f77b65903aa05d50d8914ec06ee59257cdd2e4f1addc0cb91ad31e5429f
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp37-cp37m-manylinux2010_x86_64.whl

Download URL fasttext_wheel-0.9.2-cp37-cp37m-manylinux2010_x86_64.whl
Size 4.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
2ed30ae57f7cab129b2b474929c83e1065be3f11998730a0a178d3a7335fdc6a
BLAKE2b-256 checksum
How to use checksums
ac4353c94feb8b9ff2f8d726bd01cc486513e13a5bc2f7076101c781df42854d
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp37-cp37m-manylinux2010_i686.whl

Download URL fasttext_wheel-0.9.2-cp37-cp37m-manylinux2010_i686.whl
Size 4.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
ae70c70135c909c2951cae5496bf4ad19d268c03c0c2bd3bf71ce586126d7a5d
BLAKE2b-256 checksum
How to use checksums
8a51484490db4ceaf4a647097562b9e7c14fb7bf873083a601812d8a6ccc3ef5
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp37-cp37m-macosx_10_15_x86_64.whl

Download URL fasttext_wheel-0.9.2-cp37-cp37m-macosx_10_15_x86_64.whl
Size 325.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
aabcb1efa04a411ee22d364b6dc7e5ffb6b5c72c7522b6d065f03685d54e0c64
BLAKE2b-256 checksum
How to use checksums
8d9d36c69da842220a4bfa823301a8fcbd8724e91c1ff10719b7c3e5090ddd3e
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp37-cp37m-macosx_10_9_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp37-cp37m-macosx_10_9_x86_64.whl
Size 329.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
964ed076a2190841e3bb7f774c36088810b0e63b30e18c26867f6e7a7b1e7068
BLAKE2b-256 checksum
How to use checksums
a3c3a63c388ac4df696f9e6193075acf2eec4070d887107bf2355799a4c9e05a
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp36-cp36m-win_amd64.whl

Download URL fasttext_wheel-0.9.2-cp36-cp36m-win_amd64.whl
Size 225.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
4990269d29fb1b31ca5595f48be2116c85c8c22e591a16743fea993e97d02418
BLAKE2b-256 checksum
How to use checksums
f3c7bda42df49729354da6d325ca3a77201bfae16d81898ee59aa58ab4fcf22f
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp36-cp36m-win32.whl

Download URL fasttext_wheel-0.9.2-cp36-cp36m-win32.whl
Size 197.9 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
a6231f28c5048c59e1c3231b38887111f6a0b2f51a040323841bd8920dd98683
BLAKE2b-256 checksum
How to use checksums
25962490bd32e6d0339d8fe4ca1627571add62b53df76be32949ffc6917bd1e9
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 4.5 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
fefb1e8aa652aab231b5a37e3e5a59a13a95d36143616f9ef8902403a3e5556a
BLAKE2b-256 checksum
How to use checksums
bd4c4bd39e8a355615403cd41477725ec1d39d8ab1507c6c4674ac4548284d54
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Size 4.4 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
704c285c364e44384c88968cdcb8688907d23184aff373a22924135ed4f29e3a
BLAKE2b-256 checksum
How to use checksums
de10ff3f9d3e2215ca1722021aecd692efaf9083e9507da971559b387a603ebd
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_s390x.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_s390x.whl
Size 2.8 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
7f6727e40836c55bf2b9d7761ee25a6274abc17ae4f1ca0ea6eca3973661077b
BLAKE2b-256 checksum
How to use checksums
6a5e7a0d41360edbf40424e7ac2ebf892d4a7472159f7111c960f2080d17e756
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_ppc64le.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_ppc64le.whl
Size 2.8 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
14fb62960fcfe8408fdc8e2854c2c583a04e422f424ccea34c07070f15e1b0a2
BLAKE2b-256 checksum
How to use checksums
b52d6f7d437c746f9881d75fa06a881620eb19916dc6697583bbf800219f8da1
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_ppc64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_ppc64.whl
Size 2.9 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-be
SHA-256 checksum
How to use checksums
365d998c0d8b910282b9b03c9706d0e87cd569b3a8b37aefd901b237ec10a4ed
BLAKE2b-256 checksum
How to use checksums
8c49e72162487a4080a13187ccf486af0ee64631a0821fcd21dcf8aeea626357
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_armv7l.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_armv7l.whl
Size 2.6 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
d1d070b71c765f9e96be36ac6867a4f6d73072ba432b685f424b8d47a2e6c957
BLAKE2b-256 checksum
How to use checksums
4ff881887a2e2641463e465e86d62f2c07860b894a939cb73db9d7a61333c737
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp36-cp36m-manylinux2014_aarch64.whl
Size 2.8 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
bb71f70083ae127b1d0cbfb54857f873091da0ad3a5f63c530654c5104196d9b
BLAKE2b-256 checksum
How to use checksums
6f314848369078f17548fc606ed758f7b6f9be1c751d50e2d39805817c70fb69
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp36-cp36m-manylinux2010_x86_64.whl

Download URL fasttext_wheel-0.9.2-cp36-cp36m-manylinux2010_x86_64.whl
Size 4.4 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
b59f84675ce247735e00acab7afbe4c74753f4fe2c9b0bf21fc60417d339a781
BLAKE2b-256 checksum
How to use checksums
ba79bbdb7e27886ee38f0b2a6ace778a778ab7d6baf0c760c248761bffceae6e
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp36-cp36m-manylinux2010_i686.whl

Download URL fasttext_wheel-0.9.2-cp36-cp36m-manylinux2010_i686.whl
Size 4.3 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
18fc4ef2f9fd5060cc7174b121bcdc79edf4d66918ecfda60c030ed94309eb17
BLAKE2b-256 checksum
How to use checksums
582b2e986947ac205fcfebc4453c7d4e69dc364442e8fd1eb1e421f3251604d1
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp36-cp36m-manylinux1_x86_64.whl

Download URL fasttext_wheel-0.9.2-cp36-cp36m-manylinux1_x86_64.whl
Size 2.8 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
e8fe842818380ec56ef303461577ac5df7d4308115555879580e11e8ec055dc8
BLAKE2b-256 checksum
How to use checksums
39ff12d989a94c53324fca84566ce9c13927180bd6ef26f0470f83cdc862b1cb
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp36-cp36m-macosx_10_15_x86_64.whl

Download URL fasttext_wheel-0.9.2-cp36-cp36m-macosx_10_15_x86_64.whl
Size 325.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
ed960c08196ecd30a349c019a6e79214e0f27da7f21141872b2c02c7286e435a
BLAKE2b-256 checksum
How to use checksums
bff783167c103084f4566c30538b87692a9c499da28410685585e1f3432908c6
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp36-cp36m-macosx_10_9_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp36-cp36m-macosx_10_9_x86_64.whl
Size 329.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
26b0ca89c6d5e5fc5c864eb18e327674a45b2c98f38845d58d3e5beae6982ead
BLAKE2b-256 checksum
How to use checksums
fe26a4996a3a9d630e4e881218d578fb6b761a70990a801045ac8678706284c7
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp35-cp35m-win_amd64.whl

Download URL fasttext_wheel-0.9.2-cp35-cp35m-win_amd64.whl
Size 235.1 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
2da8e97ac82fe99960e1363c87022abe403a677d5229c7e44787d0c764159b99
BLAKE2b-256 checksum
How to use checksums
e5333d4358d92f2396edc6ed44d886401a6033e39ab36ef665e20ef8df9a3451
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp35-cp35m-win32.whl

Download URL fasttext_wheel-0.9.2-cp35-cp35m-win32.whl
Size 195.4 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
84f7bb711137729bace4553cea481fc60b1b8004acd67091ac556e4415fa29f9
BLAKE2b-256 checksum
How to use checksums
ceb27c88e7f7fa02b421d4d0be4ea36888305a8ef434f38165132a26496413e0
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp35-cp35m-manylinux2010_x86_64.whl

Download URL fasttext_wheel-0.9.2-cp35-cp35m-manylinux2010_x86_64.whl
Size 4.4 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
477ef49476f6f9558ae53d4bd9cad625ffd5737073152d1375863b350c2e880f
BLAKE2b-256 checksum
How to use checksums
3f46a7338eb40c80ebe0ffcbb0e2269bd4fe23dba02f0c5f010bba738e58b269
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp35-cp35m-manylinux2010_i686.whl

Download URL fasttext_wheel-0.9.2-cp35-cp35m-manylinux2010_i686.whl
Size 4.3 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
a3bb1d14478c7dac126675f057750e854af646be9c028f6e9653cbaf4172a0ec
BLAKE2b-256 checksum
How to use checksums
caf6d89786df0e4671bca8acecfa68d4c27740d1c78855032ba12600513ae567
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp35-cp35m-macosx_10_15_x86_64.whl

Download URL fasttext_wheel-0.9.2-cp35-cp35m-macosx_10_15_x86_64.whl
Size 325.0 kB
Tags CPython 3.5 CPython 3.5 pymalloc macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
17beeccd3935a5c531deb45217dde8d9758ffe764b1a89d82d5dddc8f36aa4e5
BLAKE2b-256 checksum
How to use checksums
c7de48bda15a5b3cc0964df4323c80ff1ec80daa7b51c19ba1aa46aaa43ffe8f
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp35-cp35m-macosx_10_9_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp35-cp35m-macosx_10_9_x86_64.whl
Size 329.3 kB
Tags CPython 3.5 CPython 3.5 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
8def868707775661afc18299b67cbb6548fd98dd6c5b3e1826bf3f95db8ce7a0
BLAKE2b-256 checksum
How to use checksums
21e5bf5ab1e84f59c06d73b65a8c5643210e05386df7176404d05e7c293977f7
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp27-cp27mu-manylinux2010_x86_64.whl

Download URL fasttext_wheel-0.9.2-cp27-cp27mu-manylinux2010_x86_64.whl
Size 4.3 MB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
e6d8bbc2a0f64bfd66875d0d615dec2e6c3a1e2913cef8aa87a78c2eebe45093
BLAKE2b-256 checksum
How to use checksums
b60ea2b5061b0c0aa9c75154740009758741c45eb7f369188146d90125670fd7
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp27-cp27mu-manylinux2010_i686.whl

Download URL fasttext_wheel-0.9.2-cp27-cp27mu-manylinux2010_i686.whl
Size 4.2 MB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
838ff1e03ce613964e9a30c3fa96bf1ef3d63b891990eb5c56b054a3b03b2999
BLAKE2b-256 checksum
How to use checksums
c1d6afc534f4326d8035758a2dfbba62359884c6dbbf2a31d9ed77e272fb9c38
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp27-cp27m-manylinux2010_x86_64.whl

Download URL fasttext_wheel-0.9.2-cp27-cp27m-manylinux2010_x86_64.whl
Size 4.3 MB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
c5afabc433c923526e0572e1ed1bf7b21ee5aa77869cb7896f3eab1402067973
BLAKE2b-256 checksum
How to use checksums
332fe79c2e6ac4c352784a9d571768a247333a476be43fb78a767c8dc2d2b922
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp27-cp27m-manylinux2010_i686.whl

Download URL fasttext_wheel-0.9.2-cp27-cp27m-manylinux2010_i686.whl
Size 4.2 MB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
aced443e9f380b6fd3163e3bfdec43567f7024295a6c9228f91f9566671b7023
BLAKE2b-256 checksum
How to use checksums
8346ca387fe9206a9b81e2d6b5f254fecc2b28dcc8b84683764f34e039644018
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp27-cp27m-macosx_11_1_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp27-cp27m-macosx_11_1_arm64.whl
Size 291.8 kB
Tags CPython 2.7 CPython 2.7 pymalloc macosx 11 1 arm64
SHA-256 checksum
How to use checksums
2e3b0a205baee622877aa5a83b369947e68271c99b9a6eccc8fbe48948d6e6b5
BLAKE2b-256 checksum
How to use checksums
c17a513614f035783389dc99e7e53f9ceabdeee2631d9def02951c8662241925
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp27-cp27m-macosx_10_15_x86_64.whl

Download URL fasttext_wheel-0.9.2-cp27-cp27m-macosx_10_15_x86_64.whl
Size 326.2 kB
Tags CPython 2.7 CPython 2.7 pymalloc macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
efa1fae3b10b64978ba78a2cd1490627c8d861c23f39abd95393d5836e4f0c8f
BLAKE2b-256 checksum
How to use checksums
235ef2b3287f9dc873bbe41dfa2edf3dc934b056eaca0afe139612b7ded9e797
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / fasttext_wheel-0.9.2-cp27-cp27m-macosx_10_9_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL fasttext_wheel-0.9.2-cp27-cp27m-macosx_10_9_x86_64.whl
Size 330.3 kB
Tags CPython 2.7 CPython 2.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
04d5e693c25880574faf9e5a24bc19514e560dd41add7ecd88cb253f50874669
BLAKE2b-256 checksum
How to use checksums
059d6fa50db0373dfced92bf670b007b51cc326a6da3bf2df67e280785200f9c
Upload date
Uploaded using Trusted Publishing?
What is 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

Release history Release notifications | RSS feed

This release

0.9.2 This release

109 release files

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