PyIBIS-AMI


NamePyIBIS-AMI JSON
Version 5.1.1 PyPI version JSON
download
home_page
SummaryFacilitates working directly with IBIS-AMI DLLs from the Python command prompt.
upload_time2024-02-12 22:08:43
maintainer
docs_urlNone
authorDavid Patterson
requires_python<3.12,>=3.9
licenseBSD
keywords ibis-ami
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/capn-freako/PyAMI/master.svg)](https://results.pre-commit.ci/latest/github/capn-freako/PyAMI/master)

# PyIBIS-AMI

PyIBIS-AMI is a Python package of tools useful in the development and testing of IBIS-AMI models.
This library is used in [PyBERT](https://github.com/capn-freako/PyBERT) and also provides two
command line applications.

It can be installed via `conda`.  PyPi support is experimental but can be installed with
 `pip install PyIBIS-AMI`.

[View API/Developer's Documentation.](https://htmlpreview.github.io/?https://github.com/capn-freako/PyAMI/blob/master/docs/build/html/index.html)

## Command Line Tools

### AMI Config

```shell
ami_config -h
Usage: ami_config [OPTIONS] PY_FILE

  Configure IBIS-AMI model C++ source code, IBIS model, and AMI file.

  py_file: name of model configuration file (*.py)

Options:
  -h, --help  Show this message and exit.
```

### Run Tests

```shell
run_tests -h
Usage: run_tests [OPTIONS] [TESTS]...

  Run a series of tests on a AMI model DLL file.

  If no tests are specified on the command line, run all tests found in
  `test_dir'. (See `-t' option.)

  usage: %prog [options] [test1 [test2 ...]]

  Tests are written in the EmPy templating language, and produce XML output.
  (See the examples provided in the `examples' directory of the `pyibisami'
  Python package.)

  Test results should be viewed by loading the XML output file into a Web
  browser. By default, the XML output file refers to the supplied XSLT file,
  `test_results.xsl'. It is possible that you may need to copy this file
  from the pyibisami package directory to your local working directory, in
  order to avoid file loading errors in your Web browser.

Options:
  -t, --test_dir PATH  Sets the name of the directory from which tests are
                       taken.
  -m, --model PATH     Sets the AMI model DLL file name.
  -p, --params TEXT    List of lists of model configurations. Format:
                       <filename> or [(name, [(label, ({AMI params., in
                       "key:val" format},{Model params., in "key:val"
                       format})), ...]), ...]
  -x, --xml_file PATH  Sets the name of the XML output file. You should load
                       this file into your Web browser after the program
                       completion.
  -r, --ref_dir PATH   Sets the name of the directory from which reference
                       waveforms are taken.
  -o, --out_dir PATH   Sets the name of the directory in which to place the
                       results.
  -v, --version TEXT   Show program version info and exit.
  -h, --help           Show this message and exit.
  ```

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "PyIBIS-AMI",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "<3.12,>=3.9",
    "maintainer_email": "",
    "keywords": "ibis-ami",
    "author": "David Patterson",
    "author_email": "David Banas <capn.freako@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/78/8a/0f55552144dfdb8d3b9871343894627316dc6c6d7c26adee951502bf6d92/PyIBIS-AMI-5.1.1.tar.gz",
    "platform": null,
    "description": "[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/capn-freako/PyAMI/master.svg)](https://results.pre-commit.ci/latest/github/capn-freako/PyAMI/master)\r\n\r\n# PyIBIS-AMI\r\n\r\nPyIBIS-AMI is a Python package of tools useful in the development and testing of IBIS-AMI models.\r\nThis library is used in [PyBERT](https://github.com/capn-freako/PyBERT) and also provides two\r\ncommand line applications.\r\n\r\nIt can be installed via `conda`.  PyPi support is experimental but can be installed with\r\n `pip install PyIBIS-AMI`.\r\n\r\n[View API/Developer's Documentation.](https://htmlpreview.github.io/?https://github.com/capn-freako/PyAMI/blob/master/docs/build/html/index.html)\r\n\r\n## Command Line Tools\r\n\r\n### AMI Config\r\n\r\n```shell\r\nami_config -h\r\nUsage: ami_config [OPTIONS] PY_FILE\r\n\r\n  Configure IBIS-AMI model C++ source code, IBIS model, and AMI file.\r\n\r\n  py_file: name of model configuration file (*.py)\r\n\r\nOptions:\r\n  -h, --help  Show this message and exit.\r\n```\r\n\r\n### Run Tests\r\n\r\n```shell\r\nrun_tests -h\r\nUsage: run_tests [OPTIONS] [TESTS]...\r\n\r\n  Run a series of tests on a AMI model DLL file.\r\n\r\n  If no tests are specified on the command line, run all tests found in\r\n  `test_dir'. (See `-t' option.)\r\n\r\n  usage: %prog [options] [test1 [test2 ...]]\r\n\r\n  Tests are written in the EmPy templating language, and produce XML output.\r\n  (See the examples provided in the `examples' directory of the `pyibisami'\r\n  Python package.)\r\n\r\n  Test results should be viewed by loading the XML output file into a Web\r\n  browser. By default, the XML output file refers to the supplied XSLT file,\r\n  `test_results.xsl'. It is possible that you may need to copy this file\r\n  from the pyibisami package directory to your local working directory, in\r\n  order to avoid file loading errors in your Web browser.\r\n\r\nOptions:\r\n  -t, --test_dir PATH  Sets the name of the directory from which tests are\r\n                       taken.\r\n  -m, --model PATH     Sets the AMI model DLL file name.\r\n  -p, --params TEXT    List of lists of model configurations. Format:\r\n                       <filename> or [(name, [(label, ({AMI params., in\r\n                       \"key:val\" format},{Model params., in \"key:val\"\r\n                       format})), ...]), ...]\r\n  -x, --xml_file PATH  Sets the name of the XML output file. You should load\r\n                       this file into your Web browser after the program\r\n                       completion.\r\n  -r, --ref_dir PATH   Sets the name of the directory from which reference\r\n                       waveforms are taken.\r\n  -o, --out_dir PATH   Sets the name of the directory in which to place the\r\n                       results.\r\n  -v, --version TEXT   Show program version info and exit.\r\n  -h, --help           Show this message and exit.\r\n  ```\r\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Facilitates working directly with IBIS-AMI DLLs from the Python command prompt.",
    "version": "5.1.1",
    "project_urls": {
        "documentation": "https://github.com/capn-freako/PyAMI/wiki"
    },
    "split_keywords": [
        "ibis-ami"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c059f5c3b4691a3d61b53c864512c87b559c6fac0d480b146e09836f07c3960",
                "md5": "9dc2e7e27244561c584a5e29f98309cf",
                "sha256": "ab5fc333554202b7baba37b6aaa418dffe60383ce5c10a649458d24cb760d39a"
            },
            "downloads": -1,
            "filename": "PyIBIS_AMI-5.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9dc2e7e27244561c584a5e29f98309cf",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.12,>=3.9",
            "size": 40064,
            "upload_time": "2024-02-12T22:08:41",
            "upload_time_iso_8601": "2024-02-12T22:08:41.247867Z",
            "url": "https://files.pythonhosted.org/packages/5c/05/9f5c3b4691a3d61b53c864512c87b559c6fac0d480b146e09836f07c3960/PyIBIS_AMI-5.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "788a0f55552144dfdb8d3b9871343894627316dc6c6d7c26adee951502bf6d92",
                "md5": "4d4087ac85d2880815a69a749d42a2ac",
                "sha256": "2b98b3fc1f23189c7d8c2a80a094c2ea6bfeb2a2ff20873aeb2c0afb12208899"
            },
            "downloads": -1,
            "filename": "PyIBIS-AMI-5.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "4d4087ac85d2880815a69a749d42a2ac",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.12,>=3.9",
            "size": 52446,
            "upload_time": "2024-02-12T22:08:43",
            "upload_time_iso_8601": "2024-02-12T22:08:43.164170Z",
            "url": "https://files.pythonhosted.org/packages/78/8a/0f55552144dfdb8d3b9871343894627316dc6c6d7c26adee951502bf6d92/PyIBIS-AMI-5.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-12 22:08:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "capn-freako",
    "github_project": "PyAMI",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "tox": true,
    "lcname": "pyibis-ami"
}
        
Elapsed time: 0.18736s