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.0b3.tar.gz (1.6 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.0b3-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

amplpy-0.15.0b3-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.0b3-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.0b3-cp313-cp313-macosx_10_13_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

amplpy-0.15.0b3-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.0b3-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

amplpy-0.15.0b3-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.0b3-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.0b3-cp312-cp312-macosx_10_13_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

amplpy-0.15.0b3-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.0b3-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

amplpy-0.15.0b3-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.0b3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

amplpy-0.15.0b3-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.0b3-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

amplpy-0.15.0b3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

amplpy-0.15.0b3-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.0b3-cp310-cp310-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

amplpy-0.15.0b3-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.0b3-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86-64

amplpy-0.15.0b3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

amplpy-0.15.0b3-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.0b3-cp39-cp39-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

amplpy-0.15.0b3-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.0b3-cp38-cp38-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.8Windows x86-64

amplpy-0.15.0b3-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.0b3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

amplpy-0.15.0b3-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.0b3-cp37-cp37m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.7mWindows x86-64

amplpy-0.15.0b3-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.0b3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

amplpy-0.15.0b3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

amplpy-0.15.0b3-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.0b3-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.0b3.tar.gz.

File metadata

  • Download URL: amplpy-0.15.0b3.tar.gz
  • Upload date:
  • Size: 1.6 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.0b3.tar.gz
Algorithm Hash digest
SHA256 bc28142a28d5229189ec0726e8a0957e317157c81939113b204a934d29c591fa
MD5 28e8cdcd969ae84d5d07a5196b5624a7
BLAKE2b-256 e313a6cb150a3378d2889ca8515623e949ba318898c66c58d3c29a38a471122b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.15.0b3-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.0b3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 33d99693f8db472b917137244d1927cdca35614b8b87de152770319a60400278
MD5 b280afb7d2cc35c1cff7a88c1930e1ba
BLAKE2b-256 45a14700222b89def712220b382566bac6b8d20a1900ed88dcff937734140243

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb435cd26fae25025bd7dc8f23945755ebd798895b37d73bd1a77c35e214e9d5
MD5 0d8ece8c4c2a0389aa99b4f9b473405f
BLAKE2b-256 e2bad6e9b3863ba5707c05745354b3408b83221d0c108a3a0c2ea3bc31eb8199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 edc2cb3f1f870bf9e5455f840d5e5819b0c337aa58763366aff22b0bf1a720fe
MD5 268aafeb752be4da9ada2331ce934e12
BLAKE2b-256 2c641b4ed28f5441bc2365bbfbb569069f9ae995632297de440eaa53fca677b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9c4578be200acce7512844c9c813cf11572510d5142b417d255646cf856d3b2c
MD5 2c88e41ebce4f8f55d605b0bdbaedf14
BLAKE2b-256 a2ed6101ebb9439e0d7875441f30ca173b0182b60aae3c981b8792002bf89564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 63f6f358a3dff8ed8946e1800a7958c9b6541213c2613995bc09aefb2bd4bb0f
MD5 dff57da38ad9512ba0d80753e3019058
BLAKE2b-256 ef38c4c465764b5d9d4fa2bd4a729c5b8fcbe8373f05125267657fb9a6f8c001

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.15.0b3-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.0b3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d3675d91d90f4e8e08efba5eaefd58a75fd312f0839a2db5364d0494fc823533
MD5 e8edd797e9ea1c81de293673388264a3
BLAKE2b-256 bae258e79402a43202aec6a05edfbcdabf4935220a8292bc25dc5fad77025287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5b993ff3a51d5a88532b3be93972d2d2757d4684c2b687e88415510e1f05623
MD5 8027a49176109149587639e9176fe3e7
BLAKE2b-256 aeffe70ca8ee0985f36e989a669fd1f45806ac5c682dedbe91f10460a9e3ac31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dcbce830d5a084e005b0e110b535d74060b3f61980de7d3ec2dbba29ab203874
MD5 327a917c3a6984331dd42a10a88c57a8
BLAKE2b-256 621ea132967460a4683358f60f1e26cf42107e92ad6755f005eb8c4c4456b400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c5a9d102964118a9c3b56a701f12f6df1446c4d22b3443fe5577d66404e936b3
MD5 1d5d981d39583716a44166e2b6e4a42c
BLAKE2b-256 12280be5e0f2ee3c8fa5af9b4ae026d79469321fb484a4a485a57240a755fe36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 67e17cb43494c29e8f55bb2874bfe52eac9f1835ad1b53e1cff5900489b8bbc3
MD5 cc53e0272c59e437fb8235ad98d79096
BLAKE2b-256 9ab6f413ad45df069b88112280e7b2f7e5fc663947fb5981c19dfb2e37b024b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.15.0b3-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.0b3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f419c345c3bd3fcbe43c84485b3623726b8e1ad8d93ebfefed4db99bf1ddf35b
MD5 c043bc0da435cf31ce3bd254ffeb57e6
BLAKE2b-256 7eff695df188882e1a2eb99523722e200c9666c311930389c7394194149e3d1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4f907ad065466bb7eb063d708d1a7879e5cc993efdae4286720231cf8c7715b
MD5 4a9d057f3893e93dddf5ef36fcfcaa67
BLAKE2b-256 16d28b6e46a3b255af05e1d6af4d87e6493a81935dcdb3cea9c1bf1062cb6672

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25a4266e7b23fa3d88e1e58fdc3e24f0e5d4e0cd71f736120e3883247a0587ec
MD5 2825f2d79ce281bc392570a45877cc0d
BLAKE2b-256 22fffcd538f23fa357ce49f9dc3bf8f418b41d0bc66a364990ae00421633431c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c1002554836697573cfc67f9b4d9c9cf4353e8e2730f4b60ff3146b012b04b0
MD5 8bca914db174476e746682a719fec959
BLAKE2b-256 4e5cfa3b9e0e545a0deaf96eb9f7637d00e89133c80da113d1620adee8736a84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9572515d185a19883da230272208f7beb8e4cd9843972bd66f0494d76f1e4b75
MD5 37a5c295d58a4c97f61a180c82975305
BLAKE2b-256 1087606f4fe203e79e3ed6f765fdbdb2df6999f6125edfeb2a609c296cd15730

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.15.0b3-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.0b3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c5a0697b31ed539eb0a61adf3a452c678a1377246ce9f830b9edc4bda3b4396e
MD5 683bdfc5be4734b33bccbce32b48574f
BLAKE2b-256 e287bf2c2c16aaab397d2b22e06ce75ce55081b0bb7158bba810a8a103c6e7ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b6aad7fc5b4bc5dff2df417bd81d486b6abb05df10a75caaaf8011a1f60e15e
MD5 45df1c99f447020f2ec88dcf79eed824
BLAKE2b-256 18f6249fb28aed8354119758c0cb2b876443a9e6e5caa6752a6ed410d8020f36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e080549e949d5b937e76deb9ffa3925d6c0a7a2e68a0690897879647e5db6ec1
MD5 61f001fc0d3f7c111b7e7ea2ca70e131
BLAKE2b-256 f129db369591757e4e4ad04e74d341d44bacd93a660ea2b80a37951fc51a4c0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d4194cea8963b9457011316aea39600b9ca6c898bd6900b8232602ae08eba139
MD5 87e5d2c9ea036f84a4128997a8d5da84
BLAKE2b-256 fbfc45bb2ec7acbee481f9ca008cf5baab8a366b4a141162a10297d6bb8c8cd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 222f109080f63eddd308f7f8d6fd86e98702b4e29acafb78c3f05bded23c67b6
MD5 7d31896dd273a5e0c2eed72557bafc5e
BLAKE2b-256 39b71df8473c8e3cecbaa91ca3e02fa26569b36908ca153662340ba5d77a0fec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.15.0b3-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.0b3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 207e6b9eac2115a1da80c841b24538a588d11193683ed31eb3dcd30ca9a5fbf8
MD5 5f2806e87860acd42d3f4e3a88d0088b
BLAKE2b-256 5137749636bd767b1ee7d38c5733af6ab1690d5aea3402a659f2ec9aef20f61c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a32294c36a0bfd90b4cc7dcd690ebbec309d28feefaf1d343af85cc8372491a2
MD5 6f64b69b9c39db18312cf4e889c6fcbe
BLAKE2b-256 bd0344e339d46f74117ad837b29bc40a90a6a91abd36a1b9887d82c286ab9809

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa25b6eb3a116c43baf36c5a16481de11e9c9aaeb9fdb3f8b86f66b92c6f676d
MD5 def9d938b6c1838f0d748015857cbc6a
BLAKE2b-256 5bcdb9d9dfd1bb9274876a64dd9d1e9830bd66a1d973c07d4a06a65594c2b046

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2bc39e5cea1b3f64029b0e4a9238c85ed4e406fa52315aab79e3b8c56582fc10
MD5 cb3e9157707ace5a2e6b0ca4ff1e5538
BLAKE2b-256 bc7e0a9e1acd499b868a918e6e25e1d05f42c431a228bdb680ba7f4fc9dec5fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 690d8180031435979d26e01f80d66e665ab368eb282d32f2716a54b68c98abe1
MD5 05651d21099d807ab23cfe6170c19ad6
BLAKE2b-256 2fbb78e0376c68f439c78efdec9ad852c15a269fb8f92b2f95ee83345ce4c96d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.15.0b3-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.0b3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e94a7446c64e2629657889196b956fcac8cd7a851cf2ff7006f10d28570039a2
MD5 84d3974736fa60835d1a63270111e71d
BLAKE2b-256 de078a8c3fa3247b30cf154dfe6b41d4b794ee8a57cb94d76c5b90619780ca7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b468f2e146da53a22f37ae1617353437a3ae394789c97e7349fd34eeae7d1a16
MD5 e5f6efff762f39ef6ee701b071c0ba2d
BLAKE2b-256 53ca6010d6bfd1fe8e7a9b28b1d69a257a4314fc7cb2cc745ae40c2e8ae9a957

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2616728c203c47981018279fcbcadfc754a2a3861f0adc03d0c38eeb30126c04
MD5 0970da31743ff7cefa452e06d57f83a7
BLAKE2b-256 b18a9e123e28f3e74e268d54d0c70db8899afece3ba3aff1dc73834a09196517

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 16a458c7a525d83232eb02d1550e3c9748fddc4e3557271da7e5408c8427ea61
MD5 f022d0d3d5832900746b549aaf1e98b6
BLAKE2b-256 d69ac24f2c06a70269d3af42cfec966f244591f654753c4cd999a84389bed974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ad93ecffd08ccde2004703f0cae80af40ca57447d209fa038d7b589759fdc984
MD5 da6265cfad6b269845ef9e5b92f8ae9b
BLAKE2b-256 c72e2c75891f5e768b20f21f0b1d42eb67b3bd3292fc343e956698e0e31d4e4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.15.0b3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.9 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.0b3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 301648d0460461465e58765facd2c7100370d9fb7709f97b7d14be83930b60dc
MD5 944b9eb89d40b077a8f1f94bb6115080
BLAKE2b-256 eca5481fcc0d6ac65ddd3c3e892d5ea99bf21f5fee6a89249b5a742fc00b0ff3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdeeb2443d0111b66727ebc433e53de0caf5f91cfceb3430f867f8cd9fce7d2a
MD5 8c2b3ddbf38616a5470d46789d7ff160
BLAKE2b-256 e28e04f911f498b88c155689e7090fe6b3d1af2cf860d9a3d822fa079cf6a08c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 101bf58f22a7784af3e4b15b53327f66918a66381dd293d01008eb4e702bdfb0
MD5 88d4054522af1a29fcb8928ff087030e
BLAKE2b-256 3fbd3c1a5ce0c6eb38998d02f0cd808ba07b8db0d6496baf97abc2a6bc3d43c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8b72e9adeaac201a64c63f4790d1de8a336ee3240694135a835abf854c440609
MD5 a29d2d55485205c98f5527f77a859346
BLAKE2b-256 05991b741b23a2ac781bac0a078f17640e8e0cbad2e31f566ba5c1158d63048c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.15.0b3-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.0b3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 06e3df87bda0d7f43e24e5a970c10e142452e98034e844a87ca46c4a7dc10437
MD5 6abbe4ba89118ed9a18872e7b752344f
BLAKE2b-256 6fafac503803a4256e7978c7b5f6fb4977ea6be3c459b06b11e828e06bc61b8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca814cac47dc9a8dcf5bdade08716ceba753e8d7b06a97bfe83ba1547d32c14a
MD5 ac0434736f179b48a2d8b3b83293b083
BLAKE2b-256 bf3c3c8c205bf9b235ad3a440d1d93a4739f73b97477d6f92a46f641d51bdadb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d63351422751fb76b47521b7fbec7d8d7453b09986a77fa5a6fa743bdb34588
MD5 bd59d67d701849d87df2546251979c57
BLAKE2b-256 fa300d5101257f30860f0de6ce5e1b75b9c0601e824a2dae5f8d561544f3ba53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for amplpy-0.15.0b3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 655d76252a542c20b06517866169f76d74cac02de0156fb7906e37cf2fe8ca01
MD5 f0fa70f99555a71cd66ec59b2253bf17
BLAKE2b-256 c652b1456a81a43c16bbb6d86578929b5010fbf765d496e80650a304f60a8708

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