Skip to main content

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:

Release files for amplpy 0.18.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for amplpy 0.18.0
File Size Uploaded
amplpy-0.18.0.tar.gz 1.7 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for amplpy 0.18.0
File
amplpy-0.18.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
amplpy-0.18.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
amplpy-0.18.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
amplpy-0.18.0-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
amplpy-0.18.0-cp314-cp314t-macosx_10_15_universal2.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ universal2 (ARM64, x86-64) Details
amplpy-0.18.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
amplpy-0.18.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
amplpy-0.18.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
amplpy-0.18.0-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
amplpy-0.18.0-cp314-cp314-macosx_10_15_universal2.whl CPython 3.14 CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64) Details
amplpy-0.18.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
amplpy-0.18.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
amplpy-0.18.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
amplpy-0.18.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
amplpy-0.18.0-cp313-cp313-macosx_10_13_universal2.whl CPython 3.13 CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) Details
amplpy-0.18.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
amplpy-0.18.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
amplpy-0.18.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
amplpy-0.18.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
amplpy-0.18.0-cp312-cp312-macosx_10_13_universal2.whl CPython 3.12 CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) Details
amplpy-0.18.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
amplpy-0.18.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
amplpy-0.18.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
amplpy-0.18.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
amplpy-0.18.0-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
amplpy-0.18.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
amplpy-0.18.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
amplpy-0.18.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
amplpy-0.18.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
amplpy-0.18.0-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
amplpy-0.18.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
amplpy-0.18.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
amplpy-0.18.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
amplpy-0.18.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
amplpy-0.18.0-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
amplpy-0.18.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
amplpy-0.18.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
amplpy-0.18.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
amplpy-0.18.0-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
amplpy-0.18.0-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details

Total release size: 68.5 MB

Release files / amplpy-0.18.0.tar.gz

Download URL amplpy-0.18.0.tar.gz
Size 1.7 MB
Tags Source
SHA-256 checksum
How to use checksums
60a9cb679025755f17d67e8e5ddca11dc96cc20519f811325060f37bd242a54b
BLAKE2b-256 checksum
How to use checksums
2d9e3b5682372130b7a3877ec11c41af4aec67a2810a2e4dc7cea04bef070f6d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp314-cp314t-win_amd64.whl

Download URL amplpy-0.18.0-cp314-cp314t-win_amd64.whl
Size 1.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
8a1df634b71243ce32e9079b6f490f0be32f12b22c328b3063de1f7770252459
BLAKE2b-256 checksum
How to use checksums
b77e20a615a6b08f09e11225f400e7982400db4cd8804e86c2fc89af9ca6fd60
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL amplpy-0.18.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
318ab76e794168007b114bf1f1de291bb1448b8686fa6b18dee3959d94f72f4f
BLAKE2b-256 checksum
How to use checksums
10aa2b0699afa1479490bd7a527027686f1a610a239a77ca64c36ed2f21b62ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL amplpy-0.18.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
052634109350b9c3a22c681accd6b4f6ff90b1c64f6851ed28500f256afe47b2
BLAKE2b-256 checksum
How to use checksums
2456d6af112f2e85500acfcafc369618e59315755c91f89715d6fb4cbe225556
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL amplpy-0.18.0-cp314-cp314t-macosx_10_15_x86_64.whl
Size 867.7 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
849a51e1a6b9768622fca1a4228b373af32b0b3c7e1d402bb8a0dbf37f9349fe
BLAKE2b-256 checksum
How to use checksums
c49419d5eafc079b57219f92e6547849ec6b6c66f0621abefacaa76e846e94fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp314-cp314t-macosx_10_15_universal2.whl

Download URL amplpy-0.18.0-cp314-cp314t-macosx_10_15_universal2.whl
Size 1.2 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
6f03572b669d5e8c684eb48d8871ee373cd6335bbb678be532296467d393acd5
BLAKE2b-256 checksum
How to use checksums
61d361dc32c1a7152c49a3b11c0682e0b44d42bb71fd98edab4382769f7445b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp314-cp314-win_amd64.whl

Download URL amplpy-0.18.0-cp314-cp314-win_amd64.whl
Size 1.6 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
0c3d9b1ba9308daf65e76b7f41b46da54ae832cd051d7f31de0cb61f4bfc9b9b
BLAKE2b-256 checksum
How to use checksums
afd251d9a54ebb0aa336ce4bb948a710eb32977be2ba9c674a0e9f6b31ac98f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL amplpy-0.18.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.4 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0d6e50b9fc3c333f585e57342dc5bccfad8278ee2d7dda56807529b910a29491
BLAKE2b-256 checksum
How to use checksums
ef3208a26ee2bec8114712fb1e1c0050718ea132d2389eb73d6b2b4009a6e226
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL amplpy-0.18.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.4 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
7b48d0ab0bcb887ffb64f678f5af12f59ea74f1f520bcc45f9405fb9dec10e04
BLAKE2b-256 checksum
How to use checksums
2300ce97f42ef1c5971ded09d8860f01fe2140d6b2919e2e13065b176bbeb5fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp314-cp314-macosx_10_15_x86_64.whl

Download URL amplpy-0.18.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 848.9 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
35f62d9a9cfae290df60fa5316cfacb384e0540fa169476c32b6c781988215ed
BLAKE2b-256 checksum
How to use checksums
e1c292c29bf694f560b3740287690c961951ce5165c523966f748d27791aa194
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp314-cp314-macosx_10_15_universal2.whl

Download URL amplpy-0.18.0-cp314-cp314-macosx_10_15_universal2.whl
Size 1.1 MB
Tags CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
e267f6da13da24929f450ba28c1ed95bd955957969e91e0cf5e49b5cb6c42dd1
BLAKE2b-256 checksum
How to use checksums
61c6557ddb3e6ba6a86da196108540bddf5171aa570233fa642e2963af11faec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp313-cp313-win_amd64.whl

Download URL amplpy-0.18.0-cp313-cp313-win_amd64.whl
Size 1.5 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
8745b597e74105dc82e11eed5139f395d0119f7c3f48cb8e1bcbf0ba80579639
BLAKE2b-256 checksum
How to use checksums
631e007029ef92078295f53e83afed2a77120960b78780d2f67d8dcfe0fb63fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL amplpy-0.18.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.4 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
24a7bba95c0d3628ca87c633be0566a925817b443b4d77a6d1b9e0dc2106f34d
BLAKE2b-256 checksum
How to use checksums
89fd740673665a5d1ccc84254918a8f64fa2e2245cc0d48d1a19864424211b1b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL amplpy-0.18.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.4 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
857a08099d44702ed12b56859684789b18f229b1c0ebf885cb5cf24e0707d2d2
BLAKE2b-256 checksum
How to use checksums
38edb7c475c122d7a37d90274c99124499565445dc198443130366a81b8103c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL amplpy-0.18.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 848.1 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
169646c47c2992774c779a06b87eaf0414d0c36ec3db2e021c4f4dccc747e2ea
BLAKE2b-256 checksum
How to use checksums
3b2b3c643f66e072480ef6e49a5771df776f224d14c18ca9bf998c404e31d107
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp313-cp313-macosx_10_13_universal2.whl

Download URL amplpy-0.18.0-cp313-cp313-macosx_10_13_universal2.whl
Size 1.1 MB
Tags CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
9c1a48a398c63b53a815ab015253275908ab57fd16a5233720a5641ddd572665
BLAKE2b-256 checksum
How to use checksums
399999edd78c7985b1430d63666a1b0e2f9082c381d5e0212c3f119716c2cd5d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp312-cp312-win_amd64.whl

Download URL amplpy-0.18.0-cp312-cp312-win_amd64.whl
Size 1.5 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
14d1fb6e58d28e717848120acaf23fc88c0b1f7ae2c2677293b97fee0c883028
BLAKE2b-256 checksum
How to use checksums
6f55189f4846d494746653652bdddece1f6451ed0b3570c33abf33eb7b8e3734
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL amplpy-0.18.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.4 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8e0a93b0b94cf7b0270eada690fe2a4e9c7c1f82646c9c760d8af9e270ba0474
BLAKE2b-256 checksum
How to use checksums
188887d3a76f98372cc461e99847cdd34801435fb9fd1b01082bce980b6618a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL amplpy-0.18.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.4 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5447c96259f69064822770c6474fa3c0e93697119b8221fef3c405855aa05d2d
BLAKE2b-256 checksum
How to use checksums
f3cacc67c91cd35945149e8cbdbf3845c61fb7194f0f8ffa3adf714d92b3d4a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL amplpy-0.18.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 848.9 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
b91045bd675c61762a2de0c5a9f9ea0accba3a3c3d70a4bd48b51ca48afcd004
BLAKE2b-256 checksum
How to use checksums
057b553ce348dce5c78fc4fd21938052ca73841ccd92967dd3c6b16d48d90b8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp312-cp312-macosx_10_13_universal2.whl

Download URL amplpy-0.18.0-cp312-cp312-macosx_10_13_universal2.whl
Size 1.1 MB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
e45144b950fd75e7c2b8b60cebb8365a5f48887718329c04d6acb2ea0b0a1d84
BLAKE2b-256 checksum
How to use checksums
239b529db03d701716ed764944543df902b71c70d3ab63cf22c3834b37430f2f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp311-cp311-win_amd64.whl

Download URL amplpy-0.18.0-cp311-cp311-win_amd64.whl
Size 1.6 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
a2d2f6fb0d28cdb5ba91474d4e95f572dac73d5bea8f8906f77fbe7847b8280d
BLAKE2b-256 checksum
How to use checksums
7be39ee397ebfde2dec7818390ff8d56b88c1b6dae61f6f09c63ecd70715013e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL amplpy-0.18.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.5 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6d74b567a349d60c921cac4a0bd901e0ae5cc51a94cdfc911ac4e1755bedc318
BLAKE2b-256 checksum
How to use checksums
0eba0e2dfde2a61617543bd1637f083382ea143aa0f5c7c92f80a5e2d0c820a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL amplpy-0.18.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.4 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f2b51f33244befa76fcc1fb5073d32e73f2083ea46e41354883ea665b3d7e4db
BLAKE2b-256 checksum
How to use checksums
d7d4d02246ef0a75a8012f3c8e63dd93f0f2c9f495d0e01df90d3a7c08f8ab9f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL amplpy-0.18.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 852.8 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
254030e1c34f903d6f72a67def39e26ffe527d6f108b9d357438136ad62e9665
BLAKE2b-256 checksum
How to use checksums
3792cf63be1e28cc74e4af1a4c88cfbab011631dd41998c440de6b3167bad067
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp311-cp311-macosx_10_9_universal2.whl

Download URL amplpy-0.18.0-cp311-cp311-macosx_10_9_universal2.whl
Size 1.1 MB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
c3abc048e06bec14d2b15e67f7811931df92f86709b038c4916e5548e23f1c9f
BLAKE2b-256 checksum
How to use checksums
a7a7fe0290eb6ba9ddd0a5aa02692af20d5bb2e70672233e63a94285e2959327
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp310-cp310-win_amd64.whl

Download URL amplpy-0.18.0-cp310-cp310-win_amd64.whl
Size 1.6 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
8a02f51847fe9b21b6c427e3d4672adee47c7b9e0fdeaf5730e07299ff51bbfe
BLAKE2b-256 checksum
How to use checksums
d7213983cbb6422a8f48ac7331dc278789d9e5459c868884fbed643eaa75a4a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL amplpy-0.18.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.3 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
aa8a601b11c25f666237dd9775c4f5a99ad816dd7736342a99898e8867851b04
BLAKE2b-256 checksum
How to use checksums
8bb6aef98f1cfa92256cc60cb4a5f14cf82aec460ae3722f4d1dcc8dd9a36ee6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL amplpy-0.18.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.3 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b98e52687b967143f537765260d30dd1ec08980d8205662a2be964d13b025b4f
BLAKE2b-256 checksum
How to use checksums
79e31862414f69a698b9ef0ecd9d31f39739ace56b21fc383b43e7705f2843f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL amplpy-0.18.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 845.0 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
0860491eaee100225474824920f164b119e4169213661a5c78d5d1eef70801c4
BLAKE2b-256 checksum
How to use checksums
5806d01e00073b0ca3820c5415ae33e82c3e1a88fe8bb91068896c52ef0db1d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp310-cp310-macosx_10_9_universal2.whl

Download URL amplpy-0.18.0-cp310-cp310-macosx_10_9_universal2.whl
Size 1.1 MB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
c0d96fce3fd37b5a2d1dc2f9deb80d4e463046591dfdaab1609e5d724bf9bfc2
BLAKE2b-256 checksum
How to use checksums
e0ff02d6ec55fe4e09c71422ba7f95ac537d0cff4bc3b31f695a0b38ef1f04a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp39-cp39-win_amd64.whl

Download URL amplpy-0.18.0-cp39-cp39-win_amd64.whl
Size 1.6 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
c26394a4ed09701a51977ee8a912f8cefd1c8225cdbdd8ac9316be89e838a8dc
BLAKE2b-256 checksum
How to use checksums
b75e2ba316b896bd2a967ee2474613d6004a1b9a352e6e242a0888f24ae37cec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL amplpy-0.18.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.3 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
08fed91dd9237b81c13bd4a3ce6516f2c7b641e2613cbbeb4fd1b99327033dbf
BLAKE2b-256 checksum
How to use checksums
cb5ba82768e14515b2c14569c8c8890f9c7be4513ba9aff200d7378f8827c153
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL amplpy-0.18.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.3 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b21815411ca2b9fda0226091a2816959d3ca524723437b5d1ee31ef2ee15ba72
BLAKE2b-256 checksum
How to use checksums
3adeb68a19b4b8c94199c92702d5ae5ecafbe38f25f1fe503c1cc92f7a216e74
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp39-cp39-macosx_10_9_x86_64.whl

Download URL amplpy-0.18.0-cp39-cp39-macosx_10_9_x86_64.whl
Size 845.8 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
df26c45e21205b26acb3814581fbde56978b1d4be83e917d9af2fd14f0e26d0e
BLAKE2b-256 checksum
How to use checksums
b061ba4389f3c9fa417cc556daf2932c8bfbba49ab34d55051a3490cf6d248c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp39-cp39-macosx_10_9_universal2.whl

Download URL amplpy-0.18.0-cp39-cp39-macosx_10_9_universal2.whl
Size 1.1 MB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
9c8afcf39e18e44f30e3e76ef8cb4b68ad9eb164d14db083a452db30cfb9e2e4
BLAKE2b-256 checksum
How to use checksums
0123abe70486110a1c673e002763140259aa197aeec83069e520d48cbfa0ca45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp38-cp38-win_amd64.whl

Download URL amplpy-0.18.0-cp38-cp38-win_amd64.whl
Size 1.6 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
5ff88b08ea6adad6e2710d1c8fe5ebe7404fbed3e15c8010ccf4ff1f17ed0fb7
BLAKE2b-256 checksum
How to use checksums
1dbd94811edcfdb0813757ee55dc421d74ccea20ab292406a9eb6384383beed2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL amplpy-0.18.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.4 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
436ece76e9cd1fdb26e0ed96525732c39f410996c3bc6857cb15b6d4c23c2643
BLAKE2b-256 checksum
How to use checksums
0681f99566674ab9511b23eca66067997ec344c6123f378c7b90619899571052
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL amplpy-0.18.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.4 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
21e494e220e0ec50d40a9c9bb272c9639f06bea4459e841200803b47cba39218
BLAKE2b-256 checksum
How to use checksums
5a6b062347e0b9f609254ee253c48ba16c191279d9dfe05d496c53638f8cbaeb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp38-cp38-macosx_10_9_x86_64.whl

Download URL amplpy-0.18.0-cp38-cp38-macosx_10_9_x86_64.whl
Size 861.8 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
47c054a4528b0e9908a01e38f971cbdd76001a2751921045644e97d11b981cbb
BLAKE2b-256 checksum
How to use checksums
25a7ee4b27738847483fdf651a8e9bb24baed02c1a033f2c2862ad1b0584063d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release files / amplpy-0.18.0-cp38-cp38-macosx_10_9_universal2.whl

Download URL amplpy-0.18.0-cp38-cp38-macosx_10_9_universal2.whl
Size 1.2 MB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
ef425a2a1e0e4e4a6ed21b14072eedfcca7ebf04d64b13e29e3346a8c456a4ba
BLAKE2b-256 checksum
How to use checksums
9fd7bb85628194885725bfe37655cb087e6d4289a19a637671d53d944ef3e69d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.6

Release history Release notifications | RSS feed

This release

0.18.0 This release

41 release files

0.9.3

38 release files

0.9.1

38 release files

0.9.0

26 release files

0.8.6

26 release files

0.8.5

23 release files

0.8.3

20 release files

0.8.2

20 release files

0.8.1

45 release files

0.8.0

45 release files

0.7.1

45 release files

0.7.0

57 release files

0.6.7

30 release files

0.6.6

30 release files

0.6.5

30 release files

0.6.4

30 release files

0.6.2

30 release files

0.6.1

30 release files

0.4.1

27 release files

0.3.4

27 release files

0.3.3

27 release files

0.3.2

27 release files

0.3.1

27 release files

0.3.0

27 release files

0.1.1

27 release files

0.1.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page