All Projects → ampl → amplpy

ampl / amplpy

Licence: BSD-3-Clause license
Python API for AMPL

Programming Languages

C++
36643 projects - #6 most used programming language
Jupyter Notebook
11667 projects
python
139335 projects - #7 most used programming language
SWIG
194 projects

AMPLPY

PyPI - Downloads Conda Build Status

AMPL API is an interface that allows developers to access the features of the AMPL interpreter from within a programming language. 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 read back from AMPL, the size of the model as such is irrelevant. Functions for directly assigning data to AMPL parameters and sets are provided, which can be used instead of the normal AMPL data reading procedures. AMPL API has been written with usability in mind, and it is easy to access its functionalities from C++, Java, C#, MATLAB, R and Python.

The AMPL API can function as an add-on to any existing AMPL installation. If you do not yet have an AMPL installation on the computer where you will be working with the API, see our demo page or trial page to download a working version that can be installed quickly.

Documentation

Examples

Repositories

Setup

PyPI

Install from the PyPI repository:

$ python -m pip install amplpy

Note: For Windows, Linux, and macOS, the amplpy package comes with binary wheels for Python 2.7, 3.5, 3.6, 3.7, 3.8, and 3.9. Please make sure that you are using the latest version of pip before installing amplpy (upgrade using pip install pip --upgrade or python -m pip install pip --upgrade). If a binary wheel for your platform is not available, a C++ compiler and python development libraries will be required.

Conda

Install from the Conda repository:

$ conda install -c conda-forge amplpy

Build locally

You can build and install the package locally as follows:

$ git clone https://github.com/ampl/amplpy.git 
$ cd amplpy
$ python updatelib.py
$ python setup.py build
$ pip install . --upgrade

License

BSD-3


Copyright © 2017-2021 AMPL Optimization inc. All rights reserved.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].