Skip to main content

Flashlight Text bindings for Python

Project description

Flashlight Text Python Bindings

Quickstart

The Flashlight Text Python package containing beam search decoder and Dictionary components is available on PyPI:

pip install flashlight-text

To enable optional KenLM support in Python with the decoder, KenLM must be installed via pip:

pip install git+https://github.com.kpu/kenlm.git

Contents

Installation

Dependencies

We require python >= 3.6 with the following packages installed:

  • cmake >= 3.18, and make (installable via pip install cmake)
  • KenLM (must be installed pip install git+https://github.com/kpu/kenlm.git)

Build Instructions

Once the dependencies are satisfied, from the project root, use:

pip install .

Using the environment variable USE_KENLM=0 removes the KenLM dependency but precludes using the decoder with a language model unless you write C++/pybind11 bindings for your own language model.

Install in editable mode for development:

pip install -e .

(pypi installation coming soon)

Note: if you encounter errors, you'll probably have to rm -rf build dist before retrying the install.

Python API Documentation

Beam Search Decoder

Bindings for the lexicon and lexicon-free beam search decoders are supported for CTC/ASG models only (no seq2seq model support). Out-of-the-box language model support includes KenLM; users can define custom a language model in Python and use it for decoding; see the documentation below.

To run decoder one first should define options:

    from flashlight.lib.text.decoder import LexiconDecoderOptions, LexiconFreeDecoderOptions

    # for lexicon-based decoder
    options = LexiconDecoderOptions(
        beam_size, # number of top hypothesis to preserve at each decoding step
        token_beam_size, # restrict number of tokens by top am scores (if you have a huge token set)
        beam_threshold, # preserve a hypothesis only if its score is not far away from the current best hypothesis score
        lm_weight, # language model weight for LM score
        word_score, # score for words appearance in the transcription
        unk_score, # score for unknown word appearance in the transcription
        sil_score, # score for silence appearance in the transcription
        log_add, # the way how to combine scores during hypotheses merging (log add operation, max)
        criterion_type # supports only CriterionType.ASG or CriterionType.CTC
    )
    # for lexicon free-based decoder
    options = LexiconFreeDecoderOptions(
        beam_size, # number of top hypothesis to preserve at each decoding step
        token_beam_size, # restrict number of tokens by top am scores (if you have a huge token set)
        beam_threshold, # preserve a hypothesis only if its score is not far away from the current best hypothesis score
        lm_weight, # language model weight for LM score
        sil_score, # score for silence appearance in the transcription
        log_add, # the way how to combine scores during hypotheses merging (log add operation, max)
        criterion_type # supports only CriterionType.ASG or CriterionType.CTC
    )

Now, prepare a tokens dictionary (tokens for which a model returns probability for each frame) and a lexicon (mapping between words and their spellings within a tokens set).

For further details on tokens and lexicon file formats, see the Data Preparation documentation in Flashlight.

from flashlight.lib.text.dictionary import Dictionary, load_words, create_word_dict

tokens_dict = Dictionary("path/tokens.txt")
# for ASG add used repetition symbols, for example
# token_dict.add_entry("1")
# token_dict.add_entry("2")

lexicon = load_words("path/lexicon.txt") # returns LexiconMap
word_dict = create_word_dict(lexicon) # returns Dictionary

To create a KenLM language model, use:

from flashlight.lib.text.decoder import KenLM
lm = KenLM("path/lm.arpa", word_dict) # or "path/lm.bin"

Get the unknown and silence token indices from the token and word dictionaries to pass to the decoder:

sil_idx = token_dict.get_index("|")
unk_idx = word_dict.get_index("<unk>")

Now, define the lexicon Trie to restrict the beam search decoder search:

from flashlight.lib.text.decoder import Trie, SmearingMode
from flashlight.lib.text.dictionary import pack_replabels

trie = Trie(token_dict.index_size(), sil_idx)
start_state = lm.start(False)

def tkn_to_idx(spelling: list, token_dict : Dictionary, maxReps : int = 0):
    result = []
    for token in spelling:
        result.append(token_dict.get_index(token))
    return pack_replabels(result, token_dict, maxReps)


for word, spellings in lexicon.items():
    usr_idx = word_dict.get_index(word)
    _, score = lm.score(start_state, usr_idx)
    for spelling in spellings:
        # convert spelling string into vector of indices
        spelling_idxs = tkn_to_idx(spelling, token_dict, 1)
        trie.insert(spelling_idxs, usr_idx, score)

    trie.smear(SmearingMode.MAX) # propagate word score to each spelling node to have some lm proxy score in each node.

Finally, we can run lexicon-based decoder:

import numpy
from flashlight.lib.text.decoder import LexiconDecoder


blank_idx = token_dict.get_index("#") # for CTC
transitions = numpy.zeros((token_dict.index_size(), token_dict.index_size()) # for ASG fill up with correct values
is_token_lm = False # we use word-level LM
decoder = LexiconDecoder(options, trie, lm, sil_idx, blank_idx, unk_idx, transitions, is_token_lm)
# emissions is numpy.array of emitting model predictions with shape [T, N], where T is time, N is number of tokens
results = decoder.decode(emissions.ctypes.data, T, N)
# results[i].tokens contains tokens sequence (with length T)
# results[i].score contains score of the hypothesis
# results is sorted array with the best hypothesis stored with index=0.

Decoding with your own language model

One can define custom language model in python and use it for beam search decoding.

To store language model state, derive from the LMState base class and define additional data corresponding to each state by creating dict(LMState, info) inside the language model class:

import numpy
from flashlight.lib.text.decoder import LM


class MyPyLM(LM):
    mapping_states = dict() # store simple additional int for each state

    def __init__(self):
        LM.__init__(self)

    def start(self, start_with_nothing):
        state = LMState()
        self.mapping_states[state] = 0
        return state

    def score(self, state : LMState, token_index : int):
        """
        Evaluate language model based on the current lm state and new word
        Parameters:
        -----------
        state: current lm state
        token_index: index of the word
                    (can be lexicon index then you should store inside LM the
                    mapping between indices of lexicon and lm, or lm index of a word)

        Returns:
        --------
        (LMState, float): pair of (new state, score for the current word)
        """
        outstate = state.child(token_index)
        if outstate not in self.mapping_states:
            self.mapping_states[outstate] = self.mapping_states[state] + 1
        return (outstate, -numpy.random.random())

    def finish(self, state: LMState):
        """
        Evaluate eos for language model based on the current lm state

        Returns:
        --------
        (LMState, float): pair of (new state, score for the current word)
        """
        outstate = state.child(-1)
        if outstate not in self.mapping_states:
            self.mapping_states[outstate] = self.mapping_states[state] + 1
        return (outstate, -1)

LMState is a C++ base class for language model state. Its compare method (for comparing one state with another) is used inside the beam search decoder. It also has a LMState child(int index) method which returns a state obtained by following the token with this index from current state.

All LM states are organized as a trie. We use the child method in python to properly create this trie (which will be used inside the decoder to compare states) and can store additional state data in mapping_states.

This language model can be used as follows. Here, we print the state and its additional stored info inside lm.mapping_states:

custom_lm = MyLM()

state = custom_lm.start(True)
print(state, custom_lm.mapping_states[state])

for i in range(5):
    state, score = custom_lm.score(state, i)
    print(state, custom_lm.mapping_states[state], score)

state, score = custom_lm.finish(state)
print(state, custom_lm.mapping_states[state], score)

and for the decoder:

decoder = LexiconDecoder(options, trie, custom_lm, sil_idx, blank_inx, unk_idx, transitions, False)

Tests and Examples

An integration test for Python decoder bindings can be found in bindings/python/test/test_decoder.py. To run, use:

cd bindings/python/test
python3 -m unittest discover -v .

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

flashlight-text-0.0.3.dev279.tar.gz (60.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

flashlight_text-0.0.3.dev279-pp39-pypy39_pp73-win_amd64.whl (578.1 kB view details)

Uploaded PyPyWindows x86-64

flashlight_text-0.0.3.dev279-pp39-pypy39_pp73-macosx_11_0_arm64.whl (909.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

flashlight_text-0.0.3.dev279-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

flashlight_text-0.0.3.dev279-pp38-pypy38_pp73-win_amd64.whl (578.0 kB view details)

Uploaded PyPyWindows x86-64

flashlight_text-0.0.3.dev279-pp38-pypy38_pp73-macosx_11_0_arm64.whl (909.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

flashlight_text-0.0.3.dev279-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

flashlight_text-0.0.3.dev279-pp37-pypy37_pp73-win_amd64.whl (577.3 kB view details)

Uploaded PyPyWindows x86-64

flashlight_text-0.0.3.dev279-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

flashlight_text-0.0.3.dev279-cp311-cp311-win_amd64.whl (579.8 kB view details)

Uploaded CPython 3.11Windows x86-64

flashlight_text-0.0.3.dev279-cp311-cp311-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

flashlight_text-0.0.3.dev279-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

flashlight_text-0.0.3.dev279-cp311-cp311-macosx_11_0_arm64.whl (909.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

flashlight_text-0.0.3.dev279-cp311-cp311-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

flashlight_text-0.0.3.dev279-cp310-cp310-win_amd64.whl (579.5 kB view details)

Uploaded CPython 3.10Windows x86-64

flashlight_text-0.0.3.dev279-cp310-cp310-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

flashlight_text-0.0.3.dev279-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

flashlight_text-0.0.3.dev279-cp310-cp310-macosx_11_0_arm64.whl (909.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

flashlight_text-0.0.3.dev279-cp310-cp310-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

flashlight_text-0.0.3.dev279-cp39-cp39-win_amd64.whl (579.7 kB view details)

Uploaded CPython 3.9Windows x86-64

flashlight_text-0.0.3.dev279-cp39-cp39-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

flashlight_text-0.0.3.dev279-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

flashlight_text-0.0.3.dev279-cp39-cp39-macosx_11_0_arm64.whl (910.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

flashlight_text-0.0.3.dev279-cp39-cp39-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

flashlight_text-0.0.3.dev279-cp38-cp38-win_amd64.whl (579.2 kB view details)

Uploaded CPython 3.8Windows x86-64

flashlight_text-0.0.3.dev279-cp38-cp38-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

flashlight_text-0.0.3.dev279-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

flashlight_text-0.0.3.dev279-cp38-cp38-macosx_11_0_arm64.whl (909.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

flashlight_text-0.0.3.dev279-cp38-cp38-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

flashlight_text-0.0.3.dev279-cp37-cp37m-win_amd64.whl (578.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

flashlight_text-0.0.3.dev279-cp37-cp37m-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

flashlight_text-0.0.3.dev279-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

flashlight_text-0.0.3.dev279-cp37-cp37m-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

flashlight_text-0.0.3.dev279-cp36-cp36m-win_amd64.whl (578.7 kB view details)

Uploaded CPython 3.6mWindows x86-64

flashlight_text-0.0.3.dev279-cp36-cp36m-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

flashlight_text-0.0.3.dev279-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

flashlight_text-0.0.3.dev279-cp36-cp36m-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file flashlight-text-0.0.3.dev279.tar.gz.

File metadata

  • Download URL: flashlight-text-0.0.3.dev279.tar.gz
  • Upload date:
  • Size: 60.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.2

File hashes

Hashes for flashlight-text-0.0.3.dev279.tar.gz
Algorithm Hash digest
SHA256 ae2b8a23f6835796697ba0f38eb6d62464141196f72f77437aed5ab53d15877d
MD5 e0cf6dee4575cb454aac6788d4302f81
BLAKE2b-256 e43eb589c32d0cd90ba0336dbd67ff845a0e83482ba336ff19eec64d339acab2

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 847799b4c3b7ba9d025d1f5889e80de5b3ac87b6e98f272e0156278c08d605ff
MD5 0e7bb079649f91f7d79cb25fb8fa0802
BLAKE2b-256 649a2990f5c76262b590624c75bec97e4c3977429b0d88a585fa59b6466a3363

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c435e69a58a113ced034a176d1c458a19efa5108758254ad7f51f29467ed51c
MD5 6e72f61708ef1c94a07760f0be509aea
BLAKE2b-256 3b913894780c3e0d78fb12f7271c914fd6934df99db977e1531664aff04cb300

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13e0ad8d935b830237f7616c60f8a1be820df022091ba553b1f9bb3674ab497a
MD5 34baf73a03b9625ec138e27617583b94
BLAKE2b-256 112dacad6c6601cd442a5b0683aaee211a3cf899d1c11f5de7c168f16ded4043

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4b411f538b75baaa86510973f28c6b4674704950a20baff8ae7150dde06e6a8
MD5 0a3fd1c089152124bd0d88d884f1f2ad
BLAKE2b-256 44ada72b39628813f8971a0f2c8a0e55874e66d05a1d0ca14473d80647d376ab

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 25c4e1a912ee4b675dd7b59259da86e6acc22db34884a404f9b83176d6f8ad6d
MD5 209132f0e74d13e680159016a322a471
BLAKE2b-256 efc59963ada4c7e6608dd8ae1e274a2f08b7132e777776d9dfc92ff559f75703

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a687371f364cba085984d774c89cd6de3c691fc900b0db283bcb4ce19da497a9
MD5 aeaf868f83857cd07011fc77208819a2
BLAKE2b-256 509b424092ff33e4878f45d02c20acd2d2552c23694a601cf0035baeaf4854b8

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4545595c07fc19e6d16c94313c151d09a6772256773d646b5fc0e3c9928f44e0
MD5 b807897fde8330bf6dc37d9b2259ae24
BLAKE2b-256 dd59bef94a3e9c8b4b4924c5bab35d725e48bd4373c83f432e4ebeba4bdb01e7

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fdd7b17868833e47501e545463ffd2e47e4aedbf9998ec178cc4d323de289398
MD5 4166d829082c709f3095eb62904abe65
BLAKE2b-256 5d0f148a3b56342bd49d795b983e7e65b2e21c85c491a1d1b5aa76ebd0cf5ee4

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 70e63adf9bb9357919f6d3e5f8f5a76210ee074ce33222d16701ab60ff450739
MD5 4b23eba2b831cd7b0ee8d828e5c2f858
BLAKE2b-256 0b6f05278df77b7ee1000bce2651b7a3a1b0550fa66fc414b6a4f36da283784e

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1530b03457cb6193d72cadd9345b380dc7bae67dbb7a6edc080b5e4b5c2f11e7
MD5 aff0cd7b7d667f53a6057e37fbe656b5
BLAKE2b-256 8344945bf49cb0076d15ce9c356725fbf5df837afc2e60317d076745cfcb951d

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 17b1ae5b3b87c2f2388f76dbcf2bc136fc29a7c0fa6c4268fef2e4e42c315f76
MD5 5e88a8818d9c4d3ef2d6e36b380a31e3
BLAKE2b-256 367e72f8c7f2cc00d2ad6a80185485ba9853f6826c2f5c13650c66f70438f2b9

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f62af00461d82f72c8c583a78c53cfaad0b9dd2bb901e5e4df1a748506fc0f51
MD5 9bb31f7ea25e48ab1490c645f8a35bfd
BLAKE2b-256 7a0b48a2c3608ee4257de0c0ecd57f8098d32f87d2719ba3b6603b9cdb630f6c

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0968b9d539e2fbbc9176b8c9d229dcef12bb652a1e721118f24d1654f0c5d3ef
MD5 98096daa3e096900d869a18a411f5d46
BLAKE2b-256 6a725d12de30a9bbd9dd5d630553301cffb9567d317bac152337bad52504247b

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 009119bc10d5c754ae7965f06c03308d71e5732e9f918e3cee0f1af08d5fd848
MD5 270963a39b6af73174b190a08f784979
BLAKE2b-256 67b31e0541cb0584c52d37ab5406e4f891920f13177fd8d561fb3c8b4fa38809

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ff2f4523795ce9fdad3a9c8cbb0c14c110a141f75127fc4fe1867020db03293
MD5 aee2e8b25e36711cbaec491fd1230c8a
BLAKE2b-256 971426f2df19acbf4de86c2d68d5683ff1c7136c8c7b3a1b1af1e5dd27e9f81a

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9eda18e08f24d8c9dc445844b6a7ca3652d09688bd5efe004963d865f7c2570
MD5 fd228e07fff451ae8515ddd236e762b0
BLAKE2b-256 f06f16d53e721d055abe35007aad3bb05767c4811c89c1527f4b96ca20e6e2c5

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 96a68181639fa2583738f836f26f03fe95f098a65abb84e04c1350bf979fbad1
MD5 a6faaddd9d0fb36cc25b1725a395ee22
BLAKE2b-256 e04a23af0b4f678a3ca72fd252af4900dc54244b76c896c5ac3db061c6a9efd6

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d0f406864b16e75dea03fea0a4a35afa4616d0ae3bd538180440612cb1247b2c
MD5 dd8a941710745305a3cdeac51542f4cb
BLAKE2b-256 729aa0b9cfffc51253c7979f11f5d532ef25c238789cd8078cbefed713249f83

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d26299795551abfd3d0356f40769d48c314b3f88160b520cfc09cbfaa14218a6
MD5 782302188c6422582cc3f86fee592c71
BLAKE2b-256 29489942409b5da64db1eb2e5ce7d4522ec5b166cc58b606b1921848bd08c122

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fe154a600856dafc0e468288128f43f726a7c026efc325f4e456bf766289cf2
MD5 ecd28a58d47c38bc402b01982d64eeca
BLAKE2b-256 2d780b7a3aa6599557b8ee4b9c8c920a52c8f547d486fb5eccdb7d8874abea56

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf03cd4a131e8725fa6df9dea5cc864becb3b21af19707ca82349e83e7444c72
MD5 9b33940b6769f2c9ccd83626df3bd5c2
BLAKE2b-256 eb4b2d6dac594c5dd11a28c3704159ca6a3696dd55e625e39120aba4c351afef

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5da8cab834e5c3c1e3e50d9a15755b89b304dcab370b2d38164f52cb274fcf4f
MD5 df70213cf5604a2011b35fdeaeaa75d5
BLAKE2b-256 7bbe5d5027917afb14d23d101a43e5c401e861be65c9f7ed06488e74b0e13820

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ace9b019232ae7528f4365e1584be17381338ecb5e8f2cff8c0a5d3993d69768
MD5 3b29a072be1a4db8ec2c963154d03920
BLAKE2b-256 9ffecbf510c6cb0fb8259decdc1a25bb6e9d2cba709019a14cd2d804fb27133f

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb785a05b8e7e5831d77646d09fd9c3c942921de659ecd123822342adf59ebca
MD5 310a494ec467978a01a40f8792431bf9
BLAKE2b-256 f70fb90474d3d9e6649130b4a6bad6f425cc8582724f06e76fd5cfed4f5f6e39

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96316d111e9815cd38620b54bc2ddeea984cd26b649106e8402089e845ff27ce
MD5 6e65462aaf6c742e81da3a3a909e613e
BLAKE2b-256 0900f7b982d1bb7fe09ee57c0cb40c3eac0468d48601a62eed298ab597d6f6c5

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 294ef111a4652da6f21b0ef6554a69810b944b66912c7254634f1b4d4545c6f6
MD5 2928fdcbf921e2b64e2f958d54fd9532
BLAKE2b-256 6dda1299ae4ff1ef626ea5089ea44dd896d3cdb1e16db15ab3af44fbbad5d249

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 704b75388b7ec60c4e1729e105375eec5ce92348624f00935a88a35895b1e9e5
MD5 a5c92fffcfbfdc553ee136e0793b7186
BLAKE2b-256 0adcac15e2aa3f92e35279de0fd7e82d5fa3a7c69e0a4cd36266bb853e6dd4e3

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 743f28188f79f4e9bb33e89b5f773d538626bb6e97d5b707dbaa5250e9131ebb
MD5 ef6372fc352368bd462a668aa4db7b13
BLAKE2b-256 007f4ad987b58bd5039c7b395bf4768fc22384d5a1a892b84ebf90237181a42d

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d18ab37233e61a9231e00c95df71a7718a9c3710dcbd84d25560ad19fc630ab
MD5 bab6f1e0794bac6907314a4f7b428d20
BLAKE2b-256 3751ac8b11a85b89613421aff838b0304b2e5e0a1fa008828b2002a86b5748f8

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a35e156ac6d4bbc489b5c234683d7d103a088e2fa3a2a8868d35088553ce54dd
MD5 8d5e61a3ff339e9f7228ee1052a6e2be
BLAKE2b-256 3053eb5cbf9b1691ba847b1079188ee0f4f4f482991646b0585d2b7e7f754133

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f919337a782782ec6bfd84460ca12514a486798aa8b3e0367c6237bc47763729
MD5 8d828a586a6aa221b3439d8edef66b69
BLAKE2b-256 c645945e434cb909aa393e6228ff60cbf1e8d50896047c297c8434143f23f9b3

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9673c55aa72086aad407b4e03619c01c6580e9426a3a17207cfcfd25e4dcc5f7
MD5 2f325ea97c03af5c68905933aba66f5e
BLAKE2b-256 26aab6c154efc28ef7c79bf5fcb8a3c761b0127b0804d7127f07de154696e4ca

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1013787ec4554f388d1376a59ea5e101ff582d19a338f38285119d5c27fa00d0
MD5 50b50ad43f45940ba7cdf11a99032cbb
BLAKE2b-256 5dc263aaea9fcff4aada3805fcac9a38954ec56770013a94d36fe14557ccb5aa

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d11628a172a813b8fc42582a4cba596f74092ff3e18644256839707756932eb
MD5 44eb403931a6ac4aeb6d3895220936db
BLAKE2b-256 98c962a268bb92eb79a785ee7c598842f8d6d8e57b13bd0ac28676cc291490eb

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77c270e36a03d418decf8afd3c39d8928aa782521ea93bfab0afc0ba7be5e3a6
MD5 d6045a65ca5dfdbf29def305851e8f85
BLAKE2b-256 c134c3abb50305a3caab30dd3d39a937125101ac6e41ca2eb127a7e778cc93e9

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 29bd3b691a6b468fb6a14e01217c4ef740c892a4df4b8bc9da987bae60d3e77b
MD5 7d8267022319ec7589eac981007628ad
BLAKE2b-256 9496de72e92efab57691d6b2d9355ca89918f758fb222c300ef1659a80077b56

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 78ae4cb1f2de8de73f2ac70766b8ea44f6f1b1e83bafafd5552557e9db5fcbcd
MD5 13140466fb61391768f3313aee8a5f6a
BLAKE2b-256 cc515bee0b70f3716dbcfe84d553fb686dd8f8b8cf1a7821de55ed1aa6b6fad3

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e39359a9497297dd33570b9ddff1c963f6d59a93ee2e963b5eabf00831a614f8
MD5 6e4ca16e0cba9b25ad05b1e7daedbd89
BLAKE2b-256 1c40e02a8fa18993def13cb16fd7152af1030eb252a0840ba595f4b6cc715c9f

See more details on using hashes here.

File details

Details for the file flashlight_text-0.0.3.dev279-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for flashlight_text-0.0.3.dev279-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e0bc75a5684e34b43cdd67c38b5a3c049ce52dcbacd0f8ad3e8e0c764717d5b
MD5 6045bbe28fc0239f95cf4de89bdb72a2
BLAKE2b-256 b1cc410263ddbc776ae8bd6681535910dda607a9609fb769cb2a4ec9a8576185

See more details on using hashes here.

Supported by

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