Skip to main content

The interface between FastJet and NumPy

Project description

PyPI version Zenodo link Test status Wheel builds Binder

pyjet allows you to perform jet clustering with FastJet on NumPy arrays. By default pyjet only depends on NumPy and internally uses FastJet’s standalone fjcore release. The interface code is written in Cython that then becomes compiled C++, so it’s fast. Remember that if you use pyjet then you are using FastJet and should cite the papers listed here.

Strict dependencies

Getting started

pyjet provides the cluster() function that takes a NumPy array as input and returns a ClusterSequence from which you can access the jets:

from pyjet import cluster
from pyjet.testdata import get_event

vectors = get_event()
sequence = cluster(vectors, R=1.0, p=-1)
jets = sequence.inclusive_jets()  # list of PseudoJets
exclusivejets = sequence.exclusive_jets(3)  # Find the cluster history when there are 3 jets

The input is given in the form of a structured array in numpy. The first four fields of the input array vectors must be either:

np.dtype([('pT', 'f8'), ('eta', 'f8'), ('phi', 'f8'), ('mass', 'f8')])

or if cluster(..., ep=True):

np.dtype([('E', 'f8'), ('px', 'f8'), ('py', 'f8'), ('pz', 'f8')])

Note that the field names of the input array need not match ‘pT’, ‘eta’, ‘phi’, ‘mass’ etc. pyjet only assumes that the first four fields are those quantities. This array may also have additional fields of any type. Additional fields will then become attributes of the PseudoJet objects.

See the examples to get started:

https://github.com/scikit-hep/pyjet/raw/master/examples/jet_areas.png

Standalone Installation

To simply use the built-in FastJet source, from your virtual environment, run:

python -m pip install pyjet

And you’re good to go! If you have a old version of pip (<10), you will need to have Cython and Numpy already installed to build from source - however on most systems, you should get a binary wheel.

Get example.py and run it:

    curl -O https://raw.githubusercontent.com/scikit-hep/pyjet/master/examples/example.py
    python example.py
    jet#          pT        eta        phi       mass  #constit.
    1        983.280     -0.868      2.905     36.457         34
    2        901.745      0.221     -0.252     51.850         34
    3         67.994     -1.194     -0.200     11.984         32
    4         12.465      0.433      0.673      5.461         13
    5          6.568     -2.629      1.133      2.099          9
    6          6.498     -1.828     -2.248      3.309          6

    The 6th jet has the following constituents:
    PseudoJet(pt=0.096, eta=-2.166, phi=-2.271, mass=0.000)
    PseudoJet(pt=2.200, eta=-1.747, phi=-1.972, mass=0.140)
    PseudoJet(pt=1.713, eta=-2.037, phi=-2.469, mass=0.940)
    PseudoJet(pt=0.263, eta=-1.682, phi=-2.564, mass=0.140)
    PseudoJet(pt=1.478, eta=-1.738, phi=-2.343, mass=0.940)
    PseudoJet(pt=0.894, eta=-1.527, phi=-2.250, mass=0.140)

    Get the constituents as an array (pT, eta, phi, mass):
    [( 0.09551261, -2.16560157, -2.27109083,   4.89091390e-06)
     ( 2.19975694, -1.74672746, -1.97178728,   1.39570000e-01)
     ( 1.71301882, -2.03656511, -2.46861524,   9.39570000e-01)
     ( 0.26339374, -1.68243005, -2.56397904,   1.39570000e-01)
     ( 1.47781519, -1.7378898 , -2.34304346,   9.39570000e-01)
     ( 0.89353864, -1.52729244, -2.24973202,   1.39570000e-01)]

    or (E, px, py, pz):
    [( 0.42190436, -0.06155242, -0.07303395, -0.41095089)
     ( 6.50193926, -0.85863306, -2.02526044, -6.11692764)
     ( 6.74203628, -1.33952806, -1.06775374, -6.45273802)
     ( 0.74600384, -0.22066287, -0.1438199 , -0.68386087)
     ( 4.43164941, -1.0311407 , -1.05862485, -4.07096881)
     ( 2.15920027, -0.56111108, -0.69538886, -1.96067711)]

Reclustering the constituents of the hardest jet with the kt algorithm
[PseudoJet(pt=983.280, eta=-0.868, phi=2.905, mass=36.457)]

Go back in the clustering sequence to when there were two jets
PseudoJet(pt=946.493, eta=-0.870, phi=2.908, mass=20.117)
PseudoJet(pt=36.921, eta=-0.800, phi=2.821, mass=4.119)

Ask how many jets there are with a given dcut
There are 9 jets with a dcut of 0.5

Get the jets with the given dcut
1 PseudoJet(pt=308.478, eta=-0.865, phi=2.908, mass=2.119)
2 PseudoJet(pt=256.731, eta=-0.868, phi=2.906, mass=0.140)
3 PseudoJet(pt=142.326, eta=-0.886, phi=2.912, mass=0.829)
4 PseudoJet(pt=135.971, eta=-0.870, phi=2.910, mass=0.140)
5 PseudoJet(pt=91.084, eta=-0.864, phi=2.899, mass=1.530)
6 PseudoJet(pt=30.970, eta=-0.831, phi=2.822, mass=2.124)
7 PseudoJet(pt=7.123, eta=-0.954, phi=2.939, mass=1.017)
8 PseudoJet(pt=5.951, eta=-0.626, phi=2.818, mass=0.748)
9 PseudoJet(pt=4.829, eta=-0.812, phi=3.037, mass=0.384)

Using an External FastJet Installation

To take advantage of the full FastJet library and optimized O(NlnN) kt and anti-kt algorithms you can first build and install FastJet and then install pyjet with the --external-fastjet flag. Before building FastJet you will need to install CGAL and GMP.

On a Debian-based system (Ubuntu):

sudo apt-get install libcgal-dev libcgal11v5 libgmp-dev libgmp10

On an RPM-based system (Fedora):

sudo dnf install gmp.x86_64 gmp-devel.x86_64 CGAL.x86_64 CGAL-devel.x86_64

On Mac OS:

brew install cgal gmp wget

Then run pyjet’s install-fastjet.sh script:

curl -O https://raw.githubusercontent.com/scikit-hep/pyjet/master/install-fastjet.sh
chmod +x install-fastjet.sh
sudo ./install-fastjet.sh

Now install pyjet like:

python -m pip install numpy Cython
python setup.py install --external-fastjet

pyjet will now use the external FastJet installation on your system.

Note on units

The package is indifferent to particular units, which are merely “propagated” through the code. We do recommend that the HEP units be used, as defined in the units module of the hepunits package.

It is worth noting that the azimuthal angle phi is expressed in radians and varies from pi to pi.

Developing

If you want to setup for development:

python3 -m venv .env
source .env/bin/activate
pip install -e .[dev]
pytest

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

pyjet-1.8.2.tar.gz (100.5 kB view details)

Uploaded Source

Built Distributions

pyjet-1.8.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl (302.4 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

pyjet-1.8.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (273.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyjet-1.8.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl (302.4 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

pyjet-1.8.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (273.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyjet-1.8.2-pp27-pypy_73-manylinux2010_x86_64.whl (302.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

pyjet-1.8.2-pp27-pypy_73-macosx_10_9_x86_64.whl (273.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyjet-1.8.2-cp39-cp39-win_amd64.whl (224.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyjet-1.8.2-cp39-cp39-win32.whl (205.9 kB view details)

Uploaded CPython 3.9 Windows x86

pyjet-1.8.2-cp39-cp39-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9

pyjet-1.8.2-cp39-cp39-manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.9

pyjet-1.8.2-cp39-cp39-macosx_10_9_x86_64.whl (320.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyjet-1.8.2-cp38-cp38-win_amd64.whl (225.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyjet-1.8.2-cp38-cp38-win32.whl (207.2 kB view details)

Uploaded CPython 3.8 Windows x86

pyjet-1.8.2-cp38-cp38-manylinux1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8

pyjet-1.8.2-cp38-cp38-manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.8

pyjet-1.8.2-cp38-cp38-macosx_10_9_x86_64.whl (320.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyjet-1.8.2-cp37-cp37m-win_amd64.whl (223.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyjet-1.8.2-cp37-cp37m-win32.whl (205.3 kB view details)

Uploaded CPython 3.7m Windows x86

pyjet-1.8.2-cp37-cp37m-manylinux1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m

pyjet-1.8.2-cp37-cp37m-manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.7m

pyjet-1.8.2-cp37-cp37m-macosx_10_9_x86_64.whl (320.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pyjet-1.8.2-cp36-cp36m-win_amd64.whl (223.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

pyjet-1.8.2-cp36-cp36m-win32.whl (205.1 kB view details)

Uploaded CPython 3.6m Windows x86

pyjet-1.8.2-cp36-cp36m-manylinux1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6m

pyjet-1.8.2-cp36-cp36m-manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.6m

pyjet-1.8.2-cp36-cp36m-macosx_10_9_x86_64.whl (321.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

pyjet-1.8.2-cp35-cp35m-win_amd64.whl (221.6 kB view details)

Uploaded CPython 3.5m Windows x86-64

pyjet-1.8.2-cp35-cp35m-win32.whl (204.0 kB view details)

Uploaded CPython 3.5m Windows x86

pyjet-1.8.2-cp35-cp35m-manylinux1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.5m

pyjet-1.8.2-cp35-cp35m-manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.5m

pyjet-1.8.2-cp35-cp35m-macosx_10_9_x86_64.whl (318.1 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

pyjet-1.8.2-cp27-cp27mu-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 2.7mu

pyjet-1.8.2-cp27-cp27mu-manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 2.7mu

pyjet-1.8.2-cp27-cp27m-win_amd64.whl (270.4 kB view details)

Uploaded CPython 2.7m Windows x86-64

pyjet-1.8.2-cp27-cp27m-win32.whl (227.2 kB view details)

Uploaded CPython 2.7m Windows x86

pyjet-1.8.2-cp27-cp27m-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 2.7m

pyjet-1.8.2-cp27-cp27m-manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 2.7m

pyjet-1.8.2-cp27-cp27m-macosx_10_9_x86_64.whl (317.5 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

Details for the file pyjet-1.8.2.tar.gz.

File metadata

  • Download URL: pyjet-1.8.2.tar.gz
  • Upload date:
  • Size: 100.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2.tar.gz
Algorithm Hash digest
SHA256 6ef723f6cbe639074ad9a765faa320d115acb0f2069496363c0eb98662b3956b
MD5 c808f5b75852fa14e5ae8905359bcd42
BLAKE2b-256 cdffeef6ad2862d2a0f901cd751242871584dc031c4b32baf2a5a6a65ba2054c

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyjet-1.8.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 302.4 kB
  • Tags: PyPy, 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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 84226cfd77b7f77b3be270ee50dd8a9f8bd1d79472eae2308c554522c2fcca83
MD5 5ba77a99f864dd8e223c6beaada9229c
BLAKE2b-256 8530887f99cca917909e2e0135f7991ac178b6b369bb23bd6faaae585d1da773

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyjet-1.8.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 273.8 kB
  • Tags: PyPy, 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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c0dfac9cca274cddb402fc43dab6479a3244a3d6e499b5d7b0c2a9329341bd1
MD5 5643c063e9c83e17c27988105923f272
BLAKE2b-256 6b711b71b59a3a10fe58462b189811ac39cb1c136df594b59d26255d135fbd39

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyjet-1.8.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 302.4 kB
  • Tags: PyPy, 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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f6ae59a1744bf60b142585f7f2873d723e7c5dcfa6f3cd54121b3d44eb8b9426
MD5 f403795acb8799d45b3a39887dbbaef6
BLAKE2b-256 53c720410917dc603694b86484a991157adaab4e03a4da1c40f70ad4d0abb3e0

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyjet-1.8.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 273.8 kB
  • Tags: PyPy, 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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3cd5bdd6803d641b9053e1ad6daa61a2812e40d7d74f8ceb65ab2b79c5797251
MD5 366d94ddd4ad202ced5cae3ec1467aa8
BLAKE2b-256 977c1aceae98b0624753bbaf9a38f86cad04c7d46f202ff5c1b7cd47f58905f5

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyjet-1.8.2-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 302.3 kB
  • Tags: PyPy, 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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 182da1418ea88abbada8ac7b8be7c130a65ddf42644442a7f67cbf39c7a6cb53
MD5 f554b869b927d44a139ad8f2df8b0d41
BLAKE2b-256 e24c73798dda3e4ebbbc250e40500b46b5d7a7bfa241133daf6167c2547b7579

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-pp27-pypy_73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyjet-1.8.2-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 273.7 kB
  • Tags: PyPy, 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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33051edda792e985b4b5efa6bb38de8c1fd1e358e2ff77b657f1681cbce64af1
MD5 7bfa6a6565a8b452c89e53895c013517
BLAKE2b-256 259fbf739d7d1c5b1ea8cf22196b97846bbc2df195ad10e3cf1ac40dccf970b9

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 224.6 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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 71774ef2232698baf66b2a943d581f470ff77a182fb3cf352bcb1f5c86b9db9d
MD5 d2cd45db16a2d5338100aad6012c8a57
BLAKE2b-256 18b21ea8ddcd68272551e5ce411a7b9160cc4d9c6bbd40c159901f9051d676d8

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 205.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b3dc479ed08fe8e3a30644c548d00e5dda144f489151dc3329591f94cdea9e2d
MD5 3d43b3164367768d2abdbb1537c461e8
BLAKE2b-256 a9c8795e2e76222fb03380d2ade129e6f0f1e96db3823e917c7a0116f668747f

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8d4b88e85321b48bdbfa2f571731530fdf1827703796c644aebcd31bbf0d0ad7
MD5 d9449fb5187114bf98b7cb03509bfa42
BLAKE2b-256 da6cf3f892b6de19cc7d1b0456262f6d316eadad62d8cf403cec8e40e06287f3

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 1.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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f1ba97a357bd9390ee2a9c641a987d9faa7b76380e25ecd0be0d1cb1a5d0cb10
MD5 7b868c33286d16d2f9df1769ff1e4b97
BLAKE2b-256 ab0ca06f245869b3524bb9445d849019241495ef05c36a1b6d186de32868197d

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 320.6 kB
  • 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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 57ce7dd6ed48f0dcd0f8e78a4d546b58834d8b000857d63adedeec2bbadfd15f
MD5 c87757f624fcb59226c00b33e8ce0b3d
BLAKE2b-256 5846f81f902c29cac34faf5778a3909161209c3296cb5ddbbedabe46ed856bd3

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 225.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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f8f41974c0d495c9231e9557b65c75e09ff9987f09999f28f33d41f0a3035a07
MD5 c56bc3d28ae75df3f4f8e6a1fea0252b
BLAKE2b-256 2aab512a37fca43023e15e5a6c626c468ef8dec315d4fd7a1079f4dd9159fef6

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 207.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 162bc639dd84c55b39e21b12ad39797d32d67afd0a9f538bad14077a76b11385
MD5 2ffe29c3dc344003d8dec9d62f388b7c
BLAKE2b-256 e7a5a4ac49c2fc94200aa3472cb6770c61464410961925e457634ab37bdbfbb5

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.2 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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c55708a5274409dff9b47d91989f67cdac5285e3a2b835edf7169a0761dc9f6f
MD5 732f8649c16b093271dcd6dec5e520a7
BLAKE2b-256 3964e477b946a1576baff541273c395cc8b154307209e33fd858df64550df23a

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 1.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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6c9278b0c086f8048f09e0ac22614a77c0840e38ba867b3c071f8fe928d1af7b
MD5 2866de5c6f52f2df7dbc63237999dbcf
BLAKE2b-256 673ed06d9a78c0dcb7c53e630c0fbe9ff43182f8bbaa172272e4ec172c28c29f

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 320.4 kB
  • 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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1487f0e7a45f62533c63f2e611f14cd20fa8b22f8e3aaaee98be22c62e6c67cb
MD5 689e0ff8e5d3154b8811723f526d2412
BLAKE2b-256 c5612e62933c840e51c5d7b4d373079a5266ff1c211df2b51dae16d35c1c5522

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 223.7 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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 33d634f7087bfeb108cb8ee4560d76c09ce3f47c47370354160e24dc98849a4c
MD5 02d0be5112f9ed14c2a355177edc2fd5
BLAKE2b-256 c2987bb72096a0e9e6c99de3a0f4df5467afd0c35188e98020f9e890c612f21b

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 205.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 409195392dbcdba119348ccaab4a37f30d9dad9fd1cccc9cd4661edd9596631f
MD5 f2f4fa6b0f595b79117ca9d80c165eba
BLAKE2b-256 4ffdd2703ef0cc0c70142e0110171bad4c49d9f0c7d69c465752e606e805e814

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.2 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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4a8293ba512fd3f3713002493e625b82be3b9108f46a388bd7bc6132e642df19
MD5 e04ac00a91b2d00732e901dcdfb03567
BLAKE2b-256 f3e9b09bc4452ad99f6e8feb6345da981cf3860d43b700e1fb1313b1796255fa

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 dc2085c2f5d9868f9a2d336975c270dbb97587fca22a5423ed43f715ab0cf35b
MD5 a457a580fa44e4e7b6899c411e334cfd
BLAKE2b-256 0d36d9fe4ab2e03521182af12581dc29b94d58766b79c1b129357c5ea2dd4215

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 320.4 kB
  • 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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cacc68e8088793140a492e80c69bad1dbfc1b0238793dd6f865e5b14affda5c8
MD5 29c45d431955e783a931c759e5ed1d93
BLAKE2b-256 ad44dc6b256166ccac0342ba965049deb001a9ef4cc5aef35cb6e733bc0d48a4

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 223.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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 47536b4aef5644521149781c170bc281ba3b85a01132b8576555fc500202a71b
MD5 d802691d27a5e015482fcd4c9f69de96
BLAKE2b-256 b31be0687ed2beaf2e96dd8d836a70952c78ecfaeac26669aac519c659630174

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 205.1 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 457580196f82eba789b717f97408c440b74262318587cddb53fdd1ddf9ea1a76
MD5 c8052ffa11b53c6a7552bdb0cbd10517
BLAKE2b-256 18355810507db53286449bc773d0a6f709819dbe44533c3c7e08620dddb2491e

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.2 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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6f686ff3a1b925fd6f87da7e09fc7d9d9d7732ae64b3030f976474f0536fad36
MD5 d51b9ea53db04a3e97c1e1eeaba214ba
BLAKE2b-256 8e9b7d4557fdf4a35594124db1567afb819d31da62465888824424151668bb09

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 54af9b84aaf9c01d9ae2654155f9580650643fe650e2cd22de278b0ce6a1c7d3
MD5 b80cfb9641bc3f523f462757ec65ab2f
BLAKE2b-256 fe36179719e0cd26482fbc63e0920f4a4c8246f3e714a879a94329b1b2997f1e

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 321.5 kB
  • 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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d061711b14593c7f456d97d6017c626689e53375620c072cbdc91e2c484847f0
MD5 52e952c957496f27d8eeae9edc7ac9b2
BLAKE2b-256 ad8d63d2f090dc27be1bae9e66e0f045dd5382e1449c6c49fe7bcbe92bef095e

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 221.6 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 01c1232e996b4c29fa28641a366db4f00328c97d56d703a73c390a5c59c66551
MD5 e216b8332ed4adaac5f1acdecdad5730
BLAKE2b-256 eeb3c726a612defd20e8fee74b587d7eb4f52772296bed6f5744350801ef2465

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp35-cp35m-win32.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 204.0 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 33afb2f459a3eacb27d7a53f15bb12625dc2775d7bfe5deeaa50eda97e1bb6a9
MD5 5b97f514c98f65afc88cd0625f759265
BLAKE2b-256 b416b31f38e5b5c17c8ac66accb4f55b2169c52f3cb3d6341b7f5460c5dc52c9

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bd6329423b1107cd8a50ad1832a1f1b7315825ed80480f4446d331c76baea903
MD5 780392f00e28e0e05c8d31fd506fb940
BLAKE2b-256 a23050c4aa1a1461340e77cf8c6cdb1014a593469aaa526b0a06e22837238270

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 80fbb84103a627459f658b7f2c428f8a73707e9a8e505047e1b92992815724b1
MD5 f7fc13d6dacdc864b567f613e56e68c0
BLAKE2b-256 c32f74ca60671c94fe122be64c36e49277e1ea144419fed64d51d949a1b5c6e1

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 318.1 kB
  • Tags: CPython 3.5m, 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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5cb20d7c52f186777928a2e8a563b2566fecfa1c50099a4cf5a2d95841a49751
MD5 3c20f81feb8d1d58dcb8bcc20bda21f8
BLAKE2b-256 f9f0b4624667714170d1b9b849e303a38cbc51d7100ab6c4e0e66decd9728aa5

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9682cb0ca0f92d21882bbd45b155dc7c0ce4352cd9a136bf14bd6d39645f55d3
MD5 876ac86b35cd93200b90f32a2666dfa1
BLAKE2b-256 ecac936b8293c600a106107476013132a9cade480e405e5e93d1ba9a959698d6

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7b98028aefbc70d18103e9c185c11356dcfd4e1e19cb9a64209b4a43b61a4765
MD5 bb3460b1fd78ca5c2d1ec32752fd9c3e
BLAKE2b-256 70383018dab28c436fa46d9cddaaa49628945f693a14b78fde2cd59751fefe6a

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 270.4 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 90667c19afb8614bcf02fee0bd9cde8382ad2d318788f6b39bb19b35ff36cf39
MD5 aad5644dfd40ff304393206999a023c2
BLAKE2b-256 b21eeb21096310cd560e9d0e0cdc8b20fc58555d862ab9f1dff8efeec231c2d9

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp27-cp27m-win32.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 227.2 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 f1b89efc458fc94d13f5b64ecab516e0888edcc63a43d8a38de4d2b8ea9eb7de
MD5 5b7bde00d24f237fa7f9d110b6ea2cce
BLAKE2b-256 2670b698e25f70af5557616c6cc246932e5e991c5f141972cf4c605b130cdd0b

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 857a52483391b392a79df3e4f968e04013073118f224681407ce6fd3653736a3
MD5 c4701afef853c147ced9c340e1a24730
BLAKE2b-256 fb0103f543184332f623593f069ed1879c696a35bdaf45984a98d06b6de72915

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1eb06a04e6188e2a67120c16a3943d9370332c9210791f22022c4c117a256380
MD5 9671e8668d8f538d3408fc0a062385a1
BLAKE2b-256 38534842d32890ac455f0b00bec7260cf9ffad1248654323c596c5a8674b6f0b

See more details on using hashes here.

File details

Details for the file pyjet-1.8.2-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyjet-1.8.2-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 317.5 kB
  • Tags: CPython 2.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/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 89a1136a8afd55e3b78fe4c55436297599796c9a7789791aa0ca84fe577224c2
MD5 cff72382e00ffa1e73d29ce61130506b
BLAKE2b-256 9e1b02db5f01bf5064d822869b6db1417cda9114d60350eb8afa329e5bd7c285

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