Skip to main content

pyAgrum is a Python wrapper for the C++ aGrUM library

Project description

pyAgrum

pyAgrum is a Python wrapper for the Agrum library, to make flexible and scalable probabilistic graphical models for inference and diagnosis.

Sample code:

import pyAgrum as gum

bn=gum.BayesNet('WaterSprinkler')
print(bn)

Example

import pyAgrum as gum

# Creating BayesNet with 4 variables
bn=gum.BayesNet('WaterSprinkler')
print(bn)
# Adding nodes the long way
c=bn.add(gum.LabelizedVariable('c','cloudy ?',2))
print(c)
# Adding nodes the short way
s, r, w = [ bn.add(name, 2) for name in "srw" ]
print (s,r,w)
print (bn)
# Addings arcs c -> s, c -> r, s -> w, r -> w
bn.addArc(c,s)
for link in [(c,r),(s,w),(r,w)]:
  bn.addArc(*link)
print(bn)
# Filling CPTs
bn.cpt(c).fillWith([0.5,0.5])
bn.cpt(s)[0,:]=0.5 # equivalent to [0.5,0.5]
bn.cpt(s)[1,:]=[0.9,0.1]
bn.cpt(w)[0,0,:] = [1, 0] # r=0,s=0
bn.cpt(w)[0,1,:] = [0.1, 0.9] # r=0,s=1
bn.cpt(w)[1,0,:] = [0.1, 0.9] # r=1,s=0
bn.cpt(w)[1,1,:] = [0.01, 0.99] # r=1,s=1
bn.cpt(r)[{'c':0}]=[0.8,0.2]
bn.cpt(r)[{'c':1}]=[0.2,0.8]
# Saving BN as a BIF file
gum.saveBN(bn,"WaterSprinkler.bif")
# Loading BN from a BIF file
bn2=gum.loadBN("WaterSprinkler.bif")
# Inference
ie=gum.LazyPropagation(bn)
ie.makeInference()
print (ie.posterior(w))
# Adding evidence
ie.setEvidence({'s': 1, 'c': 0})
ie.makeInference()
print(ie.posterior(w))
ie.setEvidence({'s': [0, 1], 'c': [1, 0]})
ie.makeInference()
print(ie.posterior(w))

LICENSE

Copyright (C) 2005,2019 by Pierre-Henri WUILLEMIN et Christophe GONZALES {prenom.nom}_at_lip6.fr

The aGrUM/pyAgrum library and all its derivatives are distributed under the LGPL3 license, see https://www.gnu.org/licenses/lgpl-3.0.en.html.

Authors

  • Pierre-Henri Wuillemin

  • Christophe Gonzales

Maintainers

  • Lionel Torti

  • Gaspard Ducamp

Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

pyAgrum-0.16.2-cp37-cp37m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

pyAgrum-0.16.2-cp37-cp37m-win32.whl (1.8 MB view details)

Uploaded CPython 3.7m Windows x86

pyAgrum-0.16.2-cp37-cp37m-manylinux1_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.7m

pyAgrum-0.16.2-cp37-cp37m-manylinux1_i686.whl (4.2 MB view details)

Uploaded CPython 3.7m

pyAgrum-0.16.2-cp37-cp37m-macosx_10_7_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.7m macOS 10.7+ x86-64

pyAgrum-0.16.2-cp36-cp36m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.6m Windows x86-64

pyAgrum-0.16.2-cp36-cp36m-win32.whl (1.7 MB view details)

Uploaded CPython 3.6m Windows x86

pyAgrum-0.16.2-cp36-cp36m-manylinux1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.6m

pyAgrum-0.16.2-cp36-cp36m-manylinux1_i686.whl (4.2 MB view details)

Uploaded CPython 3.6m

pyAgrum-0.16.2-cp36-cp36m-macosx_10_7_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.6m macOS 10.7+ x86-64

pyAgrum-0.16.2-cp35-cp35m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.5m Windows x86-64

pyAgrum-0.16.2-cp35-cp35m-win32.whl (1.7 MB view details)

Uploaded CPython 3.5m Windows x86

pyAgrum-0.16.2-cp35-cp35m-manylinux1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.5m

pyAgrum-0.16.2-cp35-cp35m-manylinux1_i686.whl (4.2 MB view details)

Uploaded CPython 3.5m

pyAgrum-0.16.2-cp35-cp35m-macosx_10_6_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.5m macOS 10.6+ x86-64

pyAgrum-0.16.2-cp34-cp34m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.4m Windows x86-64

pyAgrum-0.16.2-cp34-cp34m-win32.whl (1.7 MB view details)

Uploaded CPython 3.4m Windows x86

pyAgrum-0.16.2-cp34-cp34m-manylinux1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.4m

pyAgrum-0.16.2-cp34-cp34m-manylinux1_i686.whl (4.2 MB view details)

Uploaded CPython 3.4m

pyAgrum-0.16.2-cp34-cp34m-macosx_10_6_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.4m macOS 10.6+ x86-64

pyAgrum-0.16.2-cp27-cp27mu-manylinux1_x86_64.whl (4.4 MB view details)

Uploaded CPython 2.7mu

pyAgrum-0.16.2-cp27-cp27mu-manylinux1_i686.whl (4.2 MB view details)

Uploaded CPython 2.7mu

pyAgrum-0.16.2-cp27-cp27m-win_amd64.whl (2.4 MB view details)

Uploaded CPython 2.7m Windows x86-64

pyAgrum-0.16.2-cp27-cp27m-win32.whl (1.7 MB view details)

Uploaded CPython 2.7m Windows x86

pyAgrum-0.16.2-cp27-cp27m-manylinux1_x86_64.whl (4.4 MB view details)

Uploaded CPython 2.7m

pyAgrum-0.16.2-cp27-cp27m-manylinux1_i686.whl (4.2 MB view details)

Uploaded CPython 2.7m

pyAgrum-0.16.2-cp27-cp27m-macosx_10_6_x86_64.whl (3.4 MB view details)

Uploaded CPython 2.7m macOS 10.6+ x86-64

File details

Details for the file pyAgrum-0.16.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1d6e4852186b7bd17142c0411209cf06f1e2730e75d772a51ac6b76845f78494
MD5 541ddc69374498a04263b2e6452d679c
BLAKE2b-256 394143040b4d06d2756f927a4f15f3fd5c5b7c38baf16c1ec7ccf4b992d6eb09

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 61a4f1cdc02f91fb520775c16b0dbc510138459ecc557a83c592ff09852e421f
MD5 0ca1d808bd53eb991c749a93c4bafda3
BLAKE2b-256 d7333376aae16fd30a3287b6ce11c913ef0159e63d88957a40390bf66381619a

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 45e5d73300103b5f0ab082418b3d29344deaa5b58fb3efd5e9d5c5a3e0d87706
MD5 ce2bd77f3f82458d93d49e1984eeafd9
BLAKE2b-256 f0740f2b0288c70aa7b99a5b17ca1f0746646ef8d3507737a27889c6811766d6

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 badea7a5aa467b3d3dd7b91ca63ca6985f29ebddc93918f3ea231b872bc1113c
MD5 5954c16a51104697530be27e3d088d27
BLAKE2b-256 513555eff1e710a2774ef86fadb25ae5a1e09b345b73baca19996020c7937216

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp37-cp37m-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp37-cp37m-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.7m, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c79a1bc52abdb99e37114ea406133fb01cbb07472877dfe2934fc72b8869919a
MD5 e9316931116a7e86239a832b62ba754b
BLAKE2b-256 88073a126c28ed8a62986a3f1c894d99a7d10101da69c6d25cd5a1064d907a90

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0ad19bb31852d71e2badfcdafaf1a0721bbc00bd40934aa34be157389c141e14
MD5 7809e689ebd32fee93b68e19ddab43d7
BLAKE2b-256 6e0af76333d93295e3ae2faac58ade97f2d0375f85320b191fd536c66e3fcf10

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 3a48cba4f5da896b7301ae2492262d8ec8853e74e90472a25787ee7edf6663d6
MD5 ba760af2355b7d21037026d98fd3c9ce
BLAKE2b-256 1294574b91828a6c036cdcdc65fc17c7e8ae27678d6fa2ea7b19bf12631a00b6

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 26b5cc35a52ee3ce110f1bf57c6a72bf323147c478ad0262c4f77143e8abd0bb
MD5 698a9ba6c3f53e8a4d01ca745ee9e50c
BLAKE2b-256 38e9a42246e74e823697b26dad53f2ee66e4f7aab148b2faddaa1cb97a93914e

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d84694cc45430c64a2a4f5b9891fb9827fb744dcec4b4d7c47955315a5299ce6
MD5 f19f6464d5180c5a3b249acd13b233f9
BLAKE2b-256 9b1336bc31739556787947bad0d1b4553fadfe62405ce7f687ab41774e6d471a

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp36-cp36m-macosx_10_7_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp36-cp36m-macosx_10_7_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.6m, macOS 10.7+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp36-cp36m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8c2edf02d7397726396cc97c96ce50a0a1e8cf92cfc9f36aecc552c48eafd55c
MD5 732eea9ee14b953572b340d73c5c523b
BLAKE2b-256 35640166db49130d89f32c7942a74621d332c1ac15dfc909db5be2bcf7a4ebfb

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 8262919f6b91714b86ac3f813ba94907052c773249cdff594f6d3750f1f4dbe2
MD5 6a7ddfed6512fd519d8442c013a4ee7c
BLAKE2b-256 210e236ec1b274539d8827a782eb2236c36734b20d1f2b04ead71d2aaa81400b

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp35-cp35m-win32.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 62a6062f142c8ad2e8ecbe20f67a2afc20772ac52799becf15ab91d16fbc8324
MD5 d9ccba054937bcf1673b53283b4e4df7
BLAKE2b-256 bec4b16501c2abecc3acdc0107fe13c5abfb2ebccaaaebe2dfb8f701d06fbda3

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9af87a20719e0e8ed54f3c30f1007b62e5eb25a8d2dc18ca119b1e9e9bf3fdb8
MD5 9a3424162d65e2a3979cbfd38baaaf41
BLAKE2b-256 1e6d9dc175b2b53d12e3ccd676ff31bb8ed2a10b32d900f994c37e66f42be762

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0f8f04fe0f0d4cc123ee4db8a3103f3a5ea29a8aeb3b07c84e5b299dd2f061c1
MD5 22768ec9be2a80e0b2abdeda31510865
BLAKE2b-256 2cd3042d83ca9ffff8cd38d9c8431cd2b1e65592f28670976657da5e24a34207

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp35-cp35m-macosx_10_6_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp35-cp35m-macosx_10_6_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.5m, macOS 10.6+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp35-cp35m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 c66e4d5e06974eefcca1eafb958302920b99c96ad46ece612a811c518a8c3541
MD5 c19ef9ba55b1ac54fb266692de6b9c72
BLAKE2b-256 0463af4e3cbefb80cbac27e625496a22cf67170e4655f5788ac0242994976c58

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 7b23302cdfcdbbc18171f505933e87511e8f5b3941cf597575bffed312ec91ed
MD5 3bcce66ca6f3b4eb1ae412476eac7d17
BLAKE2b-256 d9ef9c2210b90f68aa529aaa7be4f81af344e8ad66cc8c440e13cb22496b4002

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp34-cp34m-win32.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 92f561f730cc4f0b5265b2a5c498ee512f8808269df86ac508e0c5c9f46b4708
MD5 f50de536d0053508b51e3ee6173d1574
BLAKE2b-256 abc31b7d05fb0a3529668931f2f13003e9d87835975e36ff34a2056d98df1813

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a9d3d72bceae613f1a7a0eda501977dcffcb937610b806bbfa8c5cf16fcefcf4
MD5 e0efe34d71a119adba1f84b0d7277999
BLAKE2b-256 0d511ef11c5826512aff0d8935c71aa30f8fbf581f1f1782539e4aadb1c70348

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9e8d9d93c0e981344524c01760c552913b6637041f178d647e7832b93cd7f700
MD5 6684c7cd6c1d8c2721a76a5dc1ae4c4b
BLAKE2b-256 c219d07fdbcb0b2eb152dd1d0b4fa24d8ee3a2fa7e26e2b16eacc7e0560b84bc

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp34-cp34m-macosx_10_6_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp34-cp34m-macosx_10_6_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.4m, macOS 10.6+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp34-cp34m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 b566d06f0da46d774e7368d91c75568f3d39fbd20223bea7444803e73ca1d417
MD5 6e89eafe3e9bded6df90020c707135b3
BLAKE2b-256 5b083ba1357d406ba7a1190ac0e81291508bf05d4df9453f33d485bc8761bb5a

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 96f6fa8edc6a12ac288fa4db683c363e3f7a8c3560e31a0c3387623a7c1eebdd
MD5 f8bf1241f1fd51cb1364398caed683b0
BLAKE2b-256 876cbbb459955954dde9162bd03146e9309ea52babcb9137d2b620bd614354f9

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b0c030ffd60c0bb92c35b4bffc6a56d068a9b5fdd2c5e35243d570054bf3a0e5
MD5 05d21041689ab4738a5808524efb1d15
BLAKE2b-256 60c8845b9b2793754da09c2d0e9b4650d788f5885ba8ca9f102ddd440d65d3a7

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 243d700ad257949e3f13342e6d25a0a9a5432e71518c6beab044686af4300568
MD5 fb307ea01834cfdc872f908eb2167dce
BLAKE2b-256 103ec05d070ddb87d705ba2d88fc222541c7b007431787726d184e0e49cf4e32

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp27-cp27m-win32.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 1a98c3d89c39fb44ecab449b4521bf3bcd110ce665171a0ba4d8ce48647c2b80
MD5 7fff03b163f0c69501fb5e344ae6cece
BLAKE2b-256 22aae528f2ceabd41337d41c7f3d65add52fc1765ea6c2f17facf0b4f289d174

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c7ae5fd58775c195c72e6cc97df7f29e02bd5e4c42bd4b7344cd94fdbae92136
MD5 4ca1369b4170b5d77c3686c46d218c51
BLAKE2b-256 ff29a636f5c7b83e744107bb34779ed8e0f4ad90d60eb78d1ce8f50f28852de1

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7bfc48136857c62daebb8a0a686aebd78c34c01bab7c09b5b656d9d7eb8e8c63
MD5 5a0d3134700fabcfb6d04aec834d0bd9
BLAKE2b-256 2125a355f916d183a9b972bfd26e97529bf22e3d95a72df8f85cfec1dd4320b0

See more details on using hashes here.

Provenance

File details

Details for the file pyAgrum-0.16.2-cp27-cp27m-macosx_10_6_x86_64.whl.

File metadata

  • Download URL: pyAgrum-0.16.2-cp27-cp27m-macosx_10_6_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 2.7m, macOS 10.6+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for pyAgrum-0.16.2-cp27-cp27m-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 de43740c59f759176359f75d465d38abd44e387a84069ae465cb9c0681d02bb1
MD5 8986f025494329cbcaa9f2ca13fb056b
BLAKE2b-256 6c3510997c0b5a8ca0ce15dc31eb299b334f6e5864fb375de56c29765b30cb6d

See more details on using hashes here.

Provenance

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