Skip to main content

image processing framework

Project description

pierogis

pierogis is a framework for image and animation processing. Ingredients that describe image processing functions can be assembled into recipes and used to cook an image or animation.

pyrogis is a python library and cli tool implementing this framework.

pip install pyrogis
pyrogis chef teton.png "resize --width 768 --height 768; sort; quantize; resize --scale 4" -o output.png
# or
pyrogis chef teton.png recipe.txt -o output.png

recipe.txt

resize --width 768 --height 768;
sort;
quantize -c 000000 ffffff 668a61 cbb8a2 b6d655 434d1f 5fb7d2 6d8ab9 3876c1 515b5e a8725f d7b6aa 3c2329 f78693 637186 00407A;
resize -s 4;

sorted and quantized teton

install

install from a wheel with pip

pip install pyrogis

Depends on numpy and PIL. PIL requires some external C libraries for handling image files. You probably don't have to worry about this. If you do, try a conda installation.

To build from source (either the repository or the sdist), you will need to install the rust stable toolchain.

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
pip install -r requirements.txt

pip install .

features

  • CLI - Use a rich cli to cook à la carte recipes, or provide a recipe in a document
  • Animations - Animations (gifs and movies) can be cooked in one command
  • Extendable - Easy to create custom manipulations (see docs)
  • Lazy Rendering - Render a manipulation after constructing your pipeline (see docs)
  • Numpy or Rust backend - Image processing functions use Numpy for (python relative) fast operations. Some ingredients use compiled Rust for more speed.

terminal screen

wires recipe

acknowledgements

The original python pixelsort package inspired this package. While the underlying algorithm of that package and of sort in this one is supposed to be functionally the same, details of the implementation may differ.

A quantization algorithm used in this package uses rscolorq, which is a port of scolorq, itself an implementation of Spatial Color Quantization.

issues and contributing

When you encounter an error, there are some guidelines that will make it easier to help you:

  • Ensure that you are using the latest version of the package. It's early days so errors and updates will be frequent. Use pip uninstall pyrogis then pip install pyrogis --no-cache-dir to reinstall.
  • Provide the version of pyrogis that you are using in issues to rule that out. pip list -> pyrogis _._._
  • Provide the traceback or error message if relevant.
  • Provide your os and any other specific information about how you are trying to use the package.
  • Provide the code or the cli command that triggered the error.
  • If the problem is visual: that can be more difficult to debug. Share a link to an image hosting site if you want to share what you are seeing in an issue.
  • If you are getting different behavior than you expect: that could be an error or a feature.
  • If your problem is with installation: try conda, preinstall numpy and pillow, install the rust toolchain, and start praying. There will be a website with a visual editor for this software so stay tuned.

Hopefully all levels of skills can use this package. Any form of contributing is appreciated; passive-aggressive semi-anonymous thumbs down is not appreciated.

Everyone using and contributing to this package is doing it for the love of the game.

Don't feel like your issue is too small to make an issue. Pull requests are always welcome and anyone interested in dev work should join the discord.

Ingredient type algorithm/function suggestions can go in the ingredients channel. You can post your creations in the demo channel as well.

disclaimer

This library is licensed under the AGPL v3.

Art used for demos is the property of their respective owners.

The following statements are not necessarily legally binding. If they seem to contradict the license, follow the license.

The licenses of packages used by this software vary, but are understood to be compatible with AGPL. If you take issue with this package's use of other software regardless of legal concern, please reach out, and it can be removed from this package.

Also understand that there may be implications from those licenses on your use of this package.

Review the AGPL yourself if you intend to use this package in any software, but know that it was chosen to encourage that all related works be open source.

The use of AGPL does not mean that this cannot be monetized, but it does generally mean that you will need to share source code of improvements on this package; at least modules related to this package.

If your paid derivative work adds marginal value to what is included in this package, the author reserves the right to go to great lengths to make a free (and better) alternative to your derivative work.

Please think twice about minting NFTs for works made with this package, especially if they are ugly. Consider that you do communal damage by trying to profit individually.

changelog

v0.2.0

  • ingredients

    • add frames support in Dish (and cli)
    • add Resize ingredient
    • refactor how seasonings are handled
    • swap sort logic (sort white pixels)
  • chef

    • add Threshold option to provide hex color for include and exclude
    • add Quantize option to provide colors for palette
    • add Resize order
  • testing

    • add Resize testing
    • add cli/parser testing
  • misc

    • change references to rpierogis to pierogis_rs
  • bugs

    • fix chef handle trailing semi-colon in recipe

v0.1.3

  • ingredients

    • threshold default behavior change
    • threshold now accepting exclude/include pixels as usize for windows support
  • chef

    • menu items as separate classes from chef
  • package

    • lots of formatting/lint fixes, notably subpackage imports
    • documentation improvements
  • tests

    • threshold tests added

v0.1.2

  • chef

    • redo handling of input dir and unknown output name
    • add quiet flag
  • documentation

    • fix some typos in readme

v0.1.1

  • ingredients

    • fix Quantize.prep not catching extra kwargs
  • documentation

    • update readme to reflect changes in package name and quantize
  • deploy

    • combine test pypi and normal pypi publish

v0.1.0

  • ingredients

    • Quantize (using rscolorq or from palette)
    • Sort (Numpy implementation)
    • Recipe and Dish
    • quantize, sort, and chef CLI recipes
    • Threshold (in both Numpy and Rust), and Seasoning
    • Flip and Rotate
  • deploy

    • release on PyPi

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

pyrogis-0.3.0.tar.gz (37.4 kB view details)

Uploaded Source

Built Distributions

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

pyrogis-0.3.0-cp39-cp39-win_amd64.whl (230.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pyrogis-0.3.0-cp39-cp39-win32.whl (221.5 kB view details)

Uploaded CPython 3.9Windows x86

pyrogis-0.3.0-cp39-cp39-manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.9

pyrogis-0.3.0-cp39-cp39-macosx_11_0_arm64.whl (591.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyrogis-0.3.0-cp39-cp39-macosx_10_15_x86_64.whl (342.7 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

pyrogis-0.3.0-cp38-cp38-win_amd64.whl (230.4 kB view details)

Uploaded CPython 3.8Windows x86-64

pyrogis-0.3.0-cp38-cp38-win32.whl (222.1 kB view details)

Uploaded CPython 3.8Windows x86

pyrogis-0.3.0-cp38-cp38-manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.8

pyrogis-0.3.0-cp38-cp38-macosx_11_0_arm64.whl (321.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pyrogis-0.3.0-cp38-cp38-macosx_10_15_x86_64.whl (343.3 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

pyrogis-0.3.0-cp37-cp37m-win_amd64.whl (230.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

pyrogis-0.3.0-cp37-cp37m-win32.whl (222.2 kB view details)

Uploaded CPython 3.7mWindows x86

pyrogis-0.3.0-cp37-cp37m-manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7m

pyrogis-0.3.0-cp37-cp37m-macosx_10_15_x86_64.whl (343.6 kB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

pyrogis-0.3.0-cp36-cp36m-win_amd64.whl (229.6 kB view details)

Uploaded CPython 3.6mWindows x86-64

pyrogis-0.3.0-cp36-cp36m-win32.whl (222.3 kB view details)

Uploaded CPython 3.6mWindows x86

pyrogis-0.3.0-cp36-cp36m-manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.6m

pyrogis-0.3.0-cp36-cp36m-macosx_10_15_x86_64.whl (343.4 kB view details)

Uploaded CPython 3.6mmacOS 10.15+ x86-64

File details

Details for the file pyrogis-0.3.0.tar.gz.

File metadata

  • Download URL: pyrogis-0.3.0.tar.gz
  • Upload date:
  • Size: 37.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 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 pyrogis-0.3.0.tar.gz
Algorithm Hash digest
SHA256 b62c989c730d33a0a5307007020e6b001f042af75f3fbc413f48e9d6038c5d51
MD5 2a018e27e6ed65fe244a400f1ea728bc
BLAKE2b-256 91e680f54e328ee2133f60afbdd2533c0da5ae07f13a1d0102de23c66cbc179e

See more details on using hashes here.

File details

Details for the file pyrogis-0.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyrogis-0.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 230.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 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 pyrogis-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cf59c8da91105bf5573f38c9728d732b86c0bc73ba2b2dfbd69faedf2986aa83
MD5 477694dd95a482a1cf106fbca8903e98
BLAKE2b-256 0c204284814885945211ef90677104070571035be481ceecfc02e7e4e1ccf87d

See more details on using hashes here.

File details

Details for the file pyrogis-0.3.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyrogis-0.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 221.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 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 pyrogis-0.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fcaaebfcf5d2690fd9dfe6c2d85e75b216d5f4d496fdb2b03063ce204e6e399c
MD5 fdc6cfb0770e3dabb8a2b74cf2e5eed5
BLAKE2b-256 e0f4f4dde52848f2a2930c369ebe540768da97dc0c19f5f0b7ecd2ae8f3cfff4

See more details on using hashes here.

File details

Details for the file pyrogis-0.3.0-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyrogis-0.3.0-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 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 pyrogis-0.3.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e91fd89947f3bec43180f9bfb441a2ea015f8005233bbab7bf464cb8e5f55a3
MD5 a555d7c7b6b72a236381cfb887b7b06d
BLAKE2b-256 1078b9b12570f6713ee6d6b8316eb8ad619d6d8f354c50305759836c8c35a6f3

See more details on using hashes here.

File details

Details for the file pyrogis-0.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pyrogis-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 591.0 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 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 pyrogis-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef80337101ef6c3b7ba08fbb573476cd63cd520aaa9cd4aa20e0a0df61e33d2e
MD5 eb1480b851e11f53478de2227014bf10
BLAKE2b-256 76c303d00ef5f5e3d26de6280013704438b7317e53d0b1db2d2c452631ac50ad

See more details on using hashes here.

File details

Details for the file pyrogis-0.3.0-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: pyrogis-0.3.0-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 342.7 kB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 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 pyrogis-0.3.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4115671bf55fe17936591ae2c64831d61efffa5c7c2a2b8d7eacf47ab8376de6
MD5 384e90a8f3043603dc451be83733b8a8
BLAKE2b-256 c35f394c0ded984b1c0b2497bd56053b1f72fb17cc8d800e32a4f1d3e454e0e5

See more details on using hashes here.

File details

Details for the file pyrogis-0.3.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyrogis-0.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 230.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 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 pyrogis-0.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 21f5e54fc5996a85178b267de1ab5edd5f372f3b01498a7ce91633d9cf047820
MD5 98759403144347295c9e406813ff0fef
BLAKE2b-256 98c342071d9b39cac82f1ddf102dff7e2c2f3ddba590ead08bdb6d0b39661f87

See more details on using hashes here.

File details

Details for the file pyrogis-0.3.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyrogis-0.3.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 222.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 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 pyrogis-0.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a7a15c73119878720f638080522eb69bb0ae7c92edcaed2c080b2a5544a95912
MD5 b726ff8e1a38a684baeaf40d60a84110
BLAKE2b-256 9436390ff3509e26ca013e693fe3427f1532adbd641411cb848177c26228e6fa

See more details on using hashes here.

File details

Details for the file pyrogis-0.3.0-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyrogis-0.3.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 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 pyrogis-0.3.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b76887e492d73f9f34615b393a0e85b3c373878ab963aea7f6a98d020fe9890a
MD5 5da2cb3c0be2dbccf22d6639d5788c50
BLAKE2b-256 5b24d17beb0db4255f8ab146939f884301258a34c3ea604720fe8dc54eb54209

See more details on using hashes here.

File details

Details for the file pyrogis-0.3.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pyrogis-0.3.0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 321.4 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 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 pyrogis-0.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2a9a4581f2b44be1422098dec0a523987ba12ac6969f26ea9cdffb751b28954
MD5 f20529c65db4f2a6a85980834a0fe606
BLAKE2b-256 879db7da09d4bde1a89f16dcadb8ff25902fb7d31536ce7bad6c60947e0ec251

See more details on using hashes here.

File details

Details for the file pyrogis-0.3.0-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: pyrogis-0.3.0-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 343.3 kB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 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 pyrogis-0.3.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c5b4ebf8f5efacef3dece2caddf823d3f7f58604af74329c0405e7b887acce20
MD5 16dd1a68583c99d3da90e95839a23a44
BLAKE2b-256 4fe4331d8bf7a49e354248f1fbab3d149def951d8ccbba09c43fb2013785f895

See more details on using hashes here.

File details

Details for the file pyrogis-0.3.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyrogis-0.3.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 230.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 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 pyrogis-0.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b7d249ebf38cdc173c9d8cd18f84d4bfd6c1aeb2dc3eeb50410c91db9c607dc6
MD5 9ea3f4c124d7cb2ce5597bf14e1839a2
BLAKE2b-256 536aeb1b543aba81da37ea73b9dc51c81325a69d54ee1a2992f061ee922e5277

See more details on using hashes here.

File details

Details for the file pyrogis-0.3.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pyrogis-0.3.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 222.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 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 pyrogis-0.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 479d2541539895c1e19dd10f4c9e949bfccde9f7d18d61716a24974c75b64d26
MD5 09fbd5fa622f882a4bd9b80ca1f9e99d
BLAKE2b-256 c06e2518b613ab24476a2ce6f7ad1c7424d0ad6e11455e9ca73bba1d22b5b414

See more details on using hashes here.

File details

Details for the file pyrogis-0.3.0-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyrogis-0.3.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 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 pyrogis-0.3.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f42e0915c9e82395123e11ca69f4f64b17605827901499f3a0599a53383ba17
MD5 79ffbc5612a9d046328cbc25fdf6da8b
BLAKE2b-256 e793fa9c7eaa68d7b1e0574b1e277298ffb8359cbeca35f208c1fb5c7f1fc98d

See more details on using hashes here.

File details

Details for the file pyrogis-0.3.0-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: pyrogis-0.3.0-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 343.6 kB
  • Tags: CPython 3.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 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 pyrogis-0.3.0-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c6ef4125c4fc82ebb75dcd7d8a446f18b6485e8173d98fb123bedff92ccf430e
MD5 67d5f1dd07d081a73e9c8ed094eff297
BLAKE2b-256 0e924b24246a29f5c531bfd54544f581eb62de540c3660abc616e33182acf05d

See more details on using hashes here.

File details

Details for the file pyrogis-0.3.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pyrogis-0.3.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 229.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 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 pyrogis-0.3.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8c4a659e34af74d78d5f7c05f79d8fbfe850805de2cdbff7b9102c4ddb36712c
MD5 db451a5bd8a9a2dd4a9017140bbc7c69
BLAKE2b-256 6e9b96f5292dcc4e4e8592b52aca76fec0c679ca9dcdacdc6d05d1b4031eb413

See more details on using hashes here.

File details

Details for the file pyrogis-0.3.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pyrogis-0.3.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 222.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 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 pyrogis-0.3.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 610177adcef0077f686575f18050abc63b8308fdb603406bfa4ce9b43dc3820c
MD5 7a52e4a4e73d8159bbac5563cbe1e647
BLAKE2b-256 9420727ac05e7f0c64294618163881726cbbc9643e83f7dd9730db655c4e3688

See more details on using hashes here.

File details

Details for the file pyrogis-0.3.0-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyrogis-0.3.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 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 pyrogis-0.3.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 562850ccf772b9350bea5da637275d5b73a51bcd25d2745ba7bf2c8a94eb7b8d
MD5 2c01e83cbc176233c1a2fa84b35bd759
BLAKE2b-256 76b509e5c298fc18b544f122638e0031f0a074ab899265b7b6138aed37ffe603

See more details on using hashes here.

File details

Details for the file pyrogis-0.3.0-cp36-cp36m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: pyrogis-0.3.0-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 343.4 kB
  • Tags: CPython 3.6m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 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 pyrogis-0.3.0-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 45aa902bb80020e697caf7683333b8a7fce22ecb3e4a62f0ad746cf4cc8e0ce7
MD5 c707dfcc68001568932d7f69c3a71592
BLAKE2b-256 afe05e55ffc5d0de0973f36318ccd3161920e87669cadc30c74883d537ee91bc

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