Bag of Factors allow you to analyze a corpus from its self_factors.
Project description
Bag of Factors
Bag of Factors allow you to analyze a corpus from its factors.
Free software: GNU General Public License v3
Documentation: https://balouf.github.io/bof/.
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
fuzzywuzzy (https://github.com/seatgeek/fuzzywuzzy)
rapidfuzz (https://github.com/maxbachmann/rapidfuzz)
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.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
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
Built Distributions
File details
Details for the file bof-0.3.4.tar.gz
.
File metadata
- Download URL: bof-0.3.4.tar.gz
- Upload date:
- Size: 157.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1683c3023ec8e05b4f908b87889f3c30033cf25c09eea9a37ed5c63bbe924fc8 |
|
MD5 | d59eae81321844fa916c6c146599e052 |
|
BLAKE2b-256 | b3e4961515e83b7884f198a3af43ee2b992af36915ff1f0df381114cf42aca72 |
File details
Details for the file bof-0.3.4-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: bof-0.3.4-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 243.4 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba79d987bf6c1b4e61ca42bede5641482876bec8e36c4b0c241a80eb941a07f5 |
|
MD5 | 6fe02e3c4d07ad5728ce287c269dda14 |
|
BLAKE2b-256 | 7205799ca3d43a2bf9550e8a8a11500e05050bcf0fcf739fd8cbc736b77b3ecb |
File details
Details for the file bof-0.3.4-cp39-cp39-win32.whl
.
File metadata
- Download URL: bof-0.3.4-cp39-cp39-win32.whl
- Upload date:
- Size: 227.9 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ec8af7e47cfa4d95fbab69cb54a47ae7c91fe169ea5728290e707a6a3e881a3 |
|
MD5 | e2f19faa39639e4fa9402ec2bc637b56 |
|
BLAKE2b-256 | 6cefd3d3cfca82a606bfee430051e3e684c5b90c0edf38b1a367f6981c536658 |
File details
Details for the file bof-0.3.4-cp39-cp39-manylinux2010_x86_64.whl
.
File metadata
- Download URL: bof-0.3.4-cp39-cp39-manylinux2010_x86_64.whl
- Upload date:
- Size: 661.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c688f97cc7fd7cede3ce6acf56d968404acb9b6307e933db27261ce3711131b |
|
MD5 | ca07de6d68b2bbc5770140b38d4d6e83 |
|
BLAKE2b-256 | f4d5919c4a6827c5ebe5224d44c7c3df35cc8d289fb182cefa7e9a06f980e0fe |
File details
Details for the file bof-0.3.4-cp39-cp39-manylinux2010_i686.whl
.
File metadata
- Download URL: bof-0.3.4-cp39-cp39-manylinux2010_i686.whl
- Upload date:
- Size: 635.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f56bdf0af5ad03dbcf32ac20aa87da527afc110b81afb9e41ebcc76949309ae5 |
|
MD5 | ed8b78cdbf9785ec5c7860eab85bcaa4 |
|
BLAKE2b-256 | 91acd37bd771d0869536242e61326c5cd26c0037e38676a90126479b98da1762 |
File details
Details for the file bof-0.3.4-cp39-cp39-manylinux1_x86_64.whl
.
File metadata
- Download URL: bof-0.3.4-cp39-cp39-manylinux1_x86_64.whl
- Upload date:
- Size: 661.3 kB
- Tags: CPython 3.9
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d9ad8c9e846baca140d603ff576ca9f3915f0196a08c33927eb27c9a32ce930 |
|
MD5 | c04b06441cb8ab07acc1bddca8935236 |
|
BLAKE2b-256 | adfc610efbbf04ad6856e88d092c2a64b3c9de7e2b8a1ff39a9ba7623db46ea3 |
File details
Details for the file bof-0.3.4-cp39-cp39-manylinux1_i686.whl
.
File metadata
- Download URL: bof-0.3.4-cp39-cp39-manylinux1_i686.whl
- Upload date:
- Size: 635.1 kB
- Tags: CPython 3.9
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 787adc02511153d156c4d51258f770815356e3649111a9798542cddafefbfb3f |
|
MD5 | 6bb85c949ff741a68c4963cdd9a3ce65 |
|
BLAKE2b-256 | 89695f447330a77081d8f57d5cfb11a622d747cd92d57af806f0ff2500eb5b60 |
File details
Details for the file bof-0.3.4-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: bof-0.3.4-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 252.5 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d2ccde5d675d8e061ced5f82db62db1e88579738c6508df864cc7103e15eaf7 |
|
MD5 | 9c2c85de329a8d5ee801e13fe214d5e4 |
|
BLAKE2b-256 | 13cc1414ea8e0f575c6bc91a5499c8c5701846e2e4f791168c10b412ce585bab |
File details
Details for the file bof-0.3.4-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: bof-0.3.4-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 244.6 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 952bd3439ebb4028909e0bb33dd50b3c60df156780562ab5c752e40bc2944bcb |
|
MD5 | 455a49c2b4ad055f4ef3395a564aa002 |
|
BLAKE2b-256 | db40780d317c9c58467285fa2c550da22c140b96ca640bfc5ab6d56991431870 |
File details
Details for the file bof-0.3.4-cp38-cp38-win32.whl
.
File metadata
- Download URL: bof-0.3.4-cp38-cp38-win32.whl
- Upload date:
- Size: 228.5 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a9949981aa03998e42058ad6d1a42136e01351f5cc4bb7c4f247aa82639e010 |
|
MD5 | f954d775bbc7ffd0d30f4f7276dba2fa |
|
BLAKE2b-256 | 3cf452b23ec003b254a851aef6a8be92370ac947cd860d4ea141f79091fdbbdf |
File details
Details for the file bof-0.3.4-cp38-cp38-manylinux2010_x86_64.whl
.
File metadata
- Download URL: bof-0.3.4-cp38-cp38-manylinux2010_x86_64.whl
- Upload date:
- Size: 681.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2dd9de53c79361f6509f92e19a75775ce5d1a1b8559643b9b4b2af5213637acf |
|
MD5 | 671051a87bd7c46d474e90199e37b877 |
|
BLAKE2b-256 | 581721a9cbbab5c27a0fc8138cdb1b3a59a700bf1b3ff88889fa2a13a6b88961 |
File details
Details for the file bof-0.3.4-cp38-cp38-manylinux2010_i686.whl
.
File metadata
- Download URL: bof-0.3.4-cp38-cp38-manylinux2010_i686.whl
- Upload date:
- Size: 653.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a4e1888b93b8ddd5fe3ec6ef109b6a100afff27b3c5e74ad93b8e1f6f441447 |
|
MD5 | b715fc1480c3877121eeefede5eb9938 |
|
BLAKE2b-256 | 52c6e3514e9c3266dba4f3806156d8e52ccdb0325a8f16d6b2caa9299e502f07 |
File details
Details for the file bof-0.3.4-cp38-cp38-manylinux1_x86_64.whl
.
File metadata
- Download URL: bof-0.3.4-cp38-cp38-manylinux1_x86_64.whl
- Upload date:
- Size: 681.0 kB
- Tags: CPython 3.8
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f34ddf1b67a1ef77028a835d8009f433ab56914d1643a9e6b51945fe3d26721 |
|
MD5 | b5b3c29c48c6b1b2522b64c00f076269 |
|
BLAKE2b-256 | b7c100e7e457aae317bb4fd45690216e79912292d538f534e7e712ea50d4068b |
File details
Details for the file bof-0.3.4-cp38-cp38-manylinux1_i686.whl
.
File metadata
- Download URL: bof-0.3.4-cp38-cp38-manylinux1_i686.whl
- Upload date:
- Size: 653.0 kB
- Tags: CPython 3.8
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ccfdf1c94eb0432b1adaf6376bf8ae39d613b0b10ab4b8f927b99a65ddd448ff |
|
MD5 | 557fa33ed11325d8688897fc6c5775db |
|
BLAKE2b-256 | 7e777d47aa7d46bf34b2b953a01b69c6a1f2baf00a67fc9fcbdf2c17ff03c60b |
File details
Details for the file bof-0.3.4-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: bof-0.3.4-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 249.9 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2db1e93f25c583047eda23343f85f782f87664f9572fc3c78ee5667a0efe21cd |
|
MD5 | c95a96c9634d8f027c8a18a5d07682ec |
|
BLAKE2b-256 | 53c52ca7ef93b04455ca25eadc87fd7dd349f59c95955f4ad2c0bf7ae5bbcbcf |
File details
Details for the file bof-0.3.4-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: bof-0.3.4-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 241.7 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3a729f97d95bff70f95cb01afaf5248f1b71d157e06ec06c1db21fad499a820 |
|
MD5 | ffc163ff4d56179fbd3ed4c498c39837 |
|
BLAKE2b-256 | 10e76854bc47d8e3cb37f6e59aa9c480305c5843f83914e7fd85e47bc61fbff2 |
File details
Details for the file bof-0.3.4-cp37-cp37m-win32.whl
.
File metadata
- Download URL: bof-0.3.4-cp37-cp37m-win32.whl
- Upload date:
- Size: 225.3 kB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 789350e4f6c16d17e2ce2a869ee9a6fdd4065abe93662c056cbb3efff1678902 |
|
MD5 | 0e2f0c13744b183dfe6518d6d3cc4940 |
|
BLAKE2b-256 | 874be1b45d2062431cc2a1ac384a7158c458726005351f185bd8c3b3acce1a31 |
File details
Details for the file bof-0.3.4-cp37-cp37m-manylinux2010_x86_64.whl
.
File metadata
- Download URL: bof-0.3.4-cp37-cp37m-manylinux2010_x86_64.whl
- Upload date:
- Size: 619.0 kB
- Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6748a52c74447e163110fa22f9b17649c2459f68595355b68d58fc04f290398d |
|
MD5 | bc019bc3622b26e08c3216af32ee3fd5 |
|
BLAKE2b-256 | 53384eed757be2a6fd90a1afd6043d736ab6184cfb4c484258b422b22c61b357 |
File details
Details for the file bof-0.3.4-cp37-cp37m-manylinux2010_i686.whl
.
File metadata
- Download URL: bof-0.3.4-cp37-cp37m-manylinux2010_i686.whl
- Upload date:
- Size: 591.0 kB
- Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13dac3c3c2895575a4d4dfa15588d47b1c4eaab0e0d922e5229c85d4d8340e20 |
|
MD5 | fb82bb840553c69c6f534d63f037d261 |
|
BLAKE2b-256 | bb40539a97010513071ada40f5336dcfe82d8779883e8a00e93f230e89eab086 |
File details
Details for the file bof-0.3.4-cp37-cp37m-manylinux1_x86_64.whl
.
File metadata
- Download URL: bof-0.3.4-cp37-cp37m-manylinux1_x86_64.whl
- Upload date:
- Size: 619.0 kB
- Tags: CPython 3.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3b6ffb2d0325d9866ec93b3ec9aeeae086992979851239f4cea35bc43b8913b |
|
MD5 | f0822314324d4daec4a3f7c872683241 |
|
BLAKE2b-256 | 1ada19a9c57b9a348d360ff08cccf5e14d2d830a3cee95ebaab83a109a9372ca |
File details
Details for the file bof-0.3.4-cp37-cp37m-manylinux1_i686.whl
.
File metadata
- Download URL: bof-0.3.4-cp37-cp37m-manylinux1_i686.whl
- Upload date:
- Size: 591.0 kB
- Tags: CPython 3.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc388e11a80d18033396bef4ba8429e7c5a752754b0a042ea9bf663fb6709550 |
|
MD5 | 54ddc98e26ef139c8fc681fd4ef58221 |
|
BLAKE2b-256 | 9c0360accc3265f3a007ea0fcb59d4e64d64ec2e1630472dfccd7c329df00469 |
File details
Details for the file bof-0.3.4-cp37-cp37m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: bof-0.3.4-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 249.2 kB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75d01df19a4a90714bf6d418c12c6d87e96fe9f4fd182c0611e8caf9339b70e3 |
|
MD5 | d88f6282484024eb278ede81291a5c13 |
|
BLAKE2b-256 | d5cb9bc592aa2a3a229c81d5303b1d42eb5fa40449d02fc925c735612ddb5f36 |
File details
Details for the file bof-0.3.4-cp36-cp36m-win_amd64.whl
.
File metadata
- Download URL: bof-0.3.4-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 241.6 kB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 694768ac737855ebab7524a718be55f8b32652abdcf569df788d47d6d32409db |
|
MD5 | 7dbd1714bd6b1bf707f754cbdd61ed7d |
|
BLAKE2b-256 | e0af6e19e4e1cebeb52f1d104610f1421946ca46a4749b8519e551107602f268 |
File details
Details for the file bof-0.3.4-cp36-cp36m-win32.whl
.
File metadata
- Download URL: bof-0.3.4-cp36-cp36m-win32.whl
- Upload date:
- Size: 225.2 kB
- Tags: CPython 3.6m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0d79b006dde49a970fac5a5d27744e00434ffe8cd6893f01f83f47931857be4 |
|
MD5 | e12f476edb725498185b7e5186977cde |
|
BLAKE2b-256 | 5633c8f9df4678d008e4f77c853e57c531812d92a3d33a687c47f12a79c512a0 |
File details
Details for the file bof-0.3.4-cp36-cp36m-manylinux2010_x86_64.whl
.
File metadata
- Download URL: bof-0.3.4-cp36-cp36m-manylinux2010_x86_64.whl
- Upload date:
- Size: 619.6 kB
- Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d5eb786ec7231ff1a31cfc0571bd75a822451ff8b6e5a7975b92aec1da6bf45 |
|
MD5 | 8adde954c41bdb8b501681d6aecd6d26 |
|
BLAKE2b-256 | 295ed8b9cd27c872522b2e2e7f98fc623dade2e8e2081fbce2a306d8e19a4c7a |
File details
Details for the file bof-0.3.4-cp36-cp36m-manylinux2010_i686.whl
.
File metadata
- Download URL: bof-0.3.4-cp36-cp36m-manylinux2010_i686.whl
- Upload date:
- Size: 591.0 kB
- Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2212e9e7f9b5408ce7d3d9c474761a35cfdd73674cd37d3081d8075e4585b11c |
|
MD5 | 07bd84934d0d01b29466d6bc0607a514 |
|
BLAKE2b-256 | 2446b556a5aafb4e22dfb3b472dda57991e59f0098703147c576684c686dc6b7 |
File details
Details for the file bof-0.3.4-cp36-cp36m-manylinux1_x86_64.whl
.
File metadata
- Download URL: bof-0.3.4-cp36-cp36m-manylinux1_x86_64.whl
- Upload date:
- Size: 619.6 kB
- Tags: CPython 3.6m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7059afffb90f9b9b270dcd404652524e28745bd3ae5087cee5f2ea21fd14b4e1 |
|
MD5 | 7f95cbfe6a2b62b55e69a4639bbac753 |
|
BLAKE2b-256 | 3f51c20c29e6f55f714753e4f8435814ba16a2555c4d260a2fe04b7a15a97797 |
File details
Details for the file bof-0.3.4-cp36-cp36m-manylinux1_i686.whl
.
File metadata
- Download URL: bof-0.3.4-cp36-cp36m-manylinux1_i686.whl
- Upload date:
- Size: 591.0 kB
- Tags: CPython 3.6m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d05d37658534bfea14e8b38826abba04729d73ae56935a1b1378c0d7e70b82b |
|
MD5 | a5f6b3a9c1a4f4f199fc5dcb951ce5c9 |
|
BLAKE2b-256 | 86266cdc20bae2cfcd1e10e2b90634cebbcaa3024b7d5950aad5f03e9f391d37 |
File details
Details for the file bof-0.3.4-cp36-cp36m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: bof-0.3.4-cp36-cp36m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 252.4 kB
- Tags: CPython 3.6m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b0413016aec28fc33dc83b4c92ff28a52fe74321a22c412ebc24dc4e310fc56d |
|
MD5 | 21baef46d9122de7130e7140cb7405eb |
|
BLAKE2b-256 | b5be8ffd6022bfd6ab3f2472a3b81c90dacc7b42785b732cc20731dd9ef91d86 |