pyisva


Namepyisva JSON
Version 0.2.2 PyPI version JSON
download
home_page
SummaryPython API for IBM Security Verify Access
upload_time2023-08-22 23:15:46
maintainer
docs_urlNone
authorLachlan Gleeson
requires_python
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            # PyISVA

PyISVA is a Python library that wraps the IBM Security Verify Access RESTful Web services to provide a
quick and easy way to construct configuration scripts for appliances.

**Supported Versions**

- IBM Security Verify Access 10.0.6.0
- IBM Security Verify Access 10.0.5.0
- IBM Security Verify Access 10.0.4.0
- IBM Security Verify Access 10.0.3.1
- IBM Security Verify Access 10.0.3.0
- IBM Security Verify Access 10.0.2.0
- IBM Security Verify Access 10.0.1.0
- IBM Security Verify Access 10.0.0.0
- IBM Security Access Manager 9.0.7.0
- IBM Security Access Manager 9.0.6.0
- IBM Security Access Manager 9.0.5.0
- IBM Security Access Manager 9.0.4.0
- IBM Security Access Manager 9.0.3.0
- IBM Security Access Manager 9.0.2.1
- IBM Security Access Manager 9.0.2.0

## Installation

For Linux/macOS: if you clone the library to `~/repos/pyisva`, add this to `~/.profile`:
```sh
# add pyisva library to Python's search path
export PYTHONPATH="${PYTHONPATH}:${HOME}/repos/pyisva"
```

## From IBM Security Verify Access 10.0.0.0 onwards:
Module has been build into a package Currently hosted on PyPi that can be installed using pip:

```sh
pip install pyisva
```

## Usage

```python
>>> import pyisva
>>> factory = pyisva.Factory("https://isam.mmfa.ibm.com", "admin", "Passw0rd")
>>> web = factory.get_web_settings()
>>> resp = web.reverse_proxy.restart_instance("default")
>>> if resp.success:
...     print("Successfully restarted the default instance.")
... else:
...     print("Failed to restart the default instance. status_code: %s, data: %s" % (resp.status_code, resp.data))
...
Successfully restarted the default instance.
```

## Documentation
Documentation for using this library can be found on [pyisva GitHub pages](https://lachlan-ibm.github.io/pyisva/index.html).

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pyisva",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Lachlan Gleeson",
    "author_email": "lgleeson@au1.ibm.com",
    "download_url": "https://files.pythonhosted.org/packages/6f/77/b2a7aedf9b4ccaa21d35365a73842176fba819cdce9547d1c2416b3160a2/pyisva-0.2.2.tar.gz",
    "platform": null,
    "description": "# PyISVA\n\nPyISVA is a Python library that wraps the IBM Security Verify Access RESTful Web services to provide a\nquick and easy way to construct configuration scripts for appliances.\n\n**Supported Versions**\n\n- IBM Security Verify Access 10.0.6.0\n- IBM Security Verify Access 10.0.5.0\n- IBM Security Verify Access 10.0.4.0\n- IBM Security Verify Access 10.0.3.1\n- IBM Security Verify Access 10.0.3.0\n- IBM Security Verify Access 10.0.2.0\n- IBM Security Verify Access 10.0.1.0\n- IBM Security Verify Access 10.0.0.0\n- IBM Security Access Manager 9.0.7.0\n- IBM Security Access Manager 9.0.6.0\n- IBM Security Access Manager 9.0.5.0\n- IBM Security Access Manager 9.0.4.0\n- IBM Security Access Manager 9.0.3.0\n- IBM Security Access Manager 9.0.2.1\n- IBM Security Access Manager 9.0.2.0\n\n## Installation\n\nFor Linux/macOS: if you clone the library to `~/repos/pyisva`, add this to `~/.profile`:\n```sh\n# add pyisva library to Python's search path\nexport PYTHONPATH=\"${PYTHONPATH}:${HOME}/repos/pyisva\"\n```\n\n## From IBM Security Verify Access 10.0.0.0 onwards:\nModule has been build into a package Currently hosted on PyPi that can be installed using pip:\n\n```sh\npip install pyisva\n```\n\n## Usage\n\n```python\n>>> import pyisva\n>>> factory = pyisva.Factory(\"https://isam.mmfa.ibm.com\", \"admin\", \"Passw0rd\")\n>>> web = factory.get_web_settings()\n>>> resp = web.reverse_proxy.restart_instance(\"default\")\n>>> if resp.success:\n...     print(\"Successfully restarted the default instance.\")\n... else:\n...     print(\"Failed to restart the default instance. status_code: %s, data: %s\" % (resp.status_code, resp.data))\n...\nSuccessfully restarted the default instance.\n```\n\n## Documentation\nDocumentation for using this library can be found on [pyisva GitHub pages](https://lachlan-ibm.github.io/pyisva/index.html).\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python API for IBM Security Verify Access",
    "version": "0.2.2",
    "project_urls": {
        "Documentation": "https://lachlan-ibm.github.io/pyisva",
        "Homepage": "https://github.com/lachlan-ibm/pyisva",
        "Source": "https://github.com/lachlan-ibm/pyisva",
        "Tracker": "https://github.com/lachlan-ibm/pyisva/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ef37cf34767e47f44debf0b0d2f62bf5c0bbbeaef0946a858fb0b9a8a30d66c",
                "md5": "443ed750fa4114c261fa488a7540b453",
                "sha256": "d03b4276fb5decf548a4b0d902a6aff60e1938680050b01582ebbbfa52f00acb"
            },
            "downloads": -1,
            "filename": "pyisva-0.2.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "443ed750fa4114c261fa488a7540b453",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 138432,
            "upload_time": "2023-08-22T23:15:44",
            "upload_time_iso_8601": "2023-08-22T23:15:44.457683Z",
            "url": "https://files.pythonhosted.org/packages/0e/f3/7cf34767e47f44debf0b0d2f62bf5c0bbbeaef0946a858fb0b9a8a30d66c/pyisva-0.2.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f77b2a7aedf9b4ccaa21d35365a73842176fba819cdce9547d1c2416b3160a2",
                "md5": "0689008c407a27db09e9dfd93503c740",
                "sha256": "cf0fb20c4e9a840e8bfe58d35c2152b483e068bc45ba324f0d7962249ecb9a7e"
            },
            "downloads": -1,
            "filename": "pyisva-0.2.2.tar.gz",
            "has_sig": false,
            "md5_digest": "0689008c407a27db09e9dfd93503c740",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 91034,
            "upload_time": "2023-08-22T23:15:46",
            "upload_time_iso_8601": "2023-08-22T23:15:46.437630Z",
            "url": "https://files.pythonhosted.org/packages/6f/77/b2a7aedf9b4ccaa21d35365a73842176fba819cdce9547d1c2416b3160a2/pyisva-0.2.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-22 23:15:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "lachlan-ibm",
    "github_project": "pyisva",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyisva"
}
        
Elapsed time: 0.13366s