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.3.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.3-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

amplpy-0.13.3-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.3-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.3-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.3-cp312-cp312-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

amplpy-0.13.3-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.3-cp311-cp311-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.11Windows x86-64

amplpy-0.13.3-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.3-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.3-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.3-cp311-cp311-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

amplpy-0.13.3-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.3-cp310-cp310-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.10Windows x86-64

amplpy-0.13.3-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.3-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.3-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.3-cp310-cp310-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

amplpy-0.13.3-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.3-cp39-cp39-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.9Windows x86-64

amplpy-0.13.3-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.3-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.3-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.3-cp39-cp39-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

amplpy-0.13.3-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.3-cp38-cp38-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.8Windows x86-64

amplpy-0.13.3-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.3-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.3-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.3-cp38-cp38-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

amplpy-0.13.3-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.3-cp37-cp37m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.7mWindows x86-64

amplpy-0.13.3-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.3-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.3-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.3-cp37-cp37m-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

amplpy-0.13.3-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.3-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.3-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.3-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.3.tar.gz.

File metadata

  • Download URL: amplpy-0.13.3.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.3.tar.gz
Algorithm Hash digest
SHA256 0bd29b223f615daaee0de2138e45bece7a09b502904036a86121fea28b4f245b
MD5 d40bb735e1a9872058a2f3af9c7c32af
BLAKE2b-256 0035af6556e52ad592ba1a3e7b7c7d3e602448ab9b3a51744bf3473ad964ca28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ab0ae6f265f0434cfee8a0affced115ed11fca5352e10873b4d811adf81abfdc
MD5 9501df91fa39ca64e0637fb679c73ee7
BLAKE2b-256 332408b0bb1298f0c4eb33fac99b329816e3bcd195e23426df426510ff8eee7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f9073a8636edec47739ad5263d65d6c26a04738a4a84253291025872714943f
MD5 df2cb41539e42f1980b3ad3d6dc21794
BLAKE2b-256 96c7cc2235b3e6f44479ee582ddb76916ab0626b7f143661d1a7ba954a18cf18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f5301c33e440b95b85273d44edbb60cd1634a0437b8f9bad735cdfd6e4e60b04
MD5 c7e97388854a72cbf4ae1a558a4b7fcf
BLAKE2b-256 aad1d1fa0aa0fdbab5471e3da99d0ad52b02a58304d375ebc73b7bf9f35a200c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e61a980993008cc19c6633e29cc0403036469425f6ddba59f7d15666173ebef
MD5 76ee082b055ca3f5888ae25376de897f
BLAKE2b-256 c2baf8aab784352cd2d7a9651590c8c7c5791d39f9f8dfe2b101f060ac4bf810

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bbf29af4600ba768dae0b4a89710f5c948fd8a804b123dfddb556c7d4050b2b5
MD5 17e1baa11cdf0144f7745e8a39b576b3
BLAKE2b-256 ce994ee8197e8ffa65fb7fb85b811303a8a229e2c311e67ab90eef6601ca0098

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9775112e30c36c8cda317efe35e66a5c9a47138e315cd25d5a1ce67526cf5f10
MD5 b2254031d4ff1148d1b143acc0f4f518
BLAKE2b-256 1ba4b8fcbce68efff72a89734c962d71d02ba22956fdb18b159d03de240a06f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2d02ae7f8df4d1c5c02a1aa63a5429fd0d6db43493ce5d67601e9606e455ebe7
MD5 1d4556217b1631b0402ae454713e6cd8
BLAKE2b-256 9c8ea9ab5651002059efee2da10e401d8cb45c92cb7555d70f6cb3b760d23005

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f96ffe758e4dde8858ba32171628cd0180b8fe3510e3e0f8e47bda3f040952c1
MD5 e412aec87d8ff5b3f1c0310809ede562
BLAKE2b-256 d9d62036dbc9dd03e4aa525501bbd507d354a0720236f9cd8b1366eec6cabc27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ebc2f4093646561a92a245d6350320f684f38faecba45df77426db1dd5373a62
MD5 610d10f71d6faca11d56d8693320b438
BLAKE2b-256 8dcfd4175a98a86248335e8657d94e019f8ef62e3d4a8e947b320a9c5e24eabd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05adb2302fefb37d7999f78d2e4aebff403df87ee1ec83b209c2decbcaa006b8
MD5 9cc0632fb2c10100757265845617a725
BLAKE2b-256 6270ce6bbceb1dcad401fea648605d5b0dc7dcd74e51c628a1711ae0bd57d211

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 64a374e55eb397427a98df8716f0c961cf59054f8f89a57a5e33ee77696b9d9f
MD5 c82c99a87a6450c5762d2ef5a51320c2
BLAKE2b-256 759791a3931de4513fdc04109bdbb46ce90bef4b0278b28c6953a3d2111a7a49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2b7924c20d7c1a2e295d3c41e119336fc15fddaebd6543931d5a1dfcc7220228
MD5 83318d48c8c29f7869c197769b9e2c45
BLAKE2b-256 3298b7520b6204c8cead8b67aa2dc5e4494d20adaef32967b52965216dde137d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ca2a22b55deda09f82616dfbdf2d41f103caebf6782e3b9693be649669d207dd
MD5 c1f3b1ae645a7870d89037401727f3fa
BLAKE2b-256 13744487105eeaafe2238bb6c4357be4e43a976dfccacabeffa597c4283ad893

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b4f2be7728725663d7700711fc23b4d3898d13593ffd2395e97f79705ca52d0
MD5 1296e575d36e7b84bec7ff9c27c1713e
BLAKE2b-256 24d646c62308dec8f756a4dce7b63dee1f45de8a184ff5eebe2c4391745224dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a372f268dffdcfc5437315526ec57373fc0217aac20c9ddd626cac42d9b986ee
MD5 b94592694aec5062154ade31598a9c8b
BLAKE2b-256 65ea239458371b17017efa0fd5296439d0793de384814dc13949098622fe0a14

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba066b0ef62414faccb4cf2b2a78142da75e2d46b803b64bfd63ef832b3c72ed
MD5 450e870503b2f724161b9cde8b49ae67
BLAKE2b-256 8f04c3a6f1d6d478aa7cea7cfee8ca4b35d1eac4d17207645a32baeae55b971c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4dbf66e504247324f191bf654f1f9b39cda152c1d016c2f64cb01daf530229cb
MD5 4396c9f06149957b1138614b92677317
BLAKE2b-256 fad34658c01ff2544a11337f0b3621c93af966967f219f755b2426629a183e24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 425081a1be91966826df5593e8f5c65c4981ccf632ef6be6a73865fb182b5166
MD5 2050337b5c347572726c611461ab924f
BLAKE2b-256 78a449ef3745b1f62877187b307d4ff57a66b31a8f01468c1ae504376e2e889e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e426a4e20f33c584bb962855cf677bc637c128d54c4faa1311ed1c88d62c450b
MD5 e27ef96252ef57132d6c606cea400fa9
BLAKE2b-256 022f59e97ecd1662669c61d44ee897797546c6f21b5475a96b7bca9b19e7a45b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 838e18f8083ee5a440318bcab085c1f731fafc6833d7accb8c9b07ad4129aa75
MD5 7d18dc78154cb003981f965e034037ab
BLAKE2b-256 07471c01c10f17a64bdca0c55ad76a17b9368e20109e55427fc2a18f3eb7be7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a34600d32533d9dba0cfb245402e1af945a0cbee61df7b2977073a13a0470e2
MD5 be8eaee96846159a8e683eef3b89bfc9
BLAKE2b-256 28b7955e51e7e9515d01a7468156aa977b2e52f911354e0183ecce1acded33ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce7187f306fd8dce787672eb18fb86388e7962e30518c433ab51c755438ddad6
MD5 b2223990edfc8f61a8bbc0d79641c9bb
BLAKE2b-256 b3e775702d4bd1eac8389973621dbeb878928dd7d12b907c48573b6d5d3eb598

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 840bc62d512f8add0d7cdc80c935abbb4be7eb0f60c171b881ea45bc479b212c
MD5 08f12279551a17b334d640fa459027f5
BLAKE2b-256 e35113b7f5c5a83504d7243264ada551a90b0259455e76dcf6496c956ef7601b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 288c140fe7fec3d638636b4df833eee2fa12072c153cc77c5e378b61def84965
MD5 a5ea34c77d63a55c5f42c16839cfc5f2
BLAKE2b-256 f35405e5eedafbb7af7d5632525d86adc6f88a2a35aa3398bce1607d83e564f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9469037d6a25c06bc76ddea609be9fd679c5f4509a101760063473ec68c13e31
MD5 31638b0f726853dbf2457d653a11c9e5
BLAKE2b-256 296ae9d3c2626dfea073513da6e6f798884a3a376481c8c4a7c8543b1499d2db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c79f7fce2a631b3c7c4411c496fc4d60f0e1a5f411cc53ee2d23b16db7fea525
MD5 a1d6fe68379d9882cc9ecb0a9ee8b99a
BLAKE2b-256 ac9c34dffdcbd27b462a23bae2630067f0ad5c6ef34113b72013e273f1f3d39e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9f9e6b55ada0f0df080b20b740310958f4f6855773ffda14c0c18c942f48ea86
MD5 149985ec8f75ec990c7e0503962c312f
BLAKE2b-256 96d80deaee240d3271737009325492c4a09d37fde3765c48275868c0cc14b93b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebff082f36ac67c5d8300121d48da3cf327b79605e120609a6c685ea45775e9c
MD5 e0c8b91bb8bc1226241373caf77953a3
BLAKE2b-256 f97bd16591a07db44c359c593a05930dc9525b57ed504b2262c24790c12320b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7557b0b9f001202e374e7ae3eec3f762f604c622c1aa5008cecc39c3743c1b18
MD5 b1402468c8cce6be65ad2b759799ca79
BLAKE2b-256 7ac2a26bc33fc26780488dc1888b91203de0ef1bf103de137872eb4318501132

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1371e04c35c5ffca483e529497e0a254a86a78195cda402d1371bfd9092c9fb4
MD5 b2ca5cc0cc02fe9f8f9fc96418142a75
BLAKE2b-256 9efe29c2aff7663000eb06e84bd6e57acff732a74582d5002688813428dc7888

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0b189fdb5504d197e19e62979dafbb1ebb379bd2d2de285cb8b66fb5ffda619a
MD5 831702c249dbcee17714eaac1d8e574f
BLAKE2b-256 4582959e8e0bd6096321190b2f2d8e6d0c31d53021efd41bc489019c36e08448

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd4cc24c5fcb2da4cca6eeb41bd23ac9c42a88902c0164448b6d0ca169af0d49
MD5 bcc5b9f8d56dc72e6d848c8606debf7a
BLAKE2b-256 0ebdb1c1c812551c4d1e858ab26ae81f7a8316980e9b8829c4f15b477a8d83b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e629ef8b06939d7228a589018ceec3908ed55078e3a581e500a37fbf2c3eb999
MD5 f77d50b95367f55b498be1a889b9acfe
BLAKE2b-256 aead81ec7c93bb66e1e9cd20d65b66ebda91023d3ce35aec5f8cd8fc815d1e45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7dcee2b7a7b46ae17a392cb857b44c4172999eb4b7f15478e05bb78d9b201d8
MD5 2b623e9cdf42043318309fef6f98533a
BLAKE2b-256 287106f5d0c566b6026fc44bf65f935e070758c066e1894cc26eee096628f4ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06265ff7538b206b7fafd052fe755a26f90b4cbd4f28444b603d8028f537ff97
MD5 613d4d7067bd9f0cb97eb130b1a47352
BLAKE2b-256 7e8ba20be20b42aad2e56a4bfed08fd08914eeb5f31c1cb17e650dc282e4d6cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9e3bd44c2675cb1ffef48fd31624b052a7e3c1cb902830a22ba2e7e0c2bd7fb5
MD5 d16a06ac236254494f0169a340ad0f5a
BLAKE2b-256 af13cb5aaaf4fbd1002428cc2e3cdd897a1415b95de5f0e613e62a34a0a8ac6a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d029cc92744099462630a9a6933fbe5aa6056fd671088e47c210ec7740e06ab
MD5 e020089673aca9713016d0dcbb169c14
BLAKE2b-256 5b6658d65555d83fd2e0793ad5db4c897db9d429dec33a3d9f48b0e0fb4b6aa6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b6a5a1ee00bae41cab00dae7e0249b631df226b9dbf0119482b27900a0f63a1
MD5 b4ae49bdc09f2dda0eba79467236f684
BLAKE2b-256 3cb90df4f774320aaafb451b44cc93d11a10119b19d527fb11c0b859c3cc73aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa684c7319b5060e108da4a6694661e4a3a16786f44aecbcb11b39aafc99ab3a
MD5 eb1491d6308fdf1b2daad5095882fdde
BLAKE2b-256 9fa4cc4cd8864f236f5602b0634a20163808f77030352cb2afe23ece261c493f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3-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.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 307c63e01c5bf8ec5d1374530ca8ef17428b4f1d262aecf6954f21b1d9215d65
MD5 dc1ad0cb93fe52a760a20a2390930071
BLAKE2b-256 d80260e1625c95440ede36f992caf1d8d9c8ab7ed66c3794b5a9f1c4a8991d95

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