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


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.1.tar.gz (2.2 MB view details)

Uploaded Source

Built Distributions

amplpy-0.13.1-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file amplpy-0.13.1.tar.gz.

File metadata

  • Download URL: amplpy-0.13.1.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.1.tar.gz
Algorithm Hash digest
SHA256 86240b45203df23b778642c2aab026dc3a0f2aff4154495d7a9bf998333fc2ed
MD5 ba0cb7addc78d0df3d7bbff8852639f2
BLAKE2b-256 d2d2090caee3abf408439deed1ff3ba424ce684635b2fb716aa5a6c119e0a3a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b69f884f24540204800315c11b92e395830e1328b7bd9c216cd5bfdbb688f7a0
MD5 03b34966fd602a3f0b58eb26a9aba9eb
BLAKE2b-256 51344516f73e52d7f88b021e14b3a1e45f45307b2b8809c02da95d24e450feed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84c9b4a6ff343ba7bc2da81219e512231e6681921e964c99e075f8c6464412d8
MD5 6aa713f6be340111acb87c69400b382f
BLAKE2b-256 2f8aab935373de9d267bf35913be6389d27567e9daffb192b9c80e3ccdffbf6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b2e9444b8272b706ee017c2aa01dc9f35665f690eb94ee1b74aad68b3fc3878
MD5 844dcb48414fbcf47e24121b016e2f88
BLAKE2b-256 ee0192db5862cf5772b5fa14a31f525a3eb15cb0e7133babedd1b48fb12481aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5fc3ece97445f4998c900c76f4df232bb2cc26b24f12bf97f39686c4a8cb1b1
MD5 4068026d7197c36537a337fa59876708
BLAKE2b-256 acc515ede69ca65e576ce00d1479371ca5a478304ce3c60547d2026ef1f267fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ae7f3edf15691a78f29b3611f44d061445c118c4cb10652c80d46c82905e817
MD5 07adc73498e97e1d4ba2f55ef40762bf
BLAKE2b-256 fb7de1108c58356d2a8b3bb6bc42550e852a386def720035b5d001cc373c1dfc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 016bc9d4df35bbee657351a1f907a69df12ae187ed21b86a5862dae211d96778
MD5 803b9400c260d0e771855aec253b84bf
BLAKE2b-256 c8273e06c10d7ec33649804e8563d0352682acae95bdaa94e6db3474581f9f68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5a65c103bdb07ff9390369e1833df39d55697fca63fab3851a98c5aa14bb7abc
MD5 010c7c9c55115a93f454604623f392a2
BLAKE2b-256 067008148f89746afe65b1c2768c8a706f0ca0c117a4da758000b259f9708a42

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee35f8ffaa41c80b91b8f1731922678c3aaf759a5ce711705338e587043b730f
MD5 f34177bbbee1e3958c2b1ae37612a302
BLAKE2b-256 e12ff447b01c721820d0b498f41192a8c2118743953f5d75ae1b3a85c190f909

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b334789254b0acf6870c06f3ceeb07cb2121883d530ec203540875253388fd9a
MD5 d41abf2f736d5896f62ac4ca3b148d63
BLAKE2b-256 1911c16970d76135fe84bc1a46b31633742ffac5d7294e454a00ea91198c2e9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 687cba0e65b4eac460209ee7b2dda3a757465167d561a8b0f3b3bf2c6aa8c9c3
MD5 7ce9e635c616f8deddcbdb921ef88a5a
BLAKE2b-256 d8a6bcd2e4704a6fe65ecd90f046a3e19bdeaf51f3916a3874ccde4d911656b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 88099dcac7eecc239a9c388c5f0eb253ff4d6902c263f71bbb1f429ce156ace0
MD5 6686a313e3c38d92e5c7d93a3e7776cb
BLAKE2b-256 0c9fbcee1ec5dc46798f5036048098fd3673ee95bb5cd7e3a1a9f20641bca55e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 786202c77f0b531d33f2f41bade574ecc5a94cb29cd2c3f81f7bc95ed262ae81
MD5 a945f707a98b3ad31220e0d6b8ece7c3
BLAKE2b-256 fa1d807ec6a9ecfaaf592934ed028cbe8a6c1b7bc234bb582a7caeece7291fde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 282bca666fa13a98007c688b49ef530a4ec5a36548049d445b5c012ee8ac9928
MD5 3e8af5b4dac3caa943d33b0ee2fd4361
BLAKE2b-256 c17531f2182735400f120244fdc486891b363771a671d5ad0dfe77dab0de253e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98cc4952fc794459c07f6b4d790d081ac17163d643ff7092598d0df8c6e60baa
MD5 31813fcf1d2ab9b052d52f3bf824a3cb
BLAKE2b-256 ab72d8b93caedd160dcbb1227082c470c35a2924f4d7bc3fc663e180176f98ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ef76788ba7a7cbd8ba95f53b00a6be8a4dd0d0a8a32c6b188790e77c90438b0
MD5 1fe8bbb4658823add6a6298c69e0829a
BLAKE2b-256 9b8185b942a21b11279ba27fe6c6a704fc9f34a2d7fbfc29d2bd6aa4269a7544

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04937580c2e485798dd06a245fada36607fc03392363209951d9bf9a907bef15
MD5 0b622ebbe4843022822c85f964411c0d
BLAKE2b-256 a302d78ef5d196662d5c29149ec8f647ec39622e838fc56a0237f6e7782259c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ca4a6c011156fc5f96ab1d3ab488eea1e52d41cfe16f8f9372002da2cbe97fb0
MD5 95a938eab12bfb66e0b7c2efc990ab4e
BLAKE2b-256 58a65094c8a6cd4b08a4880a64818142c145b09f14ece94fdce44b49e3d51921

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 899743bad37514dcf806f652bea61591b7fbf3b4862a7dcb4a7d9f61ba08e04d
MD5 766a5cc7dc2d8375454fbccbdc610335
BLAKE2b-256 24a9702baefc0e7b82ebc0195408a6c2b400048cb7ed732e6590c76b70a3adcf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 28a1ed0242d2659ce18ab0f2559d73507af4476e75db640bbd974cc2cda6c3ab
MD5 a179aa7467903bcd57e76d19f979b537
BLAKE2b-256 a3402538d310f6b0a1f1965663d87e579a6c9199ef20c9e5e43ecc220f63222c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 303295492cdb49ed30f90efc94edb2b04fda604231e985c9a4069585aca25934
MD5 9afb6de43280d1a412d126e733a5b1c9
BLAKE2b-256 25c2d7767461c4010ed844d6ef765742bb3a36b60bce75f0a44103d28f52be47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11a422e796ee3e093830423d68eb8549d279a381b97927a8db4a858335278b06
MD5 bb660b934b34e91957c72209c972004a
BLAKE2b-256 43759fe3aefc712ebb1465e176ad52ad62c257e875141b2e696625302b1a36eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6bf9d7dad5de1fa903d49b73fe8ff1e6c680a000ef61a2011293cf6b92d848ce
MD5 9bab39e1a9c5fa1819044f42d2108227
BLAKE2b-256 30008951aacb9f9eccf19b767e177bfad44a16172e9a940294ce65537b79b107

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bdc22b7b09bbab90b255d36cbd5031aafa17734e79f29900802afed9d9fc2564
MD5 a6eb35b81f9acef480753788dbbc92f7
BLAKE2b-256 969c289273a1dd59dc6c4f76a78cb3a63948ba2a1d99d4829a3de9eb4392972e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a5e99bea29a20674ca8431c9d59637fd1d45097a113650af66e34e875994606d
MD5 65dc8e2ec6d5421f1314c61a8e94b274
BLAKE2b-256 5c018b1f13f156913ee580044776240af000ee992c041e0477a2629e570e791b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b5bdbe89be7a31ddd034b859eaf3d6f3469ed1a489664a4f64f60a78d5e2cae3
MD5 a1c9034dbbc9a4183a5f32a9c363a19a
BLAKE2b-256 26684b284ab76b510a664b4eebb4ea92d0f20193eac274b37d9a551c8fdfd329

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2fddc90a4ff54f833d5704aced033edb5e0025b74344f2d0012782a30b9e8008
MD5 d062118a233df46bfa1206e5dade95a1
BLAKE2b-256 754b3a19afd1c398cf4440f80a43d53d834bb894965687873cde8352f6940e70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d9ad329b341f27fc4f741983afcbadeaca925a4c31a89aa15cae85ac034a01a3
MD5 aea26d76dda61f41010168850ed67c6d
BLAKE2b-256 adfced3d2f96091788dbac95afae41c6f8a7a53c77995a127797801687c16ccc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d95b4a6c597fbad8b8b27d9d15ae848ce4372724c4206645679c3fcee631ca8
MD5 dd629c349a84d01203eab03c4ff0a1a0
BLAKE2b-256 eb0ff2b03fb2bf6c62277c6163c2fb1dcf7d25f5b1b9d3b0e97be5f79b91c28b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25342c4f3175c54e7eeac351bc02665669bc38c7b0a45cef5df7c3b4bcc3865a
MD5 a84ba57ff86d5f5069895dc8870cf0a1
BLAKE2b-256 13fd98f54d7f9aa62713153b6d2a3eb6cd74c474097ce09cc6ca18b945d9df27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 569a9c2e5ebdeb932df8369fbb5308bbd79a0fed7afbded5e988324312749c26
MD5 1df37d86e0d3d59706206e4c04ec64eb
BLAKE2b-256 6606f2a7d0e63ddd6df333d78384230c81297ce0658add3b372703f9159282ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1a84eacf9f790cf96d3bb23c8fc63811eadbc5884e1b178431e0f26ed6bd4d55
MD5 96515794e880fbe1e7c04ed3efa898d8
BLAKE2b-256 c2ababe422701af820126412df4c707749ddfa85081205041a4a9bb986e85d88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf80e31eb9e7c1b93cac51ca2292fb750c3364cab3abcaf143ea39bb14d3d662
MD5 cceb63dd64fea6f27e67ab65cee129d9
BLAKE2b-256 26fbb52f2e5acf1c5e99c3f42dda576b2c3e23acb59330cca28694cac0628381

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e9cb9ecf91e9d4b96c16489e5b28687e55370ffa6ac90b073aae218b502568d4
MD5 ff340ee0cdafe512db1381dcf8b51384
BLAKE2b-256 a7c662e674fa4f6519b7b1d7ccf39080dbd6b2f9e207b3ce6f0ee420d3cfcb15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7eaa5b946c0d22db19e26dab7338f14af04b50bc6240c4457ceefa5f4ccc789f
MD5 f11b0ae04a8c65abd4c9aad1d61e3f6e
BLAKE2b-256 2f5c8c58e126c9ccdc24c37a090ce1dcf49d28df401d0dbaf371c3dfaa192b47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e04c767fad74e7117dee1e83c35c3000ae5a7ad25c4364319a22751a43041686
MD5 e4bc4691b668cc5ce0ea5cd3b333a74e
BLAKE2b-256 c1a97dea0811cd81e60104df9514a528a3eb8b9a4bd796a3c3bcd39651fe1a3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f4ea2a55586aca36f198b5ef3df50e74d1a1fa82cbd36f6660bcc8447e5004eb
MD5 8fc72b513d39241414ea53886cfd023c
BLAKE2b-256 907f10f97d8328e04c338f65090e45b777c6e3880dc4efafe502bb8500c64f3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68eba9b2b8fb3f1ad9bb42ff59939e190a97a72d1ba15425dc333734caab1f74
MD5 0f7473da17b162cc849dc6d832ef39b1
BLAKE2b-256 279a4e65e31980a84564d57cfb1eb1eac61a3f67608c126ea6849bbc975ab416

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 61c13142000e321a8def3677fa737888924c47df71a76dd91a3989e70dd14710
MD5 8e0270017acc23773fa7cde918939996
BLAKE2b-256 94e6d39073d40efd2faf413089a1a1f6b8de059a2c51374a345d2f0398f903d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 289d120658794d7f17956ae283ffbfcda67aca058451e93ad8c3c304ba814111
MD5 7383af11c871a5d04933054a73966826
BLAKE2b-256 28a3702df968e39fbb8f14b3ef0c9cc039b6ee89b83c14f0ba43e32c40afe940

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.1-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.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b3f5058343d805497895e786e56218497fb3cd4315024f207ee955a06bf9fa00
MD5 85d3dac309065ed5289d2ceafc31919f
BLAKE2b-256 46cc5fb891e55b62a3908e117117b98ab636a59429a70e59dc5fac3862938cff

See more details on using hashes here.

Supported by

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