Skip to main content

Bag of Factors allow you to analyze a corpus from its self_factors.

Project description

Bag of Factors

PyPI Status Build Status Documentation Status Code Coverage

Bag of Factors allow you to analyze a corpus from its factors.

Features

Feature Extraction

The feature_extraction module mimicks the module https://scikit-learn.org/stable/modules/generated/sklearn.feature_extraction.text with a focus on character-based extraction.

The main differences are:

  • it is slightly faster;

  • the features can be incrementally updated;

  • it is possible to fit only a random sample of factors to reduce space and computation time.

The main entry point for this module is the CountVectorizer class, which mimicks its scikit-learn counterpart (also named CountVectorizer). It is in fact very similar to sklearn’s CountVectorizer using char or char_wb analyzer option from that module.

Fuzz

The fuzz module mimicks the fuzzywuzzy-like packages like

The main difference is that the Levenshtein distance is replaced by the Joint Complexity distance. The API is also slightly change to enable new features:

  • The list of possible choices can be pre-trained (fit) to accelerate the computation in the case a stream of queries is sent against the same list of choices.

  • Instead of one single query, a list of queries can be used. Computations will be parallelized.

The main fuzz entry point is the Process class.

Getting Started

Look at examples from the reference section.

Credits

This package was created with Cookiecutter and the francois-durand/package_helper_2 project template.

History

0.3.5 (2021-04-08): ARM64

  • Attempt to update PyPi with Mac M1 compatible wheels.

0.3.4 (2021-01-05): Cleaning

  • Renaming process.py to fuzz.py to emphasize that the module aims at being an alternative to the fuzzywuzzy package.

  • Removed modules FactorTree and JC. What they did is now essentially covered by the feature_extraction and fuzz modules.

  • General cleaning / rewriting of the documentation.

0.3.3 (2021-01-01): Cython/Numba balanced

  • All core CountVectorizer methods ported to Cython. Roughly 2.5X faster than sklearn counterpart (mainly because some features like min_df/max_df are not implemented).

  • Process numba methods NOT converted to Cython as Numba seems to be 20% faster for csr manipulation.

  • Numba functions are cached to avoid compilation lag.

0.3.2 (2020-12-30): Going Cython

  • First attempt to use Cython

  • Right now only the fit_transform method of CountVectorizer has been cythonized, for testing wheels.

  • If all goes well, numba will probably be abandoned and all the heavy-lifting will be in Cython.

0.3.1 (2020-12-28): Simplification of core algorithm

  • Attributes of the CountVectorizer have been reduced to the minimum: one dict!

  • Now faster than sklearn counterpart! (The reason been only one case is considered here so we can ditch a lot of checks and attributes).

0.3.0 (2020-12-15): CountVectorizer and Process

  • The core is now the CountVectorizer class. Lighter and faster. Only features are kept inside.

  • New process module inspired by fuzzywuzzy!

0.2.0 (2020-12-15): Fit/Transform

  • Full refactoring to make the package fit/transform compliant.

  • Add a fit_sampling method that allows to fit only a (random) subset of factors

0.1.1 (2020-12-12): Upgrades

  • Docstrings added

  • Common module (feat. save/load capabilities)

  • Joint Complexity module

0.1.0 (2020-12-12): First release

  • First release on PyPI.

  • Core FactorTree class added.

Project details


Download files

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

Source Distribution

bof-0.3.5.tar.gz (157.8 kB view details)

Uploaded Source

Built Distributions

bof-0.3.5-cp39-cp39-win_amd64.whl (245.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

bof-0.3.5-cp39-cp39-win32.whl (229.3 kB view details)

Uploaded CPython 3.9 Windows x86

bof-0.3.5-cp39-cp39-manylinux2010_x86_64.whl (663.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

bof-0.3.5-cp39-cp39-manylinux2010_i686.whl (636.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

bof-0.3.5-cp39-cp39-manylinux1_x86_64.whl (663.3 kB view details)

Uploaded CPython 3.9

bof-0.3.5-cp39-cp39-manylinux1_i686.whl (636.6 kB view details)

Uploaded CPython 3.9

bof-0.3.5-cp39-cp39-macosx_11_0_arm64.whl (242.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

bof-0.3.5-cp39-cp39-macosx_10_9_x86_64.whl (254.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

bof-0.3.5-cp39-cp39-macosx_10_9_universal2.whl (341.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

bof-0.3.5-cp38-cp38-win_amd64.whl (246.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

bof-0.3.5-cp38-cp38-win32.whl (229.9 kB view details)

Uploaded CPython 3.8 Windows x86

bof-0.3.5-cp38-cp38-manylinux2010_x86_64.whl (683.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

bof-0.3.5-cp38-cp38-manylinux2010_i686.whl (654.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

bof-0.3.5-cp38-cp38-manylinux1_x86_64.whl (683.2 kB view details)

Uploaded CPython 3.8

bof-0.3.5-cp38-cp38-manylinux1_i686.whl (654.8 kB view details)

Uploaded CPython 3.8

bof-0.3.5-cp38-cp38-macosx_10_9_x86_64.whl (251.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

bof-0.3.5-cp37-cp37m-win_amd64.whl (243.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

bof-0.3.5-cp37-cp37m-win32.whl (226.8 kB view details)

Uploaded CPython 3.7m Windows x86

bof-0.3.5-cp37-cp37m-manylinux2010_x86_64.whl (621.2 kB view details)

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

bof-0.3.5-cp37-cp37m-manylinux2010_i686.whl (593.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

bof-0.3.5-cp37-cp37m-manylinux1_x86_64.whl (621.2 kB view details)

Uploaded CPython 3.7m

bof-0.3.5-cp37-cp37m-manylinux1_i686.whl (593.0 kB view details)

Uploaded CPython 3.7m

bof-0.3.5-cp37-cp37m-macosx_10_9_x86_64.whl (250.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

bof-0.3.5-cp36-cp36m-win_amd64.whl (241.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

bof-0.3.5-cp36-cp36m-win32.whl (225.6 kB view details)

Uploaded CPython 3.6m Windows x86

bof-0.3.5-cp36-cp36m-manylinux2010_x86_64.whl (620.1 kB view details)

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

bof-0.3.5-cp36-cp36m-manylinux2010_i686.whl (592.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

bof-0.3.5-cp36-cp36m-manylinux1_x86_64.whl (620.1 kB view details)

Uploaded CPython 3.6m

bof-0.3.5-cp36-cp36m-manylinux1_i686.whl (592.0 kB view details)

Uploaded CPython 3.6m

bof-0.3.5-cp36-cp36m-macosx_10_9_x86_64.whl (249.8 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file bof-0.3.5.tar.gz.

File metadata

  • Download URL: bof-0.3.5.tar.gz
  • Upload date:
  • Size: 157.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5.tar.gz
Algorithm Hash digest
SHA256 2e50b8a52af4b2484cb8300007fc5d07284250cc25d24b5aad6848627f844b4a
MD5 c0f5edc82bcb039912fa00bbcecd1164
BLAKE2b-256 86afc8970349bab0d56a3017e8f0e10b9f6882c07e73ea414b0744c266c6c293

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: bof-0.3.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 245.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 acd74a4e7d8ed871e0f3472c2eb412a1457fd4a5993216137cc5d0a2f16cfd2a
MD5 1a471da2c86fdc7dfe7d0d199f18e76c
BLAKE2b-256 7b43dbbe087a7abd981dae1ef9e65a5f20681e9712c3434d81892d71fc213970

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: bof-0.3.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 229.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 16c663932042bf377d0c66efd415a29b124e32e58c99aaba042c58469779f026
MD5 d14ea98a9fdfbe4226f55321f18a924b
BLAKE2b-256 93c15b9e11642f6dd4f942aef1e6a880304c184be5ea006631a76ab65c6ddd92

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: bof-0.3.5-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 663.3 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0d74179f6805d19e0db6f414cd70183edd390dc094052c1e77e6f761cb68f56f
MD5 c649e51a8b786c70ba09f9141fae29c1
BLAKE2b-256 0d1198f53f0532e26bafbf4add534b22b115bcfb219d0874258915c7a0293069

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: bof-0.3.5-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 636.6 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 114070674b180b0b083efdb311108076967f81bd32609180c74672b4b6f759d6
MD5 bc0d92423f066ac0c5aa7378cf2cd185
BLAKE2b-256 ba68171e20068ed8151cbd3fab96d0f8887c8df81bb87a1d3b0d6d91afa58c88

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: bof-0.3.5-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 663.3 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 114429ba1eeeb3280ccf69841f2c6736ef5c2accee1f9ff406d659b5c200c5c5
MD5 da92c77d2abafc4813eb5dc06e432b51
BLAKE2b-256 7f4fe420c29d7d18906e5754489f4c53b0da15c485c8684f67ef275ff376b802

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: bof-0.3.5-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 636.6 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 85cb5bda4e95b94c9ab1b33cd544f8c4cb534d541b60c8a6ae4489743eedec30
MD5 08540dff6a1a4f9d46bdbc21378c831b
BLAKE2b-256 3b03661d4d0fc041455449f8b1c0cbdb33b4ef5581b057f68160e0d03b655e27

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for bof-0.3.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc868c5ae272004ac29d8ac0397ef56ce6b3aa9327f512e7d44a8fd3ade44c2d
MD5 796e2373cf22020f6b53aec166d262f9
BLAKE2b-256 3942fdc8725aa7019e11de09a05554b538eb0a506dea2c15d8b51627da5d37cf

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: bof-0.3.5-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 254.3 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c79959710a283b5b154b40bdfdb29603db46158825c5dfb36e5966bf62ef7278
MD5 0b1baff2eb9b94a6a6226be731d29cd3
BLAKE2b-256 6d5fc89539ab6560bd046cb03e20c1f79aba7d54ab405c43420b1696df19a2b5

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: bof-0.3.5-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 341.8 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 174417d1f174d0e086258d89a1d29ab55e97e8cc47ad02487d20c272d5a600a7
MD5 f7e017dd20b547646157f9d1e44114b4
BLAKE2b-256 6d56af9e25adcb64f3b9e19b75158f177a57032a406cbcd7c09a539367e6a3ac

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: bof-0.3.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 246.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 74358213fc090765e9dca39f741e41c10dafb9e0eef088b67d83405a229b9dcf
MD5 6f1f7a22dcdfc0424575b58550b3b92a
BLAKE2b-256 fb66dc26e3a9eeee24847941d08498c9dbd5fd57d2a1c944bc2f2c3924c842ad

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp38-cp38-win32.whl.

File metadata

  • Download URL: bof-0.3.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 229.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5d3e225c92cd976ce827a0b93081676ffc246b4bba5210cde0315ba25fe343de
MD5 4c048ea7fbdf5e20f994619559d61676
BLAKE2b-256 764c393242bd5892920061f581490282f6c70c313d62e6e1ab774285e23c1461

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: bof-0.3.5-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 683.2 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0d67130090200de97c196fa9f8745ce05ec8b3863bcd5e322d422f40b2301350
MD5 e4a6c94abcf5233bed0fdb63aed4b8b5
BLAKE2b-256 7b7f13353b3ec16c974cfaa29afb561f732d0837659788e6d696946ec088677a

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: bof-0.3.5-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 654.8 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ebe15b55a85618f5c444567b76c6429d61c2e53df6cf1ddec20e233e8464d3b4
MD5 4ae2b4a24b533bfd03257a60e398547d
BLAKE2b-256 2f413c8f4baf5891a5d21b4fb0aa89a41feeda05d2e9637b35157304e2ec0be4

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: bof-0.3.5-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 683.2 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8e1b6ed1b4d0608244e53decedc3e55984abd103b723e919a4c7bc3c1437a42f
MD5 af7493b933571df46de9027408e80b42
BLAKE2b-256 61494fd38575709f31ee822b173455a9f4be6c8f56ba4e32a89ac15d838e2286

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: bof-0.3.5-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 654.8 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7be844f1d6b878144700dc9a49abe0f44cbabc3d18cd12b78c9e231de4b92dca
MD5 8e0451632a1be7e574e7af24bab2b56d
BLAKE2b-256 7c865a803596e7bafc22b5f7eee2b79e99f7c1e36dcf0e2a94c3cb7c492e04a3

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: bof-0.3.5-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 251.6 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 347ee4d62064a3e8e09c64ab3903d3ee9e0fc9a9b98bfcd743d6fe36a9562d2b
MD5 a810237ce39da25151cab667dcfeaba2
BLAKE2b-256 e1fb603ecb929e7db59fcb0fd70fd511bc95c0f6600434e589e471ed78aff19f

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: bof-0.3.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 243.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 90f8ee5e82b0b4fff3f5376f792b8f1cd7d1609d88f30d69617897b286c647d4
MD5 a5d99a6392851c7e064e9176b60ddc6c
BLAKE2b-256 487219934f8538984ee7c99dd1c84b56ce26229219a00a29d9bf535c38ddc521

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp37-cp37m-win32.whl.

File metadata

  • Download URL: bof-0.3.5-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 226.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ebc99c4014f7b84cf9b54af142af49847c1ac97e722e2ffa166fea3c0119e1f5
MD5 7873ec74b0a023a4b128deb5f4e4a5ee
BLAKE2b-256 7d6a5f55b7ced5d4ac1d1dcd58fcfc20918bee0afb27c3678eba45ed19cd033e

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: bof-0.3.5-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 621.2 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 efb44e2aeabeb156b7f5738c6d78a1a4c89e9bf8cc56a844fd5d8a209aaa33c0
MD5 f085bf2f04298db02136502fe4baf026
BLAKE2b-256 f5c31771982a4b5b96a4c8b34ab507eee995e68d3d864a27971cb645c691960f

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: bof-0.3.5-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 593.0 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d02cf47cfedf68a4eb79425e34aedeb49a7866c75e8d19d381dfd5f6db5c6238
MD5 c8ac9f1bd40416b9d8def06d1e31e1ca
BLAKE2b-256 51b9ffcb0be1d03ae0fd445892a3eb16a898d500afd0d51b43bba86f0a85d529

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: bof-0.3.5-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 621.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7d929aeb6288177a8dd1dc489b70cf3ad74bc4655d5e70f4ca3eb5373b35151e
MD5 594cd785d61d1a05a2eacb04bd125c34
BLAKE2b-256 3e156a55b0f61db72febfe9c72d33512b9c5341b2959deca83d4ebb25da34637

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: bof-0.3.5-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 593.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 09bb6599b0c8dc58586aa4c41bdca26faf6c536d1cbeec5fe172ccf01682bc1c
MD5 7a516ab34e6b4e26e49c1f4618b8fe76
BLAKE2b-256 4becd37ad0d427176dbd3e4e5e74c08775c3247c6c32590ffecc6e2250c9dfc6

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: bof-0.3.5-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 250.9 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95947b1bc625e84bf4c0bc011cbc80bc5c8d7ad97093ab95d553607e44717898
MD5 28eb3f92674e82cd70da0fa30a1dac4d
BLAKE2b-256 1a6b5afd2f8e6942308fcab55389ab81d1e782d654c3dd8608e7bdc86861fe15

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: bof-0.3.5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 241.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 455e5f3cea8cd6c4be8aab19b294a3513dbe672eaf0d606a8e32ed8dfc0a4c27
MD5 9cb0db619db1b7e42e7f8ddb63e77e98
BLAKE2b-256 fac81a4052e6be8e93e20e1de1eb9daf01ed1bc89d15ff0b9ac78df9caef2306

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp36-cp36m-win32.whl.

File metadata

  • Download URL: bof-0.3.5-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 225.6 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ba08a820e10f532a12c9e6143942332f87738781050d2bb98aac90eca73c405a
MD5 34d2cc4f7774c981924e2e29f43c6617
BLAKE2b-256 a6a39f3ef8af8871d948c6467fcb3b65fbb84348689940965c7e2818ef07f0b4

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: bof-0.3.5-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 620.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 292fcbb13f1f4d4732eac41994ff0bba598316969333c72563d6669e9eaf2940
MD5 2d3a4ebbe0bf38d64e260b3fc80fe123
BLAKE2b-256 3bc593b004840902d90566fabac765c3cb9fcf57e4b189d92747c85f37e75538

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: bof-0.3.5-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 592.0 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fc39f049fea5d76d616c325c77d3864c35466adaee1d146ef6a57582f9d4c920
MD5 1e3a56f544fa61597b7f3565fa6be714
BLAKE2b-256 ebbf0968cd0dcd1a81c5131300ebb8c3fc732b39ca39e7ce44dfd85207ca8c15

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: bof-0.3.5-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 620.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b796c14d25c7c9ceb7263a1f0267740a65f400d7e78b630ea590ab32ca9706cd
MD5 567db12251d1787a21b1ee513b439098
BLAKE2b-256 93c4fa30d5430730696b1f34d23f2cf1fb357becbd8d81277a44d54840a9bcbd

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: bof-0.3.5-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 592.0 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 840a1ee60d5058a0d8755995210b0452119a1e4ebb0e4bfe54f6f0b1d578b0a5
MD5 4ce5993c6194acb1f9920e2021516344
BLAKE2b-256 be1ef5af670d081cbac28213d0f44f66f62ef46288e2dc6bfa6238c080c8c91e

See more details on using hashes here.

File details

Details for the file bof-0.3.5-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: bof-0.3.5-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 249.8 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for bof-0.3.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 772d42ab4ae639537285181a4c8500d2856587228deaa24ed85f85dcb5a40d57
MD5 f48ded984670138694cb896326ce4ef7
BLAKE2b-256 900aa96ee350ca7c46d0b69bba4d9a6f02cc1789c8a5c8280fbe04704c8b5c9e

See more details on using hashes here.

Supported by

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