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.1.tar.gz (100.3 kB view details)

Uploaded Source

Built Distributions

pyjet-1.8.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl (301.0 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

pyjet-1.8.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (272.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyjet-1.8.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (301.0 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

pyjet-1.8.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (272.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyjet-1.8.1-pp27-pypy_73-manylinux2010_x86_64.whl (300.9 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

pyjet-1.8.1-pp27-pypy_73-macosx_10_9_x86_64.whl (271.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyjet-1.8.1-cp39-cp39-win_amd64.whl (223.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyjet-1.8.1-cp39-cp39-win32.whl (204.6 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

pyjet-1.8.1-cp39-cp39-macosx_10_9_x86_64.whl (318.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyjet-1.8.1-cp38-cp38-win_amd64.whl (224.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyjet-1.8.1-cp38-cp38-win32.whl (205.9 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

pyjet-1.8.1-cp38-cp38-macosx_10_9_x86_64.whl (318.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyjet-1.8.1-cp37-cp37m-win_amd64.whl (222.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyjet-1.8.1-cp37-cp37m-win32.whl (204.0 kB view details)

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

pyjet-1.8.1-cp37-cp37m-macosx_10_9_x86_64.whl (318.6 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pyjet-1.8.1-cp36-cp36m-win_amd64.whl (222.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

pyjet-1.8.1-cp36-cp36m-win32.whl (203.8 kB view details)

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

pyjet-1.8.1-cp36-cp36m-macosx_10_9_x86_64.whl (319.6 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

pyjet-1.8.1-cp35-cp35m-win_amd64.whl (220.3 kB view details)

Uploaded CPython 3.5m Windows x86-64

pyjet-1.8.1-cp35-cp35m-win32.whl (202.7 kB view details)

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

pyjet-1.8.1-cp35-cp35m-macosx_10_9_x86_64.whl (316.1 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

pyjet-1.8.1-cp27-cp27m-win_amd64.whl (269.1 kB view details)

Uploaded CPython 2.7m Windows x86-64

pyjet-1.8.1-cp27-cp27m-win32.whl (225.8 kB view details)

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

pyjet-1.8.1-cp27-cp27m-macosx_10_9_x86_64.whl (315.7 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyjet-1.8.1.tar.gz
  • Upload date:
  • Size: 100.3 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1.tar.gz
Algorithm Hash digest
SHA256 c1653581606dfb083dbcf0889adcb6b5a48704b2f634a8a4b14e461f7d38545f
MD5 f6cafaf292eb846d3d52845239d559ea
BLAKE2b-256 d40134dfc950de6435ac94b9fa8c79e748d9dccbe63b17ba98e7b84159aad18f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 301.0 kB
  • Tags: PyPy, 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 976d94868e873b2c9d770212749304aed72c715b2493178e563b804823797ea6
MD5 312ed46b6f76a97032ffea8e1dde36c0
BLAKE2b-256 359e2985562dbb20fda2302d9e15e9a8216df91f4c67f76389523d9d3dec775a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 272.0 kB
  • Tags: PyPy, 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 795b4a00d2e5f49d75c3e53718d07e8a11598aae2d4d44d96c5cee55b6e9d5a4
MD5 42ed432264a20ba8a14f9478a53b50ef
BLAKE2b-256 501f4ed22e90306e51e4e64844deea3317f3923778edd522e059fb6f71d2b4b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 301.0 kB
  • Tags: PyPy, 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 607055c206d41b05af5e2f39b3c340ebb77db677794e08a1259dc56308899037
MD5 60b896c292317cbe863cef0a9771010e
BLAKE2b-256 c8ba4173b1a46eab9288a189a839254ba2da8f0b6dd927ea8ae8286831fb3872

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 272.0 kB
  • Tags: PyPy, 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7a20e7ddf837b7f0fc5e57fcc2eeec089704d8a770a74b31cf315b94193da548
MD5 952fcd1287792e35a2fb048cb506226a
BLAKE2b-256 72d8be6155d90e7e7638dc743eda5f8c15d9dad595eb273159e1eae01638b6ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 300.9 kB
  • Tags: PyPy, 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ed67b7aa5561e69f64c150c6193d3c16e338eb108544ec5d9e4a05b8509160d3
MD5 50efaf7a0548527974ed3e0420cf5616
BLAKE2b-256 76b639d7de5e29889f13af65da54f3e20088536767f18bada9d57790ea0dde90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 271.8 kB
  • Tags: PyPy, 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f3798b30366450596f76501af98d015eed66416c1b0c59b53b0592f3c1fa02d4
MD5 e0260d6d03f70896213f1c8e8fb8519d
BLAKE2b-256 2abf1626b6ae2d120625a745d75c39b83f599d1b38ba7364cf7cd8851e7abed6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 223.2 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 19c73d16f9cce41e0b43c3cb1988482f40db7d39e864b5c34316e35f0d4998c1
MD5 73e51205f8167c5f38dded3b58d1c838
BLAKE2b-256 b254644120bd4f43acc7006fef140913659b7535a028e1ae570eec98f6444a15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 204.6 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0e4fbe05d622c8fe89d8c20cf0fec48633b38f94683a60e780c2d78bd361f22d
MD5 dac94cfab0b8f0476378d5bb1effe7e1
BLAKE2b-256 6ca86ca2b161fc73282b27f3aa209911607cecb884ca7271ad2c20cdb659501b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-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.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e62e1147883bc38441fd17ae97e83ce7fce966816a41cc73775417187ab1127c
MD5 5e8714ca9d51a90261b4de8bb9742ebf
BLAKE2b-256 b20afefa4897682ff9098c904f72ad2e864b68a591c816bdb0522d63a6e5de9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-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.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a1ff66d969cfb242e845852328c96e4dd4e6e2ca189fb49fc2f65e585e1610a6
MD5 a308df879dfb4ac5853374cc48f03d5c
BLAKE2b-256 c2ec7586e0ec61c79bbc0044eda6ce140b0da14bbf55120791a381f53d407efb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 318.7 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 457ec2c75562aacb144c668d7e7b9e744d36dcea4bf47f053691fa43dfb41514
MD5 e7e445d5e876195ad5f6f26d2dd69723
BLAKE2b-256 57306b4f37d9b8886117cb453511861ab4a497d049507df5d601bdf9752f9256

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 224.0 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 085b36045fa4deb8a8759ec3e227201d518dd2f69a51ed0df03acd3a1f4374de
MD5 2902c74c8b4b9f45efb3c0e7f25bda04
BLAKE2b-256 2e3a188bcbba1974466443cb0ce5e27368b87430ac96dec1705223e9deef03f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 205.9 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 163d8bcdb8c1c0d9fbe5e62272c0da352107db9ef68d483f1816defae716f0c5
MD5 7fe518c9316dc25c857bb038b0f1e6a9
BLAKE2b-256 a855b72b6505bed8c2a74cc201c0a063399dd9d771690d82c407ca2a805dee89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-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.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 31e8219031dc750516d759db6c4697764f4ead24ec01d56e1d520346218ea885
MD5 175aa9a9169e51c029bde1240b0fce51
BLAKE2b-256 5c5129788f3e95d7ed099d21b48ca4608dcbf979b14fd6631108ad32dd91a350

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-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.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3743b11e1302f8a2ce20b17d7a76588f08346ba47c3d28f2da42fcbc466a4394
MD5 4eaafdeb8a1559a6fef5fdfdcb74aadc
BLAKE2b-256 17c63ff771731e1523c27688b62eaf30c258aacf611bc38e15dc16bdab8b7e20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 318.7 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 725648f49d0e9d42ecf12f42b86a363554abfacbfffce0ab0e9045c255cbe0d6
MD5 cdf08e8fc44955155b752256818acc76
BLAKE2b-256 48ed346d5c3a7c217b6042e41cf1c9804c67e1ff4d5eb720f868f91b9d1c05ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 222.3 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 217e6a7f3cf0ff531d726e64818786375708ef1f243dd874ed49ef3d89c876a3
MD5 1c43c58a3ca10cda73fb8c82400183cf
BLAKE2b-256 4b34dbadb8dc7cd413e07d006f808a7e049d96c1cab12fbdea2e41b574db7bb4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 204.0 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a959acac9b99690f42f42086372487014e4c7da0348e5a4d59d3a391af1eaeed
MD5 3840a50d8b1a2c9ae4ce564b8f0cc626
BLAKE2b-256 b0265b5b75c4b2435c7d8806a356ea27613f5b38b2f604c0e9690042717683e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-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.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0ae8956479274bb18371e70aff8d4cce0cccf9c5b8dc011243debd29a0eadef5
MD5 c69ad69049ba173542b54c9684261a9d
BLAKE2b-256 a3520199c870b235bc4bae6bb276ccf88b334c302ae65067d11fff09c906580d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-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.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ef956753b2340d1fba45cf8332420c3cf728d565fbf0fdbf4c71954cc95c8bbd
MD5 551d46241e15a5c41c3c5180ae77c706
BLAKE2b-256 2680a1fc78b19a68826ec263fa98eddb3d7dd63d514c555412b6598be586125a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 318.6 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ff8d0fe92c15812f648e69e5bf089d49f0f5649407f8f0ffd4088d777836b103
MD5 e60d15e15a15bfbf4f6fab3406f50a11
BLAKE2b-256 ecc19252693ffa956bcdbad923b757ffc281a976b1b92c26666b44f3e812eca9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 222.0 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ede5db47425b2757e3e3df5064092d8d87ae5841a1b5b039b35d9e021b9b3cdb
MD5 566a7e8cb3764b17020e1d681dbf44fb
BLAKE2b-256 ec21be96348ee1ebd6be3c3f8c3b9317859cb4d8db37de83c564e04955e763f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 203.8 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 46f89f66d552d9c38528eb3dec929be816a7cb39542428b4524a65855559ac7b
MD5 5a42e8dc1594464fea7b4849b1237f03
BLAKE2b-256 fe57b27bc8281834564bf0c9efb4aaaa46df00a0bfaf64b647adcb724eeac05b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-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.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0309c16472106c938455426d035c004ba9adeaf233652fd95f7bcf2ff4ab0ca9
MD5 eee0b4249d5502d371b46baf65ceac1d
BLAKE2b-256 1e5d003048296441b8ac50156419da9bf1d1f95e107193cec2d4a72b0d9c8255

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-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.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5013ad238c81788cfc5cc3c8ca40513dd51a226655bde502ed7e3d81251eeb0e
MD5 2c0cd74d6cd007c2b4a6cff73172c47e
BLAKE2b-256 a0574f44899747597c41332f6b142a480e4a4dcd817f03bcb68a7dd67dcdf727

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 319.6 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e490d599595a91dbdb0296f88c22c60b5eb32b3fb07d7e0b868ce911f37c6c1
MD5 e439c02b4969ca1e95c7cf63d7bb9a82
BLAKE2b-256 da72b5d2080d6305a342323319771f7f63f3c9afeeae2bf639e66b0f72396bbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 220.3 kB
  • Tags: CPython 3.5m, 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 ec952c3bf9a57d271154addd60f771d18bdfff61c3a990c66c46ab044c1d74f6
MD5 97e5a07462f548b06e68c7dadc4450bf
BLAKE2b-256 38b4920f98f163f7e5dbdb0a1989777951f43a68d8be4f4a5ba5a43fe7e74352

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 202.7 kB
  • Tags: CPython 3.5m, 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 890bf2065c4838aeae70cfb20074fce28cee2dea3450d662076f0eb84346d11c
MD5 0e70f697912f8ee540e7dda225b872d4
BLAKE2b-256 dd90d879904155cb0eba4cea15c047df5897571236d50703471f9901f6614854

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-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.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2b1bdc2c7fa864adfa3a996c18b21212249e87fbdf7316df4a64988c5ee7c88f
MD5 404597df6aed17253cf61ed6c0f6236f
BLAKE2b-256 c7c2f5cd2bedb310a3e2101ece64ea75303a574b3ac01a480406fdf6716fac02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-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.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 48d8570ed824ebe36a57302a033116c8269f6e16d324efa2a33424592f819c64
MD5 8549bde9eae3772ab8c297b92c3721b7
BLAKE2b-256 94c4ec65f0512cca74c3686a452677bdb705cb3873f1d861bdb4ad89d91351bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 316.1 kB
  • Tags: CPython 3.5m, 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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 597182a4f9841e08f83080a88021f3208f93fd8180bccb84143da282ffc65000
MD5 39c8f1021a0e029038ee4d571432ad76
BLAKE2b-256 9e6118cae337ff22ff6da7e59a0ad33d81bf79849fec083f56fbe45c28f14d7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-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.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ffafb6747c35a8b4cf7655209cfc76abbcfc9161b6e99ccea5b47412264f92a2
MD5 c177710dd1eaf5860e9f2865a4d1e541
BLAKE2b-256 828d8801f66bbf4f4d82da950d22b01979140e057e0a27d6abe1596ad452a752

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-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.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d8a94e17e38c5328672c5f2ea862ae4085a2108fb92a5db9b7e8de8fa60ffc9
MD5 4b4a97c66826acb09902a4bf7822b7a8
BLAKE2b-256 a4d184abe212a76f7439fe885e8dc73e4ab3ae318b785205cffbab049f13b476

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 269.1 kB
  • Tags: CPython 2.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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 9946db19936d2874288771887e10993338a23dac43d3a905624f904616ffb47a
MD5 b93ba3e3a6da19510c0b4b0d931e9570
BLAKE2b-256 028481f52850bb678f3beedbe922d51fb7a5346f0c9a469f11a83245d41ead0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 225.8 kB
  • Tags: CPython 2.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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 c72a4709f1737db903f6826d830718ffbab9cead331dee388af102c9fec9aaf5
MD5 5514fc56bd0bf87ffab1414105291bcc
BLAKE2b-256 44ead77a14e759fb984a02cf943efe5c28bb4dbeec41b43177153cc766d8d4c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-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.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a0ef05885f4e4b0079b8b83521d31f365b5437c78b3942dc480f9eb7bcc73915
MD5 87ed11b6a520b3f87f08b7ca9b636ed4
BLAKE2b-256 b078eb1bb9420512b981a8d49ace136ad6bb16f71ffd243be741f95a2f5c85d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-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.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a7d8bee1f23d3338e4ec10cbe9cc53c3e25b0ab4359c6e07eeab4434584ee562
MD5 fc5fe3387a6a8cd37d5f513ffd8ea4ec
BLAKE2b-256 abad918fe1ca369ca39c2cdc8f6422d088b4f704a91dc04598e3a0c53f91f776

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 315.7 kB
  • Tags: CPython 2.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.56.0 CPython/3.8.7

File hashes

Hashes for pyjet-1.8.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d4803cb9e84b78c309ea5f7e0b81d0c4d4568ceb96dff58b1109bf2da477e651
MD5 f3ac6ec8f6e78d91b1ee1936f0e2dd90
BLAKE2b-256 5eb5345e3ab6b898158288fe17de2992fcceb69c4f815a7b71e0e161feb536ea

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