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

Uploaded CPython 3.12Windows x86-64

amplpy-0.14.1b0-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.14.1b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.11Windows x86-64

amplpy-0.14.1b0-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.14.1b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.10Windows x86-64

amplpy-0.14.1b0-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.14.1b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.9Windows x86-64

amplpy-0.14.1b0-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.14.1b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.8Windows x86-64

amplpy-0.14.1b0-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.14.1b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.7mWindows x86-64

amplpy-0.14.1b0-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.14.1b0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

amplpy-0.14.1b0-cp36-cp36m-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.6mWindows x86-64

amplpy-0.14.1b0-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.14.1b0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

amplpy-0.14.1b0-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.14.1b0.tar.gz.

File metadata

  • Download URL: amplpy-0.14.1b0.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.14.1b0.tar.gz
Algorithm Hash digest
SHA256 fe56754236536b36baea86f6e0a640f9e9b47d8f9e1017e99ac84c31ff96c615
MD5 b31aef2f1fe174c6921daadb2ecccd7a
BLAKE2b-256 6bef63491418fea073935c27692f65413e75e4a4956afeed79fe6ff057b68517

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 999ce13b705d7e446c58e16c43be6deb98dbc5d91b6d17de45d1b5273beb2512
MD5 b548e42a0cbce84e0909b78b2c3bcb15
BLAKE2b-256 372bcc00e7ecf412b38743fae51544e2afdd1a8fbbfd3d82f584cbaca2e93b35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91f18dd3fa2a62bfecaf4179d1d180f5e912b329cab72bca4250ebd4f7c732f9
MD5 fb8d76ce5ed63393b05c6639254c57c9
BLAKE2b-256 818c6a6547ad6f431686535a37cc4e897e1bd91734551bcc03a500cb52403199

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 baacd8fb12d9dbaaa61d2b8c9d11ba7ef0371d804f31957233ded009ec531f72
MD5 5f866f570ae77c29ea8bd647cdd68202
BLAKE2b-256 142b390bfbbada1d4980208f56d23d7200c6d8347ed6de35213fbac4bcec2f81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ef690ad784e0d28898a73471fc1dd4cce147ff41c16da3a6a80c2ec4f4d0aa2
MD5 8e46625345fb4c14c579a08137dfabd0
BLAKE2b-256 015d1e63d88e341a0027b391956f38ad077916d826888307ba5c00aaef04de46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d0b47cebf7acfcc73d38e726940b9806ae84e5bd55ba49ec397e7ba53e254124
MD5 4b068f01ac75e68331cc6d942cec1a5e
BLAKE2b-256 7b4a6a584acea9b0229b2b72c04a29cd5f2a51c10198561e8f3d7e2cc4120a3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 00e7dc70acf26ee738426b47842104403f3134d3887e71fd9ac35fdc3e3baf80
MD5 861a90ffacec4abbfc4c773b4a2517b8
BLAKE2b-256 115b04a65422a92b4df23523e27673648a9aea474683a6019ad53973e4cfa274

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3dfd304cf5adad163df2df18315382d3652bb2ff7d16df7a40017db2f1f22741
MD5 ff11cbc2a6ac0e55c10a0fe14b8c830e
BLAKE2b-256 528ae44450d7a625add308415cf04e9e9ca474eefda34bdd5716ad3129fa8652

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a771953e5b9a21e1f9b66eda2cab496c9e90821661601e7f29a6fd8aa23eb434
MD5 627bdae89764601846f87e019e215efa
BLAKE2b-256 e755e303a9ce9af6a3ec7a5eba4e4c1bb4ae4afaa8fcd93d57fcb16cf573ac94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dc44c2ee019b0d5036f5c6880dfc5db06dae8ffbdbed8ecf37cd3d7dd42bf369
MD5 31dadc7b137f272183a2967c8a8d8109
BLAKE2b-256 e7d6662a28bc800183bac081a31040098728b1cce7b2d49367191093f46c9193

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dab2f08b05d11cf06c52a8b29ff24493a9fe6282cc493619f0738a3e58eb5be6
MD5 bfa4cecfcec6278d9a08363763ae72e1
BLAKE2b-256 2aacfefb62297cc9c494f4c5695164d882714046ee542ab603bab3342be34500

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba78fc320816a57104e83f0e45f637b6974c3bd78800f50382cc6927e45e7e53
MD5 ec3d6d8e8356b1312531e85a71608f63
BLAKE2b-256 62a6c8f32aa57bf2c669fc0d68f26269d98141d8d2ad31b99b0f135cc4de8829

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9f59360b654e4291aedc257c04d53f6e6795386901040a1a56aa8b83262db03d
MD5 f41cd1788db8e2e3cec61e57524a0fff
BLAKE2b-256 ab7bd203c86f2d07137c7f311b398d11c36f6f353d795f6c93db71695d36865b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 65feb0ddc5b9177a1795e957fa28ea457c61ad156c6b9c9dffc128c8348e71b5
MD5 87053a9e4abd9e8e0932087e7d20b433
BLAKE2b-256 84a31a44ee6c431e64013fdbe6f3442d23a5981a319d4a1d908fc1f515219a73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a29056310f14c55f103f456e0acf72399607d1fd600fea018d57a29ccbe2de12
MD5 3b17c0ab855b650c8f3f56248f581750
BLAKE2b-256 21390cd6f1c4e870d8e2adcc20417e516a48cc1af2eb9bbc72aa3fc9bfaf013d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4665d9cec43293fddd5b7997aa4a1563f7f27dc82c158cfc96f08ab45b64e1cd
MD5 a438bc5c35af7749c848b853a2070dfe
BLAKE2b-256 b28a8e279833341f0c3698b664b6ee35fc20a2ce3877b56812ed3b57eb6143a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 774b7615b4941b98a1ef025e3bab2fe650ef04d0cb6ec46599cf508ad2a5a9ac
MD5 7bdb0996c72747fabcd16507266c98ca
BLAKE2b-256 6f10fd503f4530352f0ed33096d114f33e79ad1ccec732b6aaa1181242b12006

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf6003073f2105a4e9f71000212b4ec544beb1d2365d89af41906c24923d25e3
MD5 652d5feaf84c5e0e4d9d243a927ba70b
BLAKE2b-256 65abe950d83c85d783c9f3ba75b5748d64410df35340e819e2fce32a36535f9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 546b2a3370fc4dcbfacff90cdaba3f57b9d660cb082b7a62e191cb61ee91b49c
MD5 cba6a42a37288631c2214b96d5bee7c7
BLAKE2b-256 ae23e38e1bd92e5009371dfd33eb73501bbf447afbefdb538c7a55c4e1548c66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2949cdb0d79552ad50d51f254a5c41a4bb1aead65ac55ad3a16842ff95e4a5d8
MD5 63a82a058b3390d8abb9940bc5fd0066
BLAKE2b-256 4973d379a7211f4e952a7744311e536b9a25a5dbfb930d0d83d87681f1f2aa62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e6e869175fbaddf643457f7a38e21fa235d25648935d604aaebef0b0826220b
MD5 7e1071297156dcf61fd0f7e26881541f
BLAKE2b-256 128d7db5351a9cac5d1ba512d0b98205c179abdd11ff4a7160c0d149c50fa4da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4ae4fddc11b94d991368ff0fe73c661e77ae09f6ffa3ed54677d9f72c70f433
MD5 04d704b655221744b5d74fdd027f737d
BLAKE2b-256 24501913e204efd012842e666876d636b1ab43d86480dc2ef97e93d3242e4030

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1d2e25c2770fe0f10097a0418c81bc67de609c9d804dfe21f25c772377038ed
MD5 bf809980530ea54de53d6fdc9da562cc
BLAKE2b-256 acddfa459390ee7df6a617be1fbc81638065f1dff48f429c0288494ca686be23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0af6d7e3fdaf3e5bf5748b397dabac0617a04b15e1c9af393599a1b39aa3096a
MD5 61a4e99c1cb080914f7535da6b205041
BLAKE2b-256 5bb933d6bd7e3b615599328e0d80b5992c2199f11463ca6fb1a9bdba8c673062

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a3efa50aca625980ee4154e88903b2117aad04e8d8747f6dca02c06816ef24bc
MD5 03b8de45b8a1c7fb25283e5e15fa4897
BLAKE2b-256 66776a1243aa28f68c47a98fcdc4777c750a5321c0cdd2e6b1f61cf8fa430cd8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a234f9981550bc568cb7b1c96ad42b277603102dcbf00cdcd759f5c9bb428489
MD5 2d82b4d720323a353eb4c69fd7fb5104
BLAKE2b-256 902daf4a87850ddbb2b9af7801cd3f93697190fcab76aae33b92a45a626f29cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0871e3800bb902c700aa310566abdf4488beafb8f118b21e94059a7f7bcc8885
MD5 8a4a1f3683202eccbab5776f1179dcf4
BLAKE2b-256 87cf3ef2fd36dd5096944a3c951930ee3298b3436fa9ee3208646978c0cb9774

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 41bed6552a16039023145aa3fe67aaecdf4e342f12d0902f549cda20fc544773
MD5 aec66eb5f6c2558520385e0d80fcb5fe
BLAKE2b-256 bc82a601972eb1052bb76f418545b6be98352ccb698093c96fedb77aa6889be2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42fe6243cde2d035bd43f0caba34e16769b20f4c14211cb74d4a6096e600b8ed
MD5 04f05c236f513f12fa4f9e7ddcda47d3
BLAKE2b-256 b9f0cf634f6b7a2b3012b1efebe2c689e366a80ac5dfb11abccdc74d5e593213

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 42b7b16d1f998900362c32d53db482ec2d330e0ae41cde61e7cad542a4bf98c0
MD5 e253797a3ad1f0174f4bfbaa139f7baf
BLAKE2b-256 ef81d491938f3172142d480e84cfe96b5585537814a5c5158169eb359b3d7956

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 277bd9547201e5e9bda96d63583e673a7d6cfab0ad7bb3c88c6e9a22b83a346f
MD5 6d3422cb2353a0a317fb01b2fc0e53ff
BLAKE2b-256 331470eb20a843a6ef1b8f713c012c2a1f55b77bb1f1c126b416643d196cfa9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a1ad3ceb377fe6e6cc4a952aa8f297bde8302731f1e9c47e00111938ea50e517
MD5 ddb37d542ef7133b9b98439b2ce5ef3c
BLAKE2b-256 e8c8da4853beefa672958bb692f63b9675abc0dff4abdb8647d0d9d13a0b6648

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25c4c146a10de54efe8e503845bbe896d6c676cf911e85ae9fe88016f81e954e
MD5 8a11676f2cabd866071cbf524d3e7dcb
BLAKE2b-256 b8a56aac6ced096d76bbd5c693fc127535af29f928f7ff9910d86c3bd07eb253

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8fe76825b29d7f8924466a077b34765874c97c12d983b62205a1a7a84e1c7818
MD5 66c13796e510adb464ab686b2a8c92eb
BLAKE2b-256 8cfa198087eba8807ec37377245f7b0f3663053a2cef37a60e7f75f7633d94be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e52ee70a7a8193b4a914c1960c28252c2aa32ae9a2f3bb578dd7d189af838f6f
MD5 5c52c2e59179c6b44489ac7273f16b30
BLAKE2b-256 3f7a72672ae36e97e930f7d26365a4155f8d317a0e9e2bb40a3ecf8a142d78ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 48bf636f946c7daa100b21f19306bff8bce10cb1f09a85dabc7878eac5387983
MD5 939fb277d5589ea72d7085a3be3286e0
BLAKE2b-256 aea233c17e8f2268f17eeedf9af5099eb454e9c36e36c5204c24adf980de65a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.8 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.14.1b0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b1f3c1cf56708ae3a8e0a688076938568a2ca8a27ae1e34dbf2493348980a4ff
MD5 90037a2b940e1daef1a350330383d708
BLAKE2b-256 f3c213a3d143b08160b4ac8d2713ca7885695232942357a3d1447aee45ec5523

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fe3be87bb5e4d97216e759f0cb753caca4bdf0a61fa75f51d1e39b247a89389
MD5 e4719b2a738452218a2c70223df3811a
BLAKE2b-256 5ce85275bc056309c21673f6389de902f565e848c2df43151c5d4d9aebe0631b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b5f8b6089140ba3fcf8e0cd8f453503970517775864a608af39083dc2c9dca91
MD5 1ed17b02457e9279d47549231246d978
BLAKE2b-256 97469bfdeda2394acf8a2ca664d3d79498cf7ab0ec046cb102e9d9deb96c8abf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d73be8160d4d69b7df75d31520c488e75273816a9177fadfc4543ae37fb9e4e7
MD5 22f856c6bd42b18b797e376a9eb83d70
BLAKE2b-256 076701e3918878c73642f9115c1fb25f07cfb5a60d48469a26f567c0128b4093

See more details on using hashes here.

File details

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

File metadata

  • Download URL: amplpy-0.14.1b0-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.14.1b0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5db76c4c7a2fdb782f54ce303b43c086baaa2afa4c0f3fef196ce6aea89472be
MD5 c6a3d942da02f4f28f381d7e5d5d9ce3
BLAKE2b-256 95f21f2c73b69eb94537b601f96703d80b8a6e1d80f455d82a33864092ce8224

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