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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

File metadata

  • Download URL: amplpy-0.13.3b0.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.3b0.tar.gz
Algorithm Hash digest
SHA256 da421c0f3725f95719eb96f10f4dd4c161dd9ab5431870ed696f1f553d5126ed
MD5 eb0180d74aabe6ee8298f0e339ed8447
BLAKE2b-256 a21c203722840f9b748f706cb2da3885888a50bac7ebf3d7625aa8bb973315a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a1863a4e573676bcfcc7efe5697e9bf29f3816e1988dcd4cd88dd2329e7c925d
MD5 9b67310a5ff2a6a906a6f30a4d0e9501
BLAKE2b-256 6cf536b5c0c97d5e9d99233fe212d162713346c4b65695dc693660b837845e49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f2fae7fd7d57779b70ab8581feb7865f2c93af5cb5c11b5bd343bc58257c140
MD5 29a9f3c509eaf6378840723946121ef1
BLAKE2b-256 9c76573442e086e89576996651e6ac3830b777d6e3d73369692fafb01b2b1df0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 07f5ebc32e979999bb35937c8cc8c51d5caaf51aee5d87ccd83246dcd216518e
MD5 bd13e7526a5d189fcc8841552fb38083
BLAKE2b-256 2573e0ac34d3dc39d8c263d8fd31daa2bb35e9205c8e066c255958e25adbfe4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f66f157daa6e4dc626457ee3e4968dc48bcd847b6873b66939b416a681884d3
MD5 4631800dec8836c9e3fc19d527a71ff2
BLAKE2b-256 9d43d0a281d82300ef9fa95e84a48fbccce4277146a9c819909c5c1508b03c8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee78e09c4f300eaf808612a90e95f09f3ab144c02c62d61b6386e7d1db3483dd
MD5 9449bce9479589cb2c75ef1021ea1445
BLAKE2b-256 ff20f7842b208d7febccf7e4dca3ff123e69b8a10986e8204710d6f8cc2f186c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 db14a31b8e764ec7957ed96ec4535e9c5e509d85a3bbd3ed55e4bfb4a688d0e7
MD5 fc3d6417392df774fc765597b57e00d7
BLAKE2b-256 808edcac757a513249b92a59f953ec3c7a2b263f6d244bbcfab478617bc07af6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 26601dafc9e38f32d8093cea0a3cb51afef1c5ef9d661f886346591787380728
MD5 6a2242303f29d1afcb6468469ef360b5
BLAKE2b-256 377322da98ec8a5f2c9b4b49a99c4db01491c5d91db5fe1379e66bccadda9328

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 507af27261966de16a763ae575c99be319cd645886a8b086ec7e0d234b08b28d
MD5 d06ad707e4780ae5adb71f6773c94828
BLAKE2b-256 6c011e591cbb089930e7a8b854d58bb2eee38de875f9e39e271aa7e187fce8b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 efd8f6c8b718d2ad6e1937c007c504eea6cdb702b9237808e1a15d84c1717a0c
MD5 e48cd720ef1b23edcc05cdc9e2d0c647
BLAKE2b-256 60f2e57c6b6703da002041b7b000bdde9e76e2e6953d85b0a0404924a14ec6f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d7e6630c175afa521e0fc9da7b2b040bcc9ec553859134639f5d5f55c181b85
MD5 8f0c4ab90e13d6dc4da3841d61dc70b5
BLAKE2b-256 ce9f3df2a1280371a90b814d39e5be4fff15e9c1c53be5da0ebfeaae9d4413c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb7e83771ad8c4c81d6b9b8170adef735e1b3493b814f0dd01c484dff2c681e1
MD5 ae281792ad0b2be27b35df89c503f21b
BLAKE2b-256 0562f84d5c07c124aced1b4d4f4733038b51ea799cf674c93a338908275d1153

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f355ded6a43932269c967de6d62fd67e05f72fde01d2519efaf649c87963bb7f
MD5 1bbc69ef6a39fe3fd7f2b97f35095b8f
BLAKE2b-256 48346c21f2032c34437457bb880654265d94ee0ea46309fbeb30c7b606fe2364

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a7b04e0c755d16a5d749b0285c40d95daa7c77b0b76c73b32c68a24021c94786
MD5 def6b82c4e9464348cb7a8b425cef6e4
BLAKE2b-256 52f3da495c1489c3791ffe40311646a4e2bc6bade2d77133f9eb9fcbf479b04b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51e2304c9ac3ef092a9caef6e9db0e0f312483d973989a1f91b38e13281b0778
MD5 d3601b89cec16fe4f9f566bb86e42292
BLAKE2b-256 3e8beed223af0d5cfc9faa22742432f88fa78ef3477a6f79914b77b1e72a5f11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 19386765bf3fef32aee93abdc29db47e417e0b2525b6aef5eb77cb14c142e25d
MD5 50da93e5221d067c994f9e4147114597
BLAKE2b-256 53ff86c01b72e632538da80f93306ca268cea60d59797b9cde81e1beaa89b76e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1edd863fa19d6709477fc484cf05c468444751ba42b43643e844da9048a05062
MD5 edfcb979056e75050fb412df40e6bb40
BLAKE2b-256 bad3af2ef578fe3668963f4d4e7a981bfb40bb8705ddadf0cc7cadb9089253b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 83066ac28041ee0250d637c56dfe4d55be4065cf768aa9a318491c8fbd4620b4
MD5 19b4aa3a03c7474f0899faea8e3e270e
BLAKE2b-256 0ad001b43c940de9244fb36160377d4acb2655ec82bf6b589339c9ab952a9e51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b7703f7d45b9d9874e9dc52d9e3f3b7961afe4b4359ed229c5f9a84ebbf1bb3f
MD5 f53e4f181c6319aba59e2d592f280a26
BLAKE2b-256 bd6dbec4a215848c2e088fd328af25f980a928e9f6d1c022dada5a88d2e473e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9298dbbf1e7d38376fc2b6e3af045333507ccf1071d035483b206434f9e7d5bb
MD5 265c1b43d6c551747c0ebccc22fd6517
BLAKE2b-256 f1d05910612349cb623813e387264d4f88cf052f8c301579fe1d608f86d313df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87a0bb48f1388b34f5bca7733e3a788db97c320da63ca57582fa4362127e0199
MD5 d26b7a1212e9cfd019f155fe63598470
BLAKE2b-256 318d43e13c87d10b47d03b6e4a64acdc14a9ef886ec88900ed9e52cb94f4ace9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a5bdaf8528c59d744e5f326475f96672f36f745da3fea087294a21df1f0bcab9
MD5 b024916123384fe95878fcaa00d78cb9
BLAKE2b-256 ebfaef2ba6c53a9f82a5a59c90cb68f11b930656b2428d7e7f02f325fa43bacc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b127fbfcbe8a7bf1511540c324a5d9981d1b2926b0fe23cad56387769c983a06
MD5 559366f9add2c77ff466236810706bae
BLAKE2b-256 3986c8bd6c90103af9b62eda115acc352735387bb9760c17ccbfea79ce648f3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 677087f25977c21ec83e86ccefe09d4a201d011c17d21f3d31a106d96ed9fa26
MD5 482de8829b215b0f1f07f45370e16331
BLAKE2b-256 89ff663781685e01eea92e345606cf66f732839b4009809f2459926009161ac3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d41afdaa994b00183d7d353dbb5ca7ab033022bfa12e5f34642ad8e8b6e4e02a
MD5 c323b77cd565c368a98709e87fc3ca54
BLAKE2b-256 1a180760880915f68406d6778db2c49a3b62ba6ea64fa466cd30bc67f0ac7039

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e993b5051b6e6307203adfcbc7df73c23c0f3a5f5c57c3a46b7ddeed793e1084
MD5 936af06ab3d67302e08ed65a876dfbc5
BLAKE2b-256 85f0e69cbbc74ffa13fa275e142c0fc9b593f1bbe96cff50261b99fc9fe97436

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7588a7030becbe1e72bcb7c0415971d848b8e1da96e62fb17b09497aaf6aedfb
MD5 8ce16b12d1eed10ad5934173409cbe37
BLAKE2b-256 1155ce53ca825bf19e244776f70f09a6b6881ad67b251081395f64520f3d0159

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9b237da455067916eba30cf4f38925dd0dac6e9ff578f9c5f9b6d4def45b72da
MD5 eb6844df29c94a6d7743647995c8936c
BLAKE2b-256 7a18b2d77d99878745d3f07e6723a61bd98b026adbbd1e2b8af294936eec96e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c01746e8f2edfa65cb77f495736423cb42002b59bf82bfadfaa070a68cc2bf8
MD5 af5a69dd8a681ca549e51e04a0b9f0ff
BLAKE2b-256 a9e2c3796f442b8faf35654c4017a10440a24765df92953e518631c2cd39ffe2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8aa19355957a61e244d4bb5636ee519c8f5d9025f1ed7090b5c5acd39903430b
MD5 d481dc8f4951cc2d6763b7c5aa8181cf
BLAKE2b-256 b304e2926d0384b6a96d4a847340bbc9112acc3f44d49d25340428ce613a4518

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b53938254fe89aed7fb0cd1e7aa3db5a73051216339eee675f447d73abf72ae9
MD5 ebf2e0efd0f433ad553318fa259d9aee
BLAKE2b-256 fc446aea31a91f76bd0ed1747bf077cd2c49ea2c411d1ef456b1589d404cfe14

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 df36daf9115e27518b9f73b2905052bb2e9f25515dcafe391bfc8cdf798b6339
MD5 ec665152d19a83e978bb400e0cae21ec
BLAKE2b-256 620273fc242fe8afd5b1924f3ba905377868e90bc0e2aae64458572ef9c42eb3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89bce87261d76c7630810177180a8a92ff6d8635fff8d9aeec488a398620ecf4
MD5 c559fd79336ee0b2dd07075b8467b0e9
BLAKE2b-256 38ba6a649515910faf6e652864e4cb26881ed4b17dfde0fa7748cccd426c490c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d550a81b4445783bce8b2ebc2d0d5fa5891ab87f913db51d5b43d00f0919553
MD5 fa704b0b68143e58a156d53351f9172e
BLAKE2b-256 290e6c4ff059ea70760212dc6c9c498eece01f102cbdbbc960bb6e497ca8278f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 baeaf1155772ee0e885d4a96f2ffc5ad71a2fce1e71dcb79f82d28aa54ccbd9e
MD5 c875ed5ce1991a1157f4b2974871f8ae
BLAKE2b-256 b726d580035f0b3217143d0c1699f581b65b1369ae4a4ed613e32124f59fc22e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dffb67603393aec04f5076789e7a0123d5090c63ebbf17ff9d97f46021ee88c7
MD5 d4338f42b72232389c097ca6b9a5ab1d
BLAKE2b-256 c0f9117cd842c0cd120d668d1f1e1e5640e1e44db401dd0b2ee005088ff052b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6d704ccbbdfbdd1563f4d8ea2171ddd2de6e132a6b54e24c1867c2e542835c10
MD5 7dd67d2221953182ea3734d779fb5236
BLAKE2b-256 52785f5977df82ffdc9bf2b5cde6927b50238159ddc2bcedd81a30c3e045b5cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d7793cdfd5b5eec04cb579ae5003dc76743e1c6cc2cea61d7c40cba902acaed
MD5 3aa2abf8a952f668fdf9463e7433b5df
BLAKE2b-256 f84c037c5bbca1fe43940be21c90b96d23bc671efe3a9cadd4ea9f4cd01efc95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a39f554aeb12d56d2844ccd6eba216c0285284900c019abff40330d13f6283a
MD5 278866bd411785a7339b7fe03890be73
BLAKE2b-256 8383f23bd1d9dbf01473c49a04e692097c5d59a7df142603f75b2bb6eed958db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1481a2fb1263af4d14aa9048a228d36a2a92fa98fed448f6bc17bbc9f069c328
MD5 b0bd45fd728ea7ca9afe4fcc6c51fd35
BLAKE2b-256 a907750e34917fdf7fb88f68f5ecc2496f77ca3ff58c26822351807b4f6ba73c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.13.3b0-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.3b0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7e5df0e58c3c968450695f6ec722596f65a08514b74a0f93823c30480907e9e
MD5 8feab47f656e24a79ed35f880a388199
BLAKE2b-256 7a6d049ec4291ebbc32095b9346576ea7f8ae54c13e7ccb974a5385ea7800d5d

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