Skip to main content

The interface between PYTHIA and NumPy

Project description

https://img.shields.io/pypi/v/numpythia.svg https://zenodo.org/badge/DOI/10.5281/zenodo.1471492.svg Test status Wheel builds

numpythia provides an interface between PYTHIA and NumPy allowing you to generate events as NumPy arrays of particle four-momenta. By default numpythia only depends on NumPy and builds internal copies of the PYTHIA and HepMC source code.

Standalone Installation

To simply use the built-in PYTHIA and HepMC:

pip install -v numpythia

And you’re good to go!

Support for building against an external PYTHIA is on the wishlist.

Note that if you are using a Mac OSX system, then installation may require setting an environment variable as explained here.

Strict dependencies

Getting started

>>> from numpythia import Pythia, hepmc_write, hepmc_read
>>> from numpythia import STATUS, HAS_END_VERTEX, ABS_PDG_ID
>>> from numpythia.testcmnd import get_cmnd
>>> from numpy.testing import assert_array_equal

>>> pythia = Pythia(get_cmnd('w'), random_state=1)

>>> selection = ((STATUS == 1) & ~HAS_END_VERTEX &
            (ABS_PDG_ID != 12) & (ABS_PDG_ID != 14) & (ABS_PDG_ID != 16))

>>> # generate events while writing to ascii hepmc
>>> for event in hepmc_write('events.hepmc', pythia(events=1)):
>>>    array1 = event.all(selection)

>>> # read the same event back from ascii hepmc
>>> for event in hepmc_read('events.hepmc'):
>>>    array2 = event.all(selection)

>>> assert_array_equal(array1, array2)
True

The dtype of any array of particle information is:

np.dtype([('E', 'f8'), ('px', 'f8'), ('py', 'f8'), ('pz', 'f8'), ('pt', 'f8'),
          ('mass', 'f8'), ('rap', 'f8'), ('eta', 'f8'), ('theta', 'f8'),
          ('phi', 'f8'), ('prodx', 'f8'), ('prody', 'f8'), ('prodz', 'f8'),
          ('prodt', 'f8'), ('pdgid', 'i4'), ('status', 'i4')])

Also see pyjet for jet clustering.

Tutorial

Setting PYTHIA

PYTHIA settings can be passed in one of three ways: through the **kwargs arguments of the constructor Pythia(…, **kwargs):

>>> pythia = Pythia(..., Beams_eCM=13000.)

Or as a dictionary:

>>> pythia = Pythia(..., params={'Beams:eCM':  13000.})

Or via a Python command file:

>>> pythia = Pythia(config='path/to/config.cmd')

The full list of settings can be found on the PYTHIA homepage.

Note that the “:” in settings names is replaced by a “_” if using kwargs. kwargs take precedence over params and they both take precedence over config. Example config files can be found under the numpythia.testcmnd directory.

Generate events

To generate events do

>>> events = pythia(events=100)
>>> events
<generator at 0x10cf06f78>

where events is a generator of GenEvent containing all the generated particles.

Generated particles can be accessed through the all, first and last methods which have two optional arguments selection and return_hepmc. Selection is a filter or a combination of filters with bitwise operations (as shown in the getting started example) applied on the particles in the event. The available filters are

STATUS, PDG_ID, ABS_PDG_ID, HAS_END_VERTEX, HAS_PRODUCTION_VERTEX,
HAS_SAME_PDG_ID_DAUGHTER, IS_STABLE, IS_BEAM

return_hepmc is by default set to False when using all:

>>> for e in events:
>>>     array = e.all(selection)

returns an array of particles, with the dtype described above. return_hepmc is by default set to True for first and last:

>>> for e in events:
>>>     gen_part_f = e.first(selection)
>>>     gen_part_l = e.last(selection)

returns a GenParticle.

Generated particle

GenParticle is the numpythia interface of HepMC::GenParticle, and has the following attributes

pid, status, e, px, py, pz, pt, eta, phi, mass, theta, rap

GenParticle also has the following methods parents, children, ancestors, descendants and siblings both with the two optional arguments selection and return_hepmc described before. For instance:

>>> for e in events:
>>>     w = e.last((ABS_PDG_ID == 24) & HAS_END_VERTEX))
>>>     w.children()
array([(240.60708981, 115.76101664, 126.16766767, -169.03439984, 171.22760682, 0.5, -0.87228439, -0.87228739, 2.34974894, 0.82838703, 0., 0., 0., 0.,  3, 23),
   ( 52.59241372,   9.21296404,  50.77873929,  -10.01763001,  51.60774235, 1.5, -0.19283178, -0.19291222, 1.76252302, 1.39131523, 0., 0., 0., 0., -4, 23)],
  dtype=[('E', '<f8'), ('px', '<f8'), ('py', '<f8'), ('pz', '<f8'), ('pT', '<f8'), ('mass', '<f8'), ('rap', '<f8'), ('eta', '<f8'), ('theta', '<f8'), ('phi', '<f8'), ('prodx', '<f8'), ('prody', '<f8'), ('prodz', '<f8'), ('prodt', '<f8'), ('pdgid', '<i4'), ('status', '<i4')])

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

numpythia-1.2.0.tar.gz (11.1 MB view details)

Uploaded Source

Built Distributions

numpythia-1.2.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (13.0 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

numpythia-1.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (12.6 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

numpythia-1.2.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (13.0 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

numpythia-1.2.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (12.6 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

numpythia-1.2.0-pp27-pypy_73-manylinux2010_x86_64.whl (13.0 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

numpythia-1.2.0-pp27-pypy_73-macosx_10_9_x86_64.whl (12.6 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

numpythia-1.2.0-cp39-cp39-manylinux1_x86_64.whl (39.7 MB view details)

Uploaded CPython 3.9

numpythia-1.2.0-cp39-cp39-manylinux1_i686.whl (39.0 MB view details)

Uploaded CPython 3.9

numpythia-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

numpythia-1.2.0-cp38-cp38-manylinux1_x86_64.whl (39.7 MB view details)

Uploaded CPython 3.8

numpythia-1.2.0-cp38-cp38-manylinux1_i686.whl (39.0 MB view details)

Uploaded CPython 3.8

numpythia-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

numpythia-1.2.0-cp37-cp37m-manylinux1_x86_64.whl (39.7 MB view details)

Uploaded CPython 3.7m

numpythia-1.2.0-cp37-cp37m-manylinux1_i686.whl (39.0 MB view details)

Uploaded CPython 3.7m

numpythia-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

numpythia-1.2.0-cp36-cp36m-manylinux1_x86_64.whl (39.7 MB view details)

Uploaded CPython 3.6m

numpythia-1.2.0-cp36-cp36m-manylinux1_i686.whl (39.0 MB view details)

Uploaded CPython 3.6m

numpythia-1.2.0-cp36-cp36m-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

numpythia-1.2.0-cp35-cp35m-manylinux1_x86_64.whl (39.7 MB view details)

Uploaded CPython 3.5m

numpythia-1.2.0-cp35-cp35m-manylinux1_i686.whl (39.0 MB view details)

Uploaded CPython 3.5m

numpythia-1.2.0-cp35-cp35m-macosx_10_9_x86_64.whl (12.8 MB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

numpythia-1.2.0-cp27-cp27mu-manylinux1_x86_64.whl (39.7 MB view details)

Uploaded CPython 2.7mu

numpythia-1.2.0-cp27-cp27mu-manylinux1_i686.whl (39.0 MB view details)

Uploaded CPython 2.7mu

numpythia-1.2.0-cp27-cp27m-manylinux1_x86_64.whl (39.7 MB view details)

Uploaded CPython 2.7m

numpythia-1.2.0-cp27-cp27m-manylinux1_i686.whl (39.0 MB view details)

Uploaded CPython 2.7m

numpythia-1.2.0-cp27-cp27m-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

Details for the file numpythia-1.2.0.tar.gz.

File metadata

  • Download URL: numpythia-1.2.0.tar.gz
  • Upload date:
  • Size: 11.1 MB
  • 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 numpythia-1.2.0.tar.gz
Algorithm Hash digest
SHA256 0f2f931f59e9d9b0c5e3d3e8360c9063e878f4c83ec4b18bd34a4038aedd800d
MD5 24fa3320a9a0574ef39f6fabd7567ced
BLAKE2b-256 a6d27576508ab030252bbcb150f8e1d175ba356a6185f6f2ced862993f3d4c28

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: numpythia-1.2.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 13.0 MB
  • 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 numpythia-1.2.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 79cf7a5ca0154cb256c0f153490162bcb877bfab5b3739ed1331c2bb30f8b20d
MD5 a8f334b9926249d19c80995db994fa6c
BLAKE2b-256 cded744493eb8e9e251982628329ee437741533fd6be342984bd93e63fef3399

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: numpythia-1.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 12.6 MB
  • 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 numpythia-1.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3ffab56f6b99075d275348896317d2a879a4c078a71c5465ede2211b82d9625f
MD5 aab709f30e1aa3f58c9cf047358c3f26
BLAKE2b-256 5251d84d3b0c2dbb952ca16ab3e947861c2ebf247ac6c48be0a77152162a5eb0

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: numpythia-1.2.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 13.0 MB
  • 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 numpythia-1.2.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6aac7f87ca496c5d8e9be2d1586cf27923f0dffbbb889b4337c08228c0cc9ae0
MD5 10d3ed65a6c95f42a5e1437081b4433a
BLAKE2b-256 343d64d00db8310b8e26215bfc470ecaee5c768f3a391765c1a71ab8fb1d4b79

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: numpythia-1.2.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 12.6 MB
  • 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 numpythia-1.2.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc1649ded764a4d18295e2f52110f0e3c12cf5cfb12cee694ebc186b9c7cf437
MD5 58373017c2faf58182e4f20df9136d37
BLAKE2b-256 d4741ba98d85896a50d324857e4c25caf1198323efa4887cce0ffa06b418ff2e

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: numpythia-1.2.0-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 13.0 MB
  • 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 numpythia-1.2.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 81eb9b1f2d80f8e1b5c260ee493d16f9f5abdd81a11aca1e71e798521f5e0ab3
MD5 dd77f7e53c44645ed6742178033bebb3
BLAKE2b-256 17dce4e2ac8eeb545dd56d05020ab847854f7fab468942fabfe5496bbbb018a4

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-pp27-pypy_73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: numpythia-1.2.0-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 12.6 MB
  • 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 numpythia-1.2.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 384b9912e59cceb678a41463f691a22284a7df1705ad19f2a74f8c50085e087d
MD5 994213b3507853dc3f52c42049aa4237
BLAKE2b-256 4d13a40116907bff251fdd4a20f26cd4fcf7505f79435a37b3479bb1cf46cb0e

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 39.7 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 numpythia-1.2.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5a57e6c236f85608c73128d55a4618b74f1cac01e00159d8050469fd4c107d2a
MD5 389eff4ad46cf98ea5b906e4bb6bc13d
BLAKE2b-256 f4e6b2af7dd875a0a57aea6763725d25aea453176651cbf7018df5c5bf336852

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 39.0 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 numpythia-1.2.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3a2bf6274977f4e83dd00c38cb20aa30d6da38fadff3941d9f7433eab0440a6e
MD5 6ba739ba57858493617397c1ec63c3fd
BLAKE2b-256 665b32182f0e20854721ea5dacc32df4d7011357fe0ce1945715a61d6f0e5000

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 12.9 MB
  • 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 numpythia-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b41a2af7cad39ab7f25fd470d979c31924bbaddbbca05963f36d2b19df373528
MD5 262f394fae39d560af20e39085579c22
BLAKE2b-256 71051d1d2a86647779a9cfbf5e8cba6d3c01f6ccd29926134b60002b3c4a8180

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 39.7 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 numpythia-1.2.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2b54edab5df525ddde69178339c267e2deeb005e88c434e90be9cb0bb1b0583e
MD5 910f735319a103fc84803ef15b2585cc
BLAKE2b-256 1c9577be5efe83628431a800a48b8cc174f78041ab5af0ce117901f3eda1f31c

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 39.0 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 numpythia-1.2.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f9da58e379a10f3e39a609730ce2739d5cd0f13263cb51ff7c74ec2aaebb2beb
MD5 3f196ef07ab795969e086a5b8d26442d
BLAKE2b-256 1c35d4e2582f2ad85c0a903193348a3f4d7e0fbdd7004397cbf1b534c7393862

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 12.9 MB
  • 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 numpythia-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 73f6087040462b7e2a40dabc41dd41ec5ffb111365d86646619d10caa05bdc9b
MD5 9b30d1e6ce6d40b84338e9172253bb44
BLAKE2b-256 62dafbd9e15a1115922d643264dc82cd72bef14ecd1eb7aed9d6b5866c42a4fa

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 39.7 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 numpythia-1.2.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5b1fb1b639d2dceac7eb55ece4147a96d3ab6942ef4825f570ad0ae948e3cb34
MD5 760f9c89de36f988b44317f97bb61560
BLAKE2b-256 b1f180172de9cfe56b75546aeb7c0ba2543384754f5c9e2e81d9934da0690aba

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 39.0 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 numpythia-1.2.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c43ac4c27413d4d3a34b8072117fb234868d525d511e9c0f1e609da2de564c19
MD5 d5780bcdf4afe3098034dfde440cf8ac
BLAKE2b-256 cffeda9414e18466257810e87c8df7f3730c86fb5baf0995056bc64d84735786

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 12.9 MB
  • 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 numpythia-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec9cb47c3399519dd52be0fbb9fa65702f9292bcabb77c34796517db18f8d8ab
MD5 8e8c27fc582a78d57ef326fd7a1820ab
BLAKE2b-256 c4ebdae922befdca2fd6539d5621c40a8174dafa736ff37b41c5b22126afd902

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 39.7 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 numpythia-1.2.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1a324a9aef12df2e403814f028042b46cc884c7846d6b22cf13a3a8ee4e077fc
MD5 45634974babd91836f3d28c7f1a663b2
BLAKE2b-256 ea524e5dae903ce03c4d2597bc4b3749d6660fcc37caaa380d107022dabaf7cb

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 39.0 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 numpythia-1.2.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d0f13deb25a75f8359ed2fe1ed8ca877c599e1d2f5c94e1c779033cd7ad7723f
MD5 51e4dfdf5fb1a71ad760613485a64c1e
BLAKE2b-256 7e9e253f66cad4da55949191dc7f7d50a87bf1ed7967fbe298dc86b2552243f4

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 12.9 MB
  • 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 numpythia-1.2.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a59e721cb695005554f66a371a08d3581b281d6efd0940d80402f46eaddbb388
MD5 769a1470848b234b849eb3a3ab02953c
BLAKE2b-256 9bc8222ef627b9696555b981f9d0d270404d32543e87a844f8cb45c299c3090d

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 39.7 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 numpythia-1.2.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 177f079ef0febe15764cc5a9cd1a288246b57ce3a1d8e3310037e3323f9db661
MD5 d17d5751c2fba4ce3925c183ace0db4c
BLAKE2b-256 4dad30b14b57f7258e2f83f0fb4bcd702c45de15f7f5b5e1e09ede9dbdb13855

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 39.0 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 numpythia-1.2.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8099ca2ea41b0be1ca487f1088c3e33c38b8852ff7a90de168509a60dece1219
MD5 5a25353ca6b648637bd6a3c92932145c
BLAKE2b-256 5bd62d3a34863bb45e5f6d299d47033a6f27adb63a397e35f0410a442b9c8601

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 12.8 MB
  • 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 numpythia-1.2.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 614e7cc25d10ce6193e8ea4a821c0887b1e8f7d07f533cd31cca21bbd93b4110
MD5 296f78ae981b8bc75a9344a6c8f965a7
BLAKE2b-256 c98dd6dd56b9f7538e4c773fee7532d47929e94edd9dd0ad708d90061d64982b

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 39.7 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 numpythia-1.2.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6fe074a07b617256064cf9cb71756208d9c4c2ee1a52ae4b1fec71a16e23677e
MD5 bdf3468483a1573ec93a17a0798a5676
BLAKE2b-256 a4012172a65860532526cfde27d630010d7e5a4b4490cd847c1c9e9a46d4b0e1

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 39.0 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 numpythia-1.2.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 68d052dd16be6a3a4016916cecd19c5f8dd22a55144f1c1c2000c20b0fdbb145
MD5 dce48e2d70495cdda61b9a4ea679183b
BLAKE2b-256 eb93ff1d53f866f24fd5648aa0318ab524b56cb03db294883259050b39e96713

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 39.7 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 numpythia-1.2.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d04624d35cca414e6ed42ec9b529d15fc078cd1d00d5823f9c26f79963cbb840
MD5 d95079cd13ff26d88d8429dd22795e2a
BLAKE2b-256 d3dac59bab78057371b6da5d571d80e018c034097380e36deadb82df0b82a696

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 39.0 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 numpythia-1.2.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 29b5050d68d4e2816bee6040d78b62e9892a3820ad2372972fb0650c4031af1a
MD5 ad49c551fe3c81b21d1892ba8d2ac877
BLAKE2b-256 d4cc06f612c524dc47db4c9972103af1528da92d448600bfe75b8b2d7392145e

See more details on using hashes here.

File details

Details for the file numpythia-1.2.0-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: numpythia-1.2.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 12.9 MB
  • 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 numpythia-1.2.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ab0221579fded25459e677bb52cd68e9bdda2f3370e0cbbb8f3dd41791f92003
MD5 d916126b8124fefc918c1aec67b49ebf
BLAKE2b-256 66c2cceeef982fe931d451fbf4a3e2c77fc946b5d3757e0e2e318eaf0d19b2ad

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