Skip to main content

Python API for AMPL

Project description

AMPLPY: Python API for AMPL

# Install Python API for AMPL
$ python -m pip install amplpy --upgrade

# Install solver modules (e.g., HiGHS, CBC, Gurobi)
$ python -m amplpy.modules install highs cbc gurobi

# Activate your license (e.g., free https://ampl.com/ce license)
$ python -m amplpy.modules activate <license-uuid>

# Import in Python
$ python
>>> from amplpy import AMPL
>>> ampl = AMPL() # instantiate AMPL object
# Minimal example:
from amplpy import AMPL
import pandas as pd
ampl = AMPL()
ampl.eval(r"""
    set A ordered;
    param S{A, A};
    param lb default 0;
    param ub default 1;
    var w{A} >= lb <= ub;
    minimize portfolio_variance:
        sum {i in A, j in A} w[i] * S[i, j] * w[j];
    s.t. portfolio_weights:
        sum {i in A} w[i] = 1;
""")
tickers, cov_matrix = # ... pre-process data in Python
ampl.set["A"] = tickers
ampl.param["S"] = pd.DataFrame(cov_matrix, index=tickers, columns=tickers)
ampl.solve(solver="gurobi", gurobi_options="outlev=1")
assert ampl.solve_result == "solved"
sigma = ampl.get_value("sqrt(sum {i in A, j in A} w[i] * S[i, j] * w[j])")
print(f"Volatility: {sigma*100:.1f}%")
# ... post-process solution in Python

[Documentation] [AMPL Modules for Python] [Available on Google Colab] [AMPL Community Edition]

amplpy is an interface that allows developers to access the features of AMPL from within Python. For a quick introduction to AMPL see Quick Introduction to AMPL.

In the same way that AMPL’s syntax matches naturally the mathematical description of the model, the input and output data matches naturally Python lists, sets, dictionaries, pandas and numpy objects.

All model generation and solver interaction is handled directly by AMPL, which leads to great stability and speed; the library just acts as an intermediary, and the added overhead (in terms of memory and CPU usage) depends mostly on how much data is sent and read back from AMPL, the size of the expanded model as such is irrelevant.

With amplpy you can model and solve large scale optimization problems in Python with the performance of heavily optimized C code without losing model readability. The same model can be deployed on applications built on different languages by just switching the API used.

Documentation

Repositories:

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 Distribution

amplpy-0.15.0b4.tar.gz (1.7 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

amplpy-0.15.0b4-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

amplpy-0.15.0b4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

amplpy-0.15.0b4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

amplpy-0.15.0b4-cp313-cp313-macosx_10_13_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

amplpy-0.15.0b4-cp313-cp313-macosx_10_13_universal2.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

amplpy-0.15.0b4-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

amplpy-0.15.0b4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

amplpy-0.15.0b4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

amplpy-0.15.0b4-cp312-cp312-macosx_10_13_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

amplpy-0.15.0b4-cp312-cp312-macosx_10_13_universal2.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

amplpy-0.15.0b4-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

amplpy-0.15.0b4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

amplpy-0.15.0b4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

amplpy-0.15.0b4-cp311-cp311-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

amplpy-0.15.0b4-cp311-cp311-macosx_10_9_universal2.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

amplpy-0.15.0b4-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

amplpy-0.15.0b4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

amplpy-0.15.0b4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

amplpy-0.15.0b4-cp310-cp310-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

amplpy-0.15.0b4-cp310-cp310-macosx_10_9_universal2.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

amplpy-0.15.0b4-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86-64

amplpy-0.15.0b4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

amplpy-0.15.0b4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

amplpy-0.15.0b4-cp39-cp39-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

amplpy-0.15.0b4-cp39-cp39-macosx_10_9_universal2.whl (1.6 MB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

amplpy-0.15.0b4-cp38-cp38-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.8Windows x86-64

amplpy-0.15.0b4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

amplpy-0.15.0b4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

amplpy-0.15.0b4-cp38-cp38-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

amplpy-0.15.0b4-cp38-cp38-macosx_10_9_universal2.whl (1.6 MB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)

amplpy-0.15.0b4-cp37-cp37m-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.7mWindows x86-64

amplpy-0.15.0b4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

amplpy-0.15.0b4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

amplpy-0.15.0b4-cp37-cp37m-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

amplpy-0.15.0b4-cp36-cp36m-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.6mWindows x86-64

amplpy-0.15.0b4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

amplpy-0.15.0b4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

amplpy-0.15.0b4-cp36-cp36m-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file amplpy-0.15.0b4.tar.gz.

File metadata

  • Download URL: amplpy-0.15.0b4.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.6

File hashes

Hashes for amplpy-0.15.0b4.tar.gz
Algorithm Hash digest
SHA256 9f22c5ca1ad78323862d4a6d9a3504f11efd56766aafe693d9fcdb164af3a297
MD5 47ed168d64df9d91e0515e18f8ff9099
BLAKE2b-256 9d45e04acda8ffd4338ca7c1c02f790f745ebe9aeec023686067afbda522fa91

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: amplpy-0.15.0b4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.6

File hashes

Hashes for amplpy-0.15.0b4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b44d576b04843d2e3ab8485e57ee9b344f92590b79d518ad4fe171c85f5a5a56
MD5 fa1e1fe4048c7cc22ddcb12293c27da4
BLAKE2b-256 5bb9f77be8bb6101618049deef02fc874a486b0da047e08dc64fa88bfb2b3aab

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff6a5cc9e73a02423f2b36b9eeed52a8b2a0e417b30de61928d9bdce11b9a23a
MD5 7bbf126117cfec751933cbd96b46d465
BLAKE2b-256 3063a69379d055164ca43ac9ff236c4bd20eee74ad4d863f52d7fa68fb3cc70b

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3727ca117496eacff9829f869189958d49f35c37ca1ff9c271468b755712eb69
MD5 66bab5dd73817f3ef979c073c88edd6a
BLAKE2b-256 df36df445049e0626b666688e0ad5169ea7a0a02aaab71f77f083744e8c12fbb

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 839da0f68ff11bcf9edd8968d36c3a50f05c11220da94b9eb22b1236de62b550
MD5 9a74f6fb0de723b681d3b0e02852049a
BLAKE2b-256 00374baa500253e865474bcce55ed2f9ab3ac78c7804c9f4e9b3c4b2e86ac19b

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 48bb6f956775af4de924454bd0c23911056729d567c3144111a3757548f73151
MD5 d092c3eb120789b5bfefa6e99e151a50
BLAKE2b-256 5022b05e53ae6b0f637a300df54f6eac0330905ec271809ec3b4c302fc3cf984

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: amplpy-0.15.0b4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.6

File hashes

Hashes for amplpy-0.15.0b4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9051354bfcc81ec887c258fed156bc2bc0b1f610f0f84e4ce5c93eabcea05b2d
MD5 827890a58701e96570cf32e822144c5e
BLAKE2b-256 ee595164957c77c51c0fc17101094dadfc65b1b76aaf4bd4e13343fbb2f69dcb

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60ee302cbc79f1c424194d1f1f95ad26a455f6fdeed1e37fa25c268d118975d3
MD5 aa7d137f5296db62072ded4423da251e
BLAKE2b-256 717bed25d9670d2f3fac1bb3fbf75addae651776c958b65c61a724b9c9dc3a0b

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c3228e1efd67ec1586e20a375a8551fc3e4a54e594460a7b5550cac63a814e5
MD5 abd87f76a3de058ce5a38e0416bee427
BLAKE2b-256 978885fef9c28552b41b454d2f90338a81d91a5eb9f8033be9d34f0e033c9b52

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 515c80ab5b7235b1eecfe4c489d9346628372c66a00b5ae422144cbd1040f5d7
MD5 00d7d202cc6e401ac95b6c92f03ac9e8
BLAKE2b-256 a506fd32ff3a7c5afe05bd93f1c6099acfb7b35101212361a490930388c0166a

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3e6e183c1309f8f482a8770991468747d2db498d4a7ab1e59f3359584acaa4f8
MD5 6d183ecef0c66969c43c4f1f35880901
BLAKE2b-256 cc5d4ea0ba2bb3a70601aeba87f6a1da45627855808c64799e1403cb8c68775a

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: amplpy-0.15.0b4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.6

File hashes

Hashes for amplpy-0.15.0b4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aadb7c6a6035f2399bc6577ad67e417c6edf04bb99df4be02b887e9bcdff35f1
MD5 4367570b686f3c1a408564c9bb1a5d3f
BLAKE2b-256 916bf3f4b7c85848f08331bf10a978a2a07868e9f917f38e61e78eb695bf100b

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84800c42c3b49ff0af1ce3fe2c06810d76c4b4be3c931972d1da27cedce0d794
MD5 6cac6d56d7490d88d2502b478a6a33b8
BLAKE2b-256 b5b74d1937eec360710f98d7c06aeb8e823c78c1ee7a7287516b28db33be05e7

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea3a543d11b692a21574288bb5253dca27824f2024d6f99da650eeea91637c93
MD5 2f9ce6d8e015bd9d12975fd0072957e0
BLAKE2b-256 2e966eb81f533bc482cea76a02b9ec67c90e939f82ad6bc49660ba3c43bab49b

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 014762aa0cfc3e067804558f55ee929c27446a667c1225cb7e24d7f32af25560
MD5 9ffee3db68e7375e39b65dc98923f482
BLAKE2b-256 a49ebb27dfa22a22d4bef41ad5c51b0c402fa21b90bd83c416239431bfa831dd

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b2e7f922dc6c9cc9e500a46223fc3e1106f46408577ac6125da84b827097af6e
MD5 bdec9a47a34707511295f356e275005f
BLAKE2b-256 a10ee847b92fcd663bf70085d8740ad7c32546e4fcabb23a6d43b69c1b775db7

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: amplpy-0.15.0b4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.6

File hashes

Hashes for amplpy-0.15.0b4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8df14c85089850981cc08d333ae44cf824b5a98f3f69d84f679c57624d36d727
MD5 4090b77ae7a076b0396fac12d2cf8c85
BLAKE2b-256 60cda3e34d819de354bf9446523509305668a42c0f20ed75027fcf3f21ea3739

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0934d37ff58948d0ca3e2b29525683a21335aa3544bd7ba11caf24d437118180
MD5 9a3a5d97f79c550ab934b5455bc9f151
BLAKE2b-256 9a4ba29dd69fc9bf7f19cb13835fd827dd41e0652d934f1454a3902e498e5ec1

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ad93bde0e224f8c8ab8d2f6cbcb06c2b7c7091fec444caa890c09e762de2cc4
MD5 edc14b580d2986485b4ddabf083f34a2
BLAKE2b-256 d47119db32b9200f3c626ac2375261c3a0d4671dda60836e618aa2b2ff0ed160

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c0d2ae4c8f750b62a4345839b8009bf0758c9d4b0cf57f4f79eb52d74f9b4b17
MD5 fc013129130fac2f0ffa7328f92b1d8b
BLAKE2b-256 08501d11e6e125e13abbc87184cef910d89a4701bad069a22ae96dc7cf273849

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 59d418d3003cf11adb33668f515f12d8910f7f9a3b1c00f5457104900f405eb4
MD5 ac3870606fd1da72d818025ad3b08424
BLAKE2b-256 55464b6606a8c2ae865813ada1ea42bd074104c45261229844616214744c275e

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: amplpy-0.15.0b4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.6

File hashes

Hashes for amplpy-0.15.0b4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 79f7247452b58cb662a8b8af460dc0dd7744c25263bfca08b1200afb28110b26
MD5 9acbe33b5af5395fbf175e62ad279200
BLAKE2b-256 586754e16e484c05a34e3e196a325573adb221f3a9757391fe94333a95665ad3

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a2a7fd7fbdae91de75942bf7a7e3b7fbaad61a96c7d2f69ee250faf85c6c827
MD5 620ae7b73b7d4b8f6cf63be3c50fff10
BLAKE2b-256 4f636b100530fb44f086c02f6618ba3324104ee414d5f9c03b46d198cb96fb25

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9fc4c6819a900cf80d7a5f21d256dcc075cc9228fcb52b77bb667ee4050e9530
MD5 abac38957738e8ed2d689d048d648bb4
BLAKE2b-256 dfb2e02e42f450733101205a1b596cdbda1300279f3eb53ff01d6eb4557e8268

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b84793be5ecc9253936a38aa85612efffad29cd411f10f8fdf043ccecbb0e31b
MD5 41bb9443fc7d14f3706d685809521d7f
BLAKE2b-256 0593474c5465f0570fc9cbee08189b71454b78c24fa8ddd09f52285c996783fa

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3c6f9e2865ae9e17f9f08a31254d79785efed1eeac6e9873ff1a9496a7687e22
MD5 e41fb87e09c781ffe96715879e8cc930
BLAKE2b-256 a0b62c2009e20434a1e40c07d922127575ede1ae47b5f1d15bc710c4dafe962c

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: amplpy-0.15.0b4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.6

File hashes

Hashes for amplpy-0.15.0b4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2b8ebc93b655b02d218825c1c103a7fc065a5ff60d26872f89c1464ab4768cfe
MD5 4f0d5231970a0cac624f712a591111ba
BLAKE2b-256 2056d12066ec9cf8a53fbe7af9f9d5f5b1fa0be6ca145d2b8bd893b58dd57f73

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e1cc186b8e231b8969e6cb96f62b5f8b0da0e436b9ca0720d6e16b1767549d2
MD5 5ac338dcd039972e29c4a4bdb7387f61
BLAKE2b-256 9e00caec16da9f0fad263d56c058c9af2f398c89947343c2cfb2cc9304a24994

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28071a03dc351d030fd26ad9bf5ec3ebdf78a719a87e0db419f7b2d336791cd3
MD5 836dd12087eaee7963af73566e437251
BLAKE2b-256 0192f70f6a3c6a03fb169137b05cd4012194e072bddb8e4e3c2df58710c43d2a

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5b0e9df6e0bda36db16c03ce020b043e9066a4bfce3f443efaea20f5f87c16fb
MD5 3c8e7a5c1633fb349c47be283cbf8b1a
BLAKE2b-256 38bc1cba583f01d0d09209cdf82d6af0d440bde4622cabf3d2b04e2c1537b360

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 eefa5be1a45a2115f2522071b003a2e21a7b03d17b4fc8bdf7b7f13c7ac527e7
MD5 17fd8b5a9a3c02870e3564f1dd8dc315
BLAKE2b-256 01feeedd2919e10bc5242240cbdbfe8a3696f9f20b241dfb498c69484a7e7a66

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: amplpy-0.15.0b4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.6

File hashes

Hashes for amplpy-0.15.0b4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b2ea831229170a3975c38b33f3ebfbd0bf6736a550dc39aae94406cb1d37d872
MD5 1ebb55c9a91c25601bcf7ec1170eff6e
BLAKE2b-256 db05eaa433a11f54db2a3b5986ddfe21f9bb8d769e7e0a11b867dc575a59855d

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e51e83a9ea645744562d7f4d3efeb110fdcd3ca7471acec32b6cc75ee5d11df1
MD5 7cf28e4318c5dfc627208db9adc437e9
BLAKE2b-256 cefd0ab321d98f09596051a4947d6d6cb6619cae8355766781d8e14d89dc12cd

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e7101cd243f1986b7ba8fd679988e61f75a060130856385e4c2fe3093e0a8ad
MD5 6e78ac06ff934d301633c8c1c47e190a
BLAKE2b-256 ca086f7343f160c7658d310f989a6b904184b3fd93ac6acecd611e77df00a25c

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ee211261669b78f76bc84c56ffc89b7abcad58e4f625bc4649e4c7464f494f7
MD5 e62bb16d20ed9b05f6f373e6e874f8a5
BLAKE2b-256 2469684d6e8c9002b16a2d482ad4f51e1f50fe6d674a2b9cdbaa9336087644c0

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: amplpy-0.15.0b4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.6

File hashes

Hashes for amplpy-0.15.0b4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ee9bdc220428db1d16e8b697ab756b06b863d62cb4f3371b99929ebdc2939c8f
MD5 036fd8f734ddb8220d67f46c5481901b
BLAKE2b-256 5640151e90ea045d7ce170f9299cc525bdcb9b7c117541353dd4895dc640f42f

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 176f21957152c2b32aacec8111702b93b496d38b193967f584e62b8e7b76b603
MD5 aaec9fb1b2b821fdbcab125f69c945cd
BLAKE2b-256 a8ef7aa6b3d0e8d8eb137f89162485778d70ab8d9cd21ecd4db58bd6fd6262dc

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74f776aa1e463ae3bf7b09c962c952175417ee24e6c4292bffaf177d51056d02
MD5 fff9989b9db1af9f40737739eebc37f3
BLAKE2b-256 70358125fca35ea8bd9e39401301dc45f4086da99e4035f1ef4a9dc474223847

See more details on using hashes here.

File details

Details for the file amplpy-0.15.0b4-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for amplpy-0.15.0b4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb146df938fd73e435b13a5a0a450fedc3938742a89650e00d71b7d5c25b4aed
MD5 8a7bd11cc0ac7f5fd024dc2f7d36ed9e
BLAKE2b-256 2b8d91fe07bd7d745691e2c0e225d28a84958d922a9cb4f1788acf5a469e5266

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page