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:

Project details


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.13.2.tar.gz (2.2 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.13.2-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

amplpy-0.13.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

amplpy-0.13.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

amplpy-0.13.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

amplpy-0.13.2-cp312-cp312-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

amplpy-0.13.2-cp312-cp312-macosx_10_9_universal2.whl (1.8 MB view details)

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

amplpy-0.13.2-cp311-cp311-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.11Windows x86-64

amplpy-0.13.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

amplpy-0.13.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

amplpy-0.13.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

amplpy-0.13.2-cp311-cp311-macosx_10_9_universal2.whl (1.8 MB view details)

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

amplpy-0.13.2-cp310-cp310-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.10Windows x86-64

amplpy-0.13.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

amplpy-0.13.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

amplpy-0.13.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

amplpy-0.13.2-cp310-cp310-macosx_10_9_universal2.whl (1.8 MB view details)

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

amplpy-0.13.2-cp39-cp39-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.9Windows x86-64

amplpy-0.13.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

amplpy-0.13.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

amplpy-0.13.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

amplpy-0.13.2-cp39-cp39-macosx_10_9_universal2.whl (1.8 MB view details)

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

amplpy-0.13.2-cp38-cp38-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.8Windows x86-64

amplpy-0.13.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

amplpy-0.13.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

amplpy-0.13.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

amplpy-0.13.2-cp38-cp38-macosx_10_9_universal2.whl (1.8 MB view details)

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

amplpy-0.13.2-cp37-cp37m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.7mWindows x86-64

amplpy-0.13.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

amplpy-0.13.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

amplpy-0.13.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

amplpy-0.13.2-cp36-cp36m-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.6mWindows x86-64

amplpy-0.13.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

amplpy-0.13.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ppc64le

amplpy-0.13.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

amplpy-0.13.2-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.13.2.tar.gz.

File metadata

  • Download URL: amplpy-0.13.2.tar.gz
  • Upload date:
  • Size: 2.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2.tar.gz
Algorithm Hash digest
SHA256 1090166669a1744cf3e0eb2f8b6b376c1e8651770c1bb5b62e87b6a4531bc557
MD5 d7e7697627f49b71162991c99cc4dd7d
BLAKE2b-256 cec2a0d6316916bf56a19f3cc75c87dbc0cebb80a7c03d402bcda6e990839120

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7ca9c3da0c6f15625a6fa98aa4b33c4228490bf41229af5f8277d3e58bfb593b
MD5 8468e52a2706d3455db25b599551187e
BLAKE2b-256 f72210edcf1128c3199e5fdc8854be78338bf4eaf6d11590980edd5bf5334b33

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1252976f245388827a02f7979383e576541eb0f3daba11e40dc881090ffe96fc
MD5 7c34729e2326e68df749fd34f05c4290
BLAKE2b-256 5286f449ebf82bc30710e5034c9283b4daaa09e782e5b8b624bb93ceec19167f

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f7c2619fda3acc9112c5f178c499855d85d37f37a9f8f1c6753b2fb2f305781
MD5 d608316340cacb885d9dbd5d360f5825
BLAKE2b-256 789fbdb3d5bee8bb779d5d7332cb643023f7d4fa683cae82dde4d5fca593f06e

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4e874a9fb54f4a354820a3461fb22faee5f1c0a91367b45d52db928f6dd0b40
MD5 5a28afb9f29e5eec8bbe4781e0b3e03f
BLAKE2b-256 d313c296908b556b92482237a7a56db5fca0e8ab11a4de093b9f46384df4512e

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp312-cp312-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.12, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 04705000433556ad30ea5e718714991e57e235d7d6fff8d8ffa2e91bbadd885e
MD5 a5394790784607c115642b6c2136a627
BLAKE2b-256 68be331eb62fa25028c85cbc3e39035a91c73e4a6fdb7b4ccaa70452f40dcfd4

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp312-cp312-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a59332f52d534db620d1e471f3ab4031bfa50042a3d18ca91c0488f87cd9a0df
MD5 f8d18bb5ef6b4a4629f1d488bc065911
BLAKE2b-256 ae683641447e3fb5b856b2c3b12e26fd97a0c9216f5542e935492d6743c0a502

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 438caa5081a53b3efe92f007ee5e66a36d1a37c6ceed066b5e98eb2e9f438193
MD5 2b226ccc703904162250f0d0958a16c9
BLAKE2b-256 499ef39eb6be1a5dab3effc0fd302f6532405d6d592d5f0390d875c1dd793177

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05876b3ebf054ddc08983cdc58485830afbfde58da5a73541318e604254b215f
MD5 bb53103e440def45b7283a58bc085584
BLAKE2b-256 359bba1ddab48b40511a4891c6faf9f97b5c769d20abb1adb84d3dbbbc7d6573

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2ec74af90432e8304f7088306adbd664182ce1dc6e9f372f30cc7c3de535380
MD5 58011b09c80c55732ccf74ebd49c56aa
BLAKE2b-256 7b87bbcb3369d7e1dae943127102924dd81ed53d108f6cc7a66f4adce0975579

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 afc57c082b7ecb0bd879c9b452672a520c1382a74f5b9110b94fc094749f18ed
MD5 bbe5598a8db86466962a6e31cac08235
BLAKE2b-256 d6fc2e0fcd3e941ee5924a5089cb9a6b34c25f6b9bc38e42fbced40146225d19

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.11, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fb788721cb387694b69d1c628b56ff2147849c529ffd94010eb11a8ecc97f738
MD5 11dbf9993aeebfe9b4bf2cb67713308b
BLAKE2b-256 aedc36db7267b8a722bf03123eeaaf2d76d1dcf7684708cce205c700e7250b24

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp311-cp311-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 112e959a8f4d81b1bca5a815d7572cee178f26ad796031d56c34f23b00397932
MD5 04a8038b6f5e49b0d8db0c974208b0e2
BLAKE2b-256 ce14c09f5fc1f82e1372ed9b764359cf262de7a6c61628353ee07c668e89932d

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 663556005d4908cff99922b3cf5cc73689e7efab1371d02dfcd946a977de005e
MD5 0a71440421024f7f4de64b18002f66b2
BLAKE2b-256 7b748cde94f59806126012decba1e941b7319e828ee9f243f2ff54022be34496

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76a1957662caab6ca76fd64377f44ff37935da53363c922e41fb7131a75f1c52
MD5 4cb460d55f4c372c4e32ffbe613d0562
BLAKE2b-256 ade24decb78212fdf5105ea721aa1c4b85a35f84b1acca1fda2a1f27193d54e2

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a91c77f616aef03f056b44707cc8f905784996449b7139e949609bedfbd1c2b
MD5 780979c18cac93d9e4183c6392208edb
BLAKE2b-256 fb7bb95cda22020a97f43f8c909fd7a71ced1d3c44fea98332035ff4683952d8

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3c2767f4ab1f3b0a863be9cfc571749e6610b3c81b02e290461633e56c20334
MD5 38952d84ae15b9b909f45708d636023e
BLAKE2b-256 0c36fdda908675aadb558aa9fd4d3190c33c1e407d6e020f70bf0795ba545d3e

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f583915482489259a341810a4df6cc584e2a10f3e3ec2827fb638beefd2d1bf0
MD5 8cc301cfcf964e9309d0bd22abd58aaa
BLAKE2b-256 cdc75e7fd6a31557e0a04663b274f0dc485e9b7436b30b02e055ccedaa7f927b

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b1ac4be36e9a994a9dac7581b6b1a48fad5cc287b71a18f99e7fd923d8754354
MD5 ba58d8983915a38d98e433a18c1c4521
BLAKE2b-256 e94f052b1412e6275a3e9d5503386a2c7dea63430b8012f475cf05949747be8e

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d24c684ce89f0b7667ac158ab0d10ddedb1d8e100fb1652de6547b27457755ce
MD5 f871c4d64643007db7ef93d50c829565
BLAKE2b-256 cf9aa71f9df45dd5f04f0faa0b19d75c32a2a2e1b900ed2231660499945afbf1

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d78ac7ed29cfa5e30968e6e426cdfdded604ebbf87b431d8ea689a48dab15520
MD5 c2d1e583ce7a56ff5c46683f855e90df
BLAKE2b-256 3c28376e4129238e92fd796f0a1ece7a3e12ddc15e09f5dbbaeff1f515916ab3

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 07d55dda966cd739fab980a07c3fe3d0e8e2c13543e98935d8c8b0f6be8c4ca0
MD5 8f0cf064ef5ab87f7a6d25e8b1e07660
BLAKE2b-256 de32b6772e96c0ae4d3565d19fd33b9aa6fb45fa563a005ae74a42c645458ee0

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e86ac237ed0152748dd2914e0cedc879944c41a20949fae266325f25e25430f6
MD5 42038a9010d47c347313553dd6872637
BLAKE2b-256 0db732325e9e60872f38b5465c3abfe6d4a0a1803495ffb919be313ac60536c1

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 399f48e637121a8c94e4b7ef0c7a270c276086b9ae1483e412354741f8383b36
MD5 950130eff9c2e53d413c7dd0650a80e5
BLAKE2b-256 687472a99182ef538badff36a77afaf7fb85f69cb863b5407ececad56e34cafb

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 06c0a63ec80de1888b8c3bd46fc4cd3a05fd91a988a3e54d59f81f55bfab40e7
MD5 9501067621488620e990fe2aec799419
BLAKE2b-256 411d916a77768f49faebbd6e1995a2c97ab590684b567790660a9c14bd7ef487

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 90c90b610bd63bd6c38303db5ec783bae20b3a80c26c5599298df9398b0c0a2b
MD5 673294a729c83f84f7416744ebd27665
BLAKE2b-256 5633308f9b7c5acf0e5cf6e64523193de8b32002c0fe27238a30a30475122074

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77c18f5af1f55c2df8f87c04014a69a343b222ba8ffdb80e2a179a94683df739
MD5 75b0f959440eb3d0b213ec891e30e678
BLAKE2b-256 6ef7e993e1b42dd6a235d81dadb928a8d57807a7f2572598b05e21364fd3b388

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8acb7aadfbcf868c8c53e3b00cdcd6f9d2edf6091b2d4d33dac1a1114824c210
MD5 80a483477653b788e07098155be7862c
BLAKE2b-256 55159b30dd82b209239319769c35822ebd29411fd1b6085bca81eeace5fe38a8

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de3ac26add6a20901f30de364de3737fae420b50c0f0492875e8619e3a4bceef
MD5 89ca062a0f6d6c8cebf193ed11d42fc5
BLAKE2b-256 daef9b1d38bcddf6edd3331b69ce3f8992eb0120df6ca4a7ca9cfb07bd781433

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2a3eae340c17b468ef096ee6af79b9323868d1e637a388a88dc18db61a720fd1
MD5 d08c0cbc3b69acfacf991dcc10df1220
BLAKE2b-256 b9368d96c80d40edd9e75766047e0412fab03d8ce6a55fafd4b920311ae1be2f

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d4e8d9e4a28ab683870ad0067e23f635f17e705c0ae973be268eb7dc25c60de1
MD5 0fb02a00a5b64cd51cd77f7c62e79599
BLAKE2b-256 85977fa1278708531bfafee9228aa27ca2a9d8d29c5b3440b60cf30c3f758f2f

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: amplpy-0.13.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/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2f67e19faf1c32edb2db96c0c14f3fdfe4d65a5165da8a6bade6752169c929d5
MD5 554ca811cd97d9c1a81d9fe721e1460b
BLAKE2b-256 98467ca2c8e93ebfe94cd43ff7f139d5e68edb4e0ba71502629392b994cf9fde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89e76c148bbd408283e39805ed2eb5d0e3c65bf9f25aefc4aecb0b66ee19ab0a
MD5 69fdbe6bd9ef97a6deb459ca1672c3bc
BLAKE2b-256 48f0cb2e7d20ef3bf991f49bd411ea0caaf9a9e4d7c5d44e12f814eb637ef8bb

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b6826feed41a2c0a803c82186d6655b7ce531bdef660fcea8711aeb82c4d071f
MD5 a3fdf304214aac2354cdd4004db81bd2
BLAKE2b-256 d78c1feee44d882ead91bac3a8fabde9a621987d89a299210ade6c77b87ed408

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4390a833f107a2dac33c2497c4e126a6ee497ceb970e115f57e0a87bdcf7ba15
MD5 9f3625522892932aebf667bdf2f754da
BLAKE2b-256 96c6c0a8aebabbf574ccdcc7f516ebd529a02ffcb1bc51e56ec9ad37063df945

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3c4955abb844308e770bacc52644ee4edbfbfd29d22ee5c5b3a9087e8cd671cb
MD5 3105b8301494e655aeee478834eccb46
BLAKE2b-256 bd3e30b0cf46858ee6324c02794dfbad800516b66c865052b4cbb4be7f35dad0

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0e85910a664b602c0b72b83b1ae5fe89eedec7756a13702edc0664715c9a1262
MD5 d10fd4251ce19f20fa52d77a2b762afb
BLAKE2b-256 8f72e8909da13014d5a465c8d9d6af3c7c5c9032afd84f51225d718c103c7ebe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1cb574591dd067a9e9205fa593596656d814353ac32dbc224e6a1833828f0c4
MD5 08edf2b220be3154f8c63a4758ddb06c
BLAKE2b-256 ad17e2c335b2315109d72fad7dd7f9fe5ffd29d7b6e31e945cea4135777fab49

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de74ae7eaf4f844c4a4c01218e25c6ebb935bd65f85e02e96b1c5440addfadaf
MD5 82ce5c49d2ff78e2972ab5d472067d02
BLAKE2b-256 ec26ae2945d2b44e1c58e00f3d9a133cc68d3bf8e7deec4baa684e4020b989ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76914108338773ae3e472793510ab80d6af4c1c8ee48a4171939104a8eb8b606
MD5 72486b604b6dd493fa857540655f2a90
BLAKE2b-256 2015712e64e190cfe7c8d9c1e91da2839dce42196a1e7ae6ed11d37c2827baaf

See more details on using hashes here.

File details

Details for the file amplpy-0.13.2-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: amplpy-0.13.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for amplpy-0.13.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c14012e371d0ae08e36f907dbf42382d0069e0b18cf4f2ce6a86c4ceb544f8e
MD5 2788c5657db857683c1d680670ede9d2
BLAKE2b-256 6cedf3b84a014833be2c95c1d5dac5e01053dd37f4e5a554ec6f4521c5f94f2f

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