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

Uploaded Source

Built Distributions

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

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

pyjet-1.8.0-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.0-cp38-cp38-win_amd64.whl (224.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

pyjet-1.8.0-cp38-cp38-macosx_10_9_x86_64.whl (318.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

pyjet-1.8.0-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.0-cp36-cp36m-win_amd64.whl (222.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

pyjet-1.8.0-cp36-cp36m-macosx_10_9_x86_64.whl (319.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

pyjet-1.8.0-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.0-cp27-cp27mu-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

pyjet-1.8.0-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.0.tar.gz.

File metadata

  • Download URL: pyjet-1.8.0.tar.gz
  • Upload date:
  • Size: 100.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0.tar.gz
Algorithm Hash digest
SHA256 249888d068a899b95e873c95fa0974072c656f0d055d092f5ac6ef8ba02fde6f
MD5 0022dfdec2392ecd39ad2845cbe10931
BLAKE2b-256 977c33335b29212455c783e4896549edf6b939f0071cff58762201afcdea01cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d357d77c5b8860177e2d1a4c82cb89d07d1a183e60268d70332adbbbd1337caf
MD5 01eb1b5eeb9a558942f715477ec47236
BLAKE2b-256 1a08cec6c36f7fa429793d2c40c7466e0673acce8eb7894e1e62b9d9cc08f0a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 009b1e8d8be0e400e176b94022a860c51b5cdcfec621f1291040b6829bc5e248
MD5 86cd42527b77d2e348ddab84bd5dd190
BLAKE2b-256 a6418111dbba024d7ad9293f3479e24d8f4b6a6dab9f463de3c8f54ccc06e306

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2b0144416787baacea16a2971b84a9c3e6847a88466b8453449c06b748cf102a
MD5 750028560e40448208c96bb2836fad53
BLAKE2b-256 1fd71d55eea0c860dead8a7ce30235a3dba9e099cfc9cf5a59b132339cb89801

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f100bd35dea2d5078c66a2130b1357a19ec3fd776821fd05337db218304aa510
MD5 1b696b0f219bc5d80df7131810ea89f5
BLAKE2b-256 342375eef7294fb007fb534d15d3abb0359cbfe7ec7604246a4ef8909c725977

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2289e432520f7d93b6ad23a8b4826e164c9d3531c3bd4283eb2cc7299ccb3396
MD5 ef2af0a0fa93c4d9b3cab9a00c58047c
BLAKE2b-256 531007010db4e9328bed29727601d463735b13339a207bc7b8ee6b874f44d0d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9aa1ec021a033557bb0c541638530f1f3ca51471535bd4668b1cc93f51a6dcac
MD5 5b4f97c93762c2f3a95681e3dc14eae3
BLAKE2b-256 d8ab795867ea931d5c87b3a41d9ff4cf8b16bba6e4b2b07b1519caca7742e79b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5c97afa41613f2718883361b9949b6c6dfa666d19c05a1057010d8a123caa4cd
MD5 1779ae75dfe13e15b87414b648b595fd
BLAKE2b-256 c6e6afaefe1fac860d64bcc2016f58b2480e7f5c3e786ee37830e25c7094d38c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 15db9d46abbb4d9bbf607013002d373c97caf3ba661f085d21fb9458c6e349d2
MD5 aad7560375215665f33d27553d5974a5
BLAKE2b-256 f443d40b9ae216eaf07e8145548eb721607d497d4256b676d56b99952b421d20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d9f89911c2dbc51b99f6a234a9a94bb47f21ba8c448da9ec98aa0dcef96185eb
MD5 ec9782aec388c245d9d0721ebd3936a3
BLAKE2b-256 55dd6583119db71e17107743997d773c5fec5624ac1dcd3fab1799ab2b376af7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 beca18a6dae8ac609b565ff1e6c8604a9c5a9e8cb93dde6fac417b048c8c7753
MD5 c2ba6561ede76bd0007708ab2906b129
BLAKE2b-256 9926d706b247b3cf5f3dc80341f33b098644e88f89321585004f1bb67d278fe7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9be3e36de22bf1c21e690278dfcef3e0da76f25770331f86f78054d9dd6326f8
MD5 77fe14320bb78c4885af5f74412af0ce
BLAKE2b-256 abb406ed678dee30d664b4535b99daabcda2c3681f686d7aa7e483b13015bc56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e0eba03dce4fd67b3ff76ae948980ae73d3320a9e7de09c98dd624f415df9bbc
MD5 9f3286fa868835ed93b3d80dc7787e23
BLAKE2b-256 e33dda9a82b91be97d7d1e7343d8c27cdea365bed4de45d280a8d4784e18c781

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5895185552d4adfac58701eb945c07704e2598339b3732342c0e200c6174f6d7
MD5 0ce4c9a83b40b0594940313cf2218adf
BLAKE2b-256 e60198430d583ec789b97e70e1604a54b270427811160896842f71f018a0d0f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 191bc884e4725f01d1ae86462b96163fc6625fc7a2d16ddba785d09b1fdf3e0b
MD5 3ba33a24855bdfe9ed2ac7e6985418e3
BLAKE2b-256 30860c1e357a2bf9b0169bca58a1c0916323fd05baa5b0ab5bab73c74c06c9c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a208dd7c41b71082088ecd14e27a5dc0039830cd140aef3c9a6d5b21dcc2c076
MD5 4936dcff1e296f3d9cdb8294f094edb7
BLAKE2b-256 d4e66aa3e2a2c08c3bc707f6c3a59c2914e6250c3ad62f89629f56f00d30ac83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 318.6 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4520e1e2366b945533bc351690142ff90340b50d5cc53cba47990159f746f6f3
MD5 14680fcbdf77c7d638ec26463c2886f2
BLAKE2b-256 588761b04f61b227e3bb5eb06adc2b3317d498da4beabafb6cfc8e4f463eec80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 01105d9004d3e1b35d6e4c0f9f77a105e8105862f0569f0a60cd9a5f707c1c63
MD5 564a2b122ca4f2f7a1da20138ef62ec8
BLAKE2b-256 8b3943741861a551d1caa28f182bc0d05caacac745889459853b06658b7a4d97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ff7477760ed232db35af1de1f4f1932a2932e887ca7f3cc122861549e2bd26ea
MD5 a805d6b25be2daf9cc5e2e79b7d7c766
BLAKE2b-256 844f6bf7409c6955bda57a95b71b86208abf3f45b03b351c08cb81a90ee49da3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5093f8010e72f1707a991642d51338c87ed255625bce719a414d7c0f45161478
MD5 11bbf98d7c3d8be1e0e1b728c492800e
BLAKE2b-256 83fb962585d78d55462b9b44628e02ddcd4d15a1ff83e7e9b170b099259562fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3bad53ee124c2696dd331caaed16b800bbbfab1036085ac56c49ccf816e8d7ec
MD5 e38cc555985e24e63fb328bd45c5214c
BLAKE2b-256 bd0c9f357f3960604861d1109352f116aae657243baea13183be9550ce6acdfe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8c3c3e7c7bae05f15df059a58faad53f6be9b6c23ffbb95de17e95b18634618
MD5 16466ac1125be21b5e72032385bc8041
BLAKE2b-256 8e606690acf0d442e90cfdf9ebbf14b2b19ab304059288a8c68fb9229a561c10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 86a513c0459c5c2d6b0322b718eed8dd82a47826f86837170025eba601d68fe6
MD5 46d71b0d42c4d8d2937d9d14330163da
BLAKE2b-256 6c2134c9fc09a7b794335b6afeeb3f1b5ba0156cef1efe17b709c9799d0a5846

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 3b944ff915d2ee96587da0e3c332152654ce9af6da5e5f64dfe4e29aa22b712b
MD5 b92b6f5df117141a555b0fb809ddfa84
BLAKE2b-256 6538217e28891cb0d970a27d83697c12297620eb74cc2cd47cd1b7f774486bec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8ec5bb36a0cee0aff796b512f00b17fce21472b09d90fff9cc5654059ca40e06
MD5 7c900a704fec5ff5357961f1a31d89d3
BLAKE2b-256 138a2d25427868202ae0e49d22b17244dfa31e52239588e57a9a73f14587fc93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 83344acd6bf467e32f18971e8f6ef81f29f2e7e71b2c2ca8da8fe255ed043dfa
MD5 af848f7b72e8727b7447e72988a35219
BLAKE2b-256 5531ba23953850bee092cef4c56c6d3a11e597aa7e931af9a5145d984634f2b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 319.5 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 73b24eb86a11c2f5f3ab24620be84d42b7b5ec6e14e3ef116cb213165584ee59
MD5 a70691001af6ce9b099942b9027cb37e
BLAKE2b-256 c7384db17a012107b829da79135a78341b2e205ae758eed0744811bd5d70d937

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 4954f62eeb51da0c13ab30b72ac51f0661b066006337985a670eebe46501cd2f
MD5 4ebae2fdc8fc65eb84da00a21a5890ff
BLAKE2b-256 7121a6ff8c980bc3c56390592bdbac73b979e800e5a339c06696945fe75047db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 6bc43d66a3cbbe9c1b30d8c5c567b8219229b10f8a06f5158b5a75f133261cb6
MD5 b8d12e48367d36150f5c0c61901181fc
BLAKE2b-256 ac7249919f2055a96bb2e48db48b94c07e457a76d18d116193a28a7401eb5b44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0a3a1bcf93fc8a5931a6594f8f5bda7d84b4daf08fc05bd5add81d6cf067ce18
MD5 330f71088976958719f51b0737651101
BLAKE2b-256 5536b19edde84ce0eb3013a2bfa788bc301f9ce02e0ad57133e5560181fd2428

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 24439d80902da2441aaeb7f703129b4c32c9d890dcdd9dda856f66517859e695
MD5 1f422aacfd842a963571e5d18491c511
BLAKE2b-256 60c5afab0bd747c2a6062f5d35959930eec1439a71a786d14d597dc521d36db2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9438c66954f2cd5709b0525b92188588ddaa411cdda5360a15caa8cdc0264ac2
MD5 52e4874565bfb44bb016bf84446c080e
BLAKE2b-256 e485b5ea64665fa5521682e1709128193d28d1c9fcb0ddbe9286cfb6ba82dbe3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 da4a80881915216f09e73204f2caa86d46e481e12708623af9eae54a1ae17aaa
MD5 bf270ad9331c7861acafd96cbaca38e8
BLAKE2b-256 09b1eaf7dbf9f2cb71556ba72ece063aa7e6329b5152cdad0d91178061d1a9d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8e6b749d3554bc6ad820d4e9ae3435d7dc87521ebdc740a70676837de8a3e1cf
MD5 5c0873523adeed05d1f8e2e71012fdab
BLAKE2b-256 8ca2bb1c50f793b23fc498e6883f1da4aa2a0822d92497d7a08cc158f500ebc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 2e446a1a99c3a955f10f0109dfa2cc41007ef7c644b2815e30af124085e0f56f
MD5 a86991680debe1a2085e290460021d45
BLAKE2b-256 0f367bb894678e4b1b898f24a7c8d20ad03e74ddf73fe7eb2cda8e4dd73b93cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 7558e0307b47f35727dc28942f4ab198852e10ee4eefb7d4ba38f1232329dc04
MD5 826532a4ace368ae648d7c8d5de32a59
BLAKE2b-256 d03f0f27f41759bf628ea5c8a6ae6b0c5f6695c306dfdb59ce3b225b439bd8ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1329d6bfc5ad7d01137a95686f2c5911e7969ee5082210b69cfddf52d86fcb13
MD5 6a44dcc3099c4a6c0566eff4f4ca80f2
BLAKE2b-256 9c960bf9793656999dd1fb6a0bfc7547b12e44bd182e2d644e89a8b4275e45e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9893f0dd14008793083c105cb68278879f6f4be2e7376bf273f3b613065c8fdd
MD5 495a9784e28a1b260286d9a61931c33a
BLAKE2b-256 0bfa687e2e22e43cf9863a274622c9784927a44c1e21231238fbe33b1d0b92dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyjet-1.8.0-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.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for pyjet-1.8.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a82b81670c12055124aeef3419bfb6ddc9d86f06c16e4657933149a02c406815
MD5 d83cf4589e4e2b68b0db58a641bd11b1
BLAKE2b-256 71ce742fd3d39719f603779a7de8274f26b87c9fa21857ab8114d160705ebd9f

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