Hyper Fast and safe image manipulation library for python. Powered by rust.
Project description
Polaroid
Hyper fast image processing
This is a Work in Progress. DO NOT USE in production.
For all the examples, meme.png is used. Please replace that with whatever Image you use
Via File System
from polaroid import Image
im = Image("meme.png")
im.solarize()
im.save("solar.png")
Using Bytes
# Just an example use any library to supply bytes
from polaroid import Image
import requests
byt = requests.get("https://dagpi.xyz/dagpi.png").content
im = Image(byt)
im.filter("dramatic")
ret_byt = im.save_bytes()
Properties
from polaroid import Image
im = Image("meme.png")
h = im.height
w = im.weight
wi,hei = im.size
image_format = im.format
mode = im.mode
Methods
features = ['add_noise_rand', 'adjust_contrast', 'alter_blue_channel', 'alter_channel', 'alter_channels', 'alter_green_channel', 'alter_red_channel', 'apply_gradient', 'b_grayscale', 'blend', 'box_blur', 'brighten', 'colorize', 'crop', 'decompose_max', 'decompose_min', 'desaturate', 'detect_horizontal_lines', 'detect_vertical_lines', 'edge_detection', 'edge_one', 'emboss', 'filter', 'fliph', 'flipv', 'g_grayscale', 'gaussian_blur', 'grayscale', 'grayscale_human_corrected', 'grayscale_shades', 'horizontal_strips', 'identity', 'inc_brightness', 'invert', 'laplace', 'monochrome', 'noise_reduction', 'offset', 'offset_blue', 'offset_green', 'offset_red', 'pink_noise', 'prewitt_horizontal', 'primary', 'r_grayscale', 'remove_blue_channel', 'remove_green_channel', 'remove_red_channel', 'replace_backround', 'resize', 'rotate180', 'rotate270', 'rotate90', 'save', 'save_bytes', 'selective_desaturate', 'selective_hue_rotate', 'selective_lighten', 'selective_saturate', 'sepia', 'sharpen', 'single_channel_grayscale', 'sobel_horizontal', 'sobel_vertical', 'solarize', 'swap_channels', 'threshold', 'thumbnail', 'tint', 'unsharpen', 'vertical_strips', 'watermark']
#All available for Image
Special Methods for Image
from polaroid import Image
im = Image("meme.png")
print(repr(im))
#The `bytes` method is not implemented use
byt = im.save_bytes()
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 polaroid-0.3.1.tar.gz
.
File metadata
- Download URL: polaroid-0.3.1.tar.gz
- Upload date:
- Size: 11.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1f11aa4f1a69176c79365e9567b7553002b629789d0c23f73748d1f8cf0deea |
|
MD5 | 6f6ab93868512d6f4d765f8df0321039 |
|
BLAKE2b-256 | 9dd3cabe1c8ce51e6a6382796061f44c8ac7dde4a8f5a3449faf0f601649e789 |
File details
Details for the file polaroid-0.3.1-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 983.5 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 951ba74fc214892043408669e289e9752483841092240244a84fd376ab0db38c |
|
MD5 | f4f825636e23643778c6e6fb7ed064ef |
|
BLAKE2b-256 | 1656d6d4c3fc4a241d38432869ff8b9e17ea0dac905203b0525a1434260abb86 |
File details
Details for the file polaroid-0.3.1-cp39-cp39-manylinux2014_aarch64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp39-cp39-manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9410ec9d4794bee79c8f2ae9af2ceedcc7032292ee7ea1ce37b429f3f426e54a |
|
MD5 | 95caf84115a6b1b3e9e57e2eb724785e |
|
BLAKE2b-256 | e20d3024839269b0204b4d677d8d63e17a90f1a34fcee3f0b759654070de2139 |
File details
Details for the file polaroid-0.3.1-cp39-cp39-manylinux2010_x86_64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp39-cp39-manylinux2010_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09192b2f21cf2e704dd195a030b2e21ecc3c4996b29ef741ca519e01bc74ea8c |
|
MD5 | e89a507cd76212ff1bcd92d76323e491 |
|
BLAKE2b-256 | 1a944f08f35455ab77f38292fdf5cedaba36684184ff3914c660499a798dee7e |
File details
Details for the file polaroid-0.3.1-cp39-cp39-manylinux2010_i686.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp39-cp39-manylinux2010_i686.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c93f8bacb8695b0d5387a5bf3878baa3a95527b9fb4ca5954f8428970e0529e |
|
MD5 | f4ec08e614b4b9c54040c8246d10ea0e |
|
BLAKE2b-256 | 1df418b047db93c22673abbd06224a3b14a2b39808e258a414d55cae61df15d0 |
File details
Details for the file polaroid-0.3.1-cp39-cp39-manylinux1_x86_64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp39-cp39-manylinux1_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.9
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2542afb0535df80b46a6f485cc9d29986a7a873f885a40eb1f7e589b77473dc3 |
|
MD5 | ec1f2dade1a6e961db471955e30d9e8b |
|
BLAKE2b-256 | b921701351d0a8e763c58e450d2278e4fb60d38f0a3d030836ad0c86088ab61c |
File details
Details for the file polaroid-0.3.1-cp39-cp39-manylinux1_i686.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp39-cp39-manylinux1_i686.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.9
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2ee7119e54c056b366a0fd310f5773201ccafecd579d1bb9a3417594ac2545a |
|
MD5 | 97db3031173caf2f88b2b57b6211b07a |
|
BLAKE2b-256 | fedb9c89b05745904825d28a174444d0232b901c493945dda1cdab9358f3a685 |
File details
Details for the file polaroid-0.3.1-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7044912944ef6b1de720f8b8016ae2468f0a6613e719d576f3c3ee74598d6bd0 |
|
MD5 | 4a3a9723382aaa9032efa14bebfcd13d |
|
BLAKE2b-256 | b50987870f550b779255992c365114993b69d082687f4d25370dd946fbba9dac |
File details
Details for the file polaroid-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 671430e381615437b3cdbdd4e30b2c64850262759d5aab7509c4b36e1e8780cd |
|
MD5 | aaa9c7f6dec8e770e274f9d15e5c975d |
|
BLAKE2b-256 | 86e4f27ff7d16f8b7349e2f8dab8acf4e28243b03bd2b8f91e0337759608bc09 |
File details
Details for the file polaroid-0.3.1-cp39-cp39-macosx_10_9_universal2.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 10f1a21d98ba36882adb0f6c4aa51c8a62496e8beca123cb0b2ae0d1fd01b497 |
|
MD5 | 409b92fbf6e8b0ed2e127c9bcad2d439 |
|
BLAKE2b-256 | 72c9b61d4424d414329dd7668804e67878fda49b2c9e8458ca4642e5182b7d0e |
File details
Details for the file polaroid-0.3.1-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 982.4 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aeb96668e2c55805270449477b60e967ffebb5a782bb566ccd7cee1f6440f081 |
|
MD5 | f87a70f0ef5cb047b612a2bdbac5d13b |
|
BLAKE2b-256 | 81a0474783e849a8a2bd6c183e81f5deed0fd4526a42377bb265201c755ddbe1 |
File details
Details for the file polaroid-0.3.1-cp38-cp38-manylinux2014_aarch64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp38-cp38-manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.8
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9cb469c87420a91c6f784358c99c804e904b5c05dbccc1606d5418c95287e895 |
|
MD5 | 255b65138cd61e8d4ad87461cd458cef |
|
BLAKE2b-256 | 4326f0d17d27d9dd8793de4e76df3d28acfa1e661962106a9e2b54480b12261d |
File details
Details for the file polaroid-0.3.1-cp38-cp38-manylinux2010_x86_64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp38-cp38-manylinux2010_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ce913031bfe391223423733cb9bf3430fe6bdaba300f11a23f07613422c6729 |
|
MD5 | 3b6ecaa65b0ad02c99bb93cd441fd2e4 |
|
BLAKE2b-256 | 72359b0cd876d3fc34733363b224d1bdf0877ee1d22a0bb25fb2fcade80eecf8 |
File details
Details for the file polaroid-0.3.1-cp38-cp38-manylinux2010_i686.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp38-cp38-manylinux2010_i686.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04a03178b89707c4a505241688bb3f14e9d556452878a72fb5fda4d65df9d033 |
|
MD5 | 772d6037711754b5759a167361b78323 |
|
BLAKE2b-256 | 5b95353632986047777bad85cb21473dc69153c7bac61c18c7d9fcebf1529334 |
File details
Details for the file polaroid-0.3.1-cp38-cp38-manylinux1_x86_64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp38-cp38-manylinux1_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.8
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7a994938680e1b9e75ea1b83a141e0f9b52faa0586d64185f06b28627a29e6c |
|
MD5 | 1b8926f5b21820060e62a513458f6498 |
|
BLAKE2b-256 | 83863a1e781e6575c94507a02aa91d71442a117bb8f805ea550dc0fd3ccab237 |
File details
Details for the file polaroid-0.3.1-cp38-cp38-manylinux1_i686.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp38-cp38-manylinux1_i686.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.8
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 530fe8c40f7533391c070a3b0a5bd3b6eb294e1e171371d8a081ccf661a02b4b |
|
MD5 | 5fb7e484f3fdbd3cfa187a475a686a2d |
|
BLAKE2b-256 | bea253e3bebea950d2ad1485c6dc9afc4d3d24891c928a6042b245c021c01c88 |
File details
Details for the file polaroid-0.3.1-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b123630a75e396daf8e0ee1f435cb3176c71fd1508b3242211e7ffd4127ed5a |
|
MD5 | a190e7fd3caf722968c4fd99f442a7b2 |
|
BLAKE2b-256 | 84578c15a7279b1138c834215e34b4168ddad686e2df445bf0d0bd1bf5709f62 |
File details
Details for the file polaroid-0.3.1-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 984.3 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f5bd1fa32dded835dfa26f6540087056c87ceec61fca6ae53cbea3c6be8f12d5 |
|
MD5 | 87ffc17bb996204ffc9c365a2851d586 |
|
BLAKE2b-256 | a3ebbbac2ebfee7096a605b1b04af32e1728627286667a3d00002587c42f0670 |
File details
Details for the file polaroid-0.3.1-cp37-cp37m-manylinux2014_aarch64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp37-cp37m-manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f98208e7f54631613804bf8a8b155fda929b0428a5fae94c6ad62a15947e52b |
|
MD5 | 9cdf06314cd29c9059d883acdda40dfa |
|
BLAKE2b-256 | f2e2ed474ae188f81234a73b0ca18541e82788955a76c6b16ba3cd4870af3206 |
File details
Details for the file polaroid-0.3.1-cp37-cp37m-manylinux2010_x86_64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp37-cp37m-manylinux2010_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2abfefdc7e588e37cc4783a95fb264097a38ed92faf2eb352e771a0bd7476ec |
|
MD5 | 55b2c07f59890c517df517339a204210 |
|
BLAKE2b-256 | c2eb3821128210bb5cf70b22b022e9a65b3d580f8089017d1331d2eb6167fe2a |
File details
Details for the file polaroid-0.3.1-cp37-cp37m-manylinux2010_i686.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp37-cp37m-manylinux2010_i686.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d24e5c19ba910a133d805728ad2de9efe49416fe3a00c6b5e6f2dc5a4cdf12b9 |
|
MD5 | 14c93614c2465600c31db4941a8027dd |
|
BLAKE2b-256 | 426c7d66333279cc440faad3b72353c4aba6658d1c6bb1e4e4708245f6b699eb |
File details
Details for the file polaroid-0.3.1-cp37-cp37m-manylinux1_x86_64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp37-cp37m-manylinux1_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 702cddc506a89153f8d809b0993f4b70c7fc8692019ceba06f8cf457c88a9773 |
|
MD5 | ac41086294052b0a4e074e31207808b7 |
|
BLAKE2b-256 | cd8dc8b5602d83c083d21e097204757f810ab1d485611d33423d5892157915fa |
File details
Details for the file polaroid-0.3.1-cp37-cp37m-manylinux1_i686.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp37-cp37m-manylinux1_i686.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56f2a5a72bddbae2855e09a132f8370d88f85e9ad0a8d6ef5abd3841d933af7c |
|
MD5 | 65d0bd0d746d6c1e54c22ea7edc776f4 |
|
BLAKE2b-256 | 8cacb90e62cf6278e6101bdc4e49ce01921871c957de3a9007f153e6661a7de8 |
File details
Details for the file polaroid-0.3.1-cp37-cp37m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86d92c327c3b76873e60ece30e935ad3bec84144af15373f745603728e2eae96 |
|
MD5 | ffa823383510671697f8b6ab6d61a66e |
|
BLAKE2b-256 | 806d0b3edd1ed983c3fc90646dbb4ef2c05a158bbb26c413e9db730f6b0476cb |
File details
Details for the file polaroid-0.3.1-cp36-cp36m-win_amd64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 984.4 kB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ecc438cd4461868eada58d0ec25ab9fc49a9d51e3768b579683b6c961026ad4 |
|
MD5 | 95b00405ffaf94b70c46c6740040e975 |
|
BLAKE2b-256 | 6adf27b4244af86a20dc1b1350a35cbf9daa4e6e53e8a58cbb078c965778992d |
File details
Details for the file polaroid-0.3.1-cp36-cp36m-manylinux2014_aarch64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp36-cp36m-manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.6m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18ad8b7b705fbd509064445f1a3f22c3dc8c44bff793cebebc7b7bafec9bac2d |
|
MD5 | 073b62d4401d269c1da29d7155b1fb54 |
|
BLAKE2b-256 | 6a37c7ebd08533bc618e6aabeb79a544e84dd549a4118022c3a6ee1f4ebfd721 |
File details
Details for the file polaroid-0.3.1-cp36-cp36m-manylinux2010_x86_64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp36-cp36m-manylinux2010_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc9668d20f5d353b2738551418df08926aa396ca2a15622e508a3947a89b7a65 |
|
MD5 | 49bdf61d372cb038a23184a34edd40e0 |
|
BLAKE2b-256 | 23693953f3727c46f736c30c8c1ca0b3b242ad63b96ea9b065c42157b3228056 |
File details
Details for the file polaroid-0.3.1-cp36-cp36m-manylinux2010_i686.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp36-cp36m-manylinux2010_i686.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2097ba6f29a19c9b22178b610cec64f21cac5341b793d411264b15664ab1b497 |
|
MD5 | 180a341e24dd6753e567831b451d7554 |
|
BLAKE2b-256 | a9b195937d5ad8f25917b2de68782a3f5df74728f5b6e6186e27862638a18553 |
File details
Details for the file polaroid-0.3.1-cp36-cp36m-manylinux1_x86_64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp36-cp36m-manylinux1_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.6m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e62b63ee49b12038eec8e0990c0cb0b1dd59905a3aed987ad7367abc7187dee |
|
MD5 | e319d3f119aa55cdc2e6c4ccb709189f |
|
BLAKE2b-256 | b1e0f300d4d0818471ae18740819c79d334863124a6340a9a6186d99a981bbfd |
File details
Details for the file polaroid-0.3.1-cp36-cp36m-manylinux1_i686.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp36-cp36m-manylinux1_i686.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.6m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79c7bb70eeccfea6acdf2aee5f8d2e525adc65784f922a26bb60520d912bdc16 |
|
MD5 | d49d76eee3b3bc92ef35cb23f4126728 |
|
BLAKE2b-256 | 9c6973e7b03462bec772949d61f206bb68593d0e0d1f4b1a23411ddf4a8111be |
File details
Details for the file polaroid-0.3.1-cp36-cp36m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: polaroid-0.3.1-cp36-cp36m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.6m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f30ae5e96c38487ed906f8b5a2be321ac2bd49f181b0c712b0aad22f0a0fc0d |
|
MD5 | 828ae1511da6a176ed2aa05abda365af |
|
BLAKE2b-256 | 8cde4f57ed92da579a9882765d59b3cc68184b447ca0c056d7ff2459a87bae94 |