PhrameAPI


NamePhrameAPI JSON
Version 1.0.1 PyPI version JSON
download
home_page
SummaryPhrame API
upload_time2024-01-12 14:30:43
maintainer
docs_urlNone
authorDavid Atkins
requires_python>=3.4
licenseCopyright © 2023 3ADesign Limited Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords openapi openapi-generator phrameapi
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PhrameAPI
Phrame API

This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 1.0.1
- Package version: 1.0.1
- Build package: org.openapitools.codegen.languages.PythonLegacyClientCodegen

## Requirements.

Python 3.4+

## Installation & Usage
### pip install

If the python package is hosted on a repository, you can install directly using:

```sh
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
```
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)

Then import the package:
```python
import PhrameAPI
```

### Setuptools

Install via [Setuptools](http://pypi.python.org/pypi/setuptools).

```sh
python setup.py install --user
```
(or `sudo python setup.py install` to install the package for all users)

Then import the package:
```python
import PhrameAPI
```

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python
from __future__ import print_function

import time
import PhrameAPI
from PhrameAPI.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost/PhrameServer
# See configuration.py for a list of all supported configuration parameters.
configuration = PhrameAPI.Configuration(
    host = "http://localhost/PhrameServer"
)



# Enter a context with an instance of the API client
with PhrameAPI.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = PhrameAPI.PhrameApi(api_client)

    try:
        # GET all configs
        api_response = api_instance.minio_get_all_config_names()
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling PhrameApi->minio_get_all_config_names: %s\n" % e)

```

## Documentation for API Endpoints

All URIs are relative to *http://localhost/PhrameServer*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*PhrameApi* | [**minio_get_all_config_names**](docs/PhrameApi.md#minio_get_all_config_names) | **GET** /config/all | GET all configs
*PhrameApi* | [**minio_get_ui_config**](docs/PhrameApi.md#minio_get_ui_config) | **GET** /config | GET config
*PhrameApi* | [**minio_post_ui_config**](docs/PhrameApi.md#minio_post_ui_config) | **POST** /config | POST config


## Documentation For Models

 - [DbPhrameJSONStore](docs/DbPhrameJSONStore.md)
 - [DbPhrameUIConfiguration](docs/DbPhrameUIConfiguration.md)


## Documentation For Authorization

 All endpoints do not require authorization.

## Author

david@3adesign.co.uk



            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "PhrameAPI",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.4",
    "maintainer_email": "",
    "keywords": "OpenAPI,OpenAPI-Generator,PhrameAPI",
    "author": "David Atkins",
    "author_email": "Gustav Rodel <gustav.rodel@3adesign.co.uk>, David Atkins <david@3adesign.co.uk>",
    "download_url": "https://files.pythonhosted.org/packages/92/f1/193ffc1c1fff1bbe572029224e0d0d4feba40b1af7cecec3f38ba55c0b5f/PhrameAPI-1.0.1.tar.gz",
    "platform": null,
    "description": "# PhrameAPI\nPhrame API\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 1.0.1\n- Package version: 1.0.1\n- Build package: org.openapitools.codegen.languages.PythonLegacyClientCodegen\n\n## Requirements.\n\nPython 3.4+\n\n## Installation & Usage\n### pip install\n\nIf the python package is hosted on a repository, you can install directly using:\n\n```sh\npip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git\n```\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)\n\nThen import the package:\n```python\nimport PhrameAPI\n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```sh\npython setup.py install --user\n```\n(or `sudo python setup.py install` to install the package for all users)\n\nThen import the package:\n```python\nimport PhrameAPI\n```\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\nfrom __future__ import print_function\n\nimport time\nimport PhrameAPI\nfrom PhrameAPI.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to http://localhost/PhrameServer\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = PhrameAPI.Configuration(\n    host = \"http://localhost/PhrameServer\"\n)\n\n\n\n# Enter a context with an instance of the API client\nwith PhrameAPI.ApiClient(configuration) as api_client:\n    # Create an instance of the API class\n    api_instance = PhrameAPI.PhrameApi(api_client)\n\n    try:\n        # GET all configs\n        api_response = api_instance.minio_get_all_config_names()\n        pprint(api_response)\n    except ApiException as e:\n        print(\"Exception when calling PhrameApi->minio_get_all_config_names: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *http://localhost/PhrameServer*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*PhrameApi* | [**minio_get_all_config_names**](docs/PhrameApi.md#minio_get_all_config_names) | **GET** /config/all | GET all configs\n*PhrameApi* | [**minio_get_ui_config**](docs/PhrameApi.md#minio_get_ui_config) | **GET** /config | GET config\n*PhrameApi* | [**minio_post_ui_config**](docs/PhrameApi.md#minio_post_ui_config) | **POST** /config | POST config\n\n\n## Documentation For Models\n\n - [DbPhrameJSONStore](docs/DbPhrameJSONStore.md)\n - [DbPhrameUIConfiguration](docs/DbPhrameUIConfiguration.md)\n\n\n## Documentation For Authorization\n\n All endpoints do not require authorization.\n\n## Author\n\ndavid@3adesign.co.uk\n\n\n",
    "bugtrack_url": null,
    "license": "Copyright \u00a9 2023 3ADesign Limited  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \u201cSoftware\u201d), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \u201cAS IS\u201d, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Phrame API",
    "version": "1.0.1",
    "project_urls": null,
    "split_keywords": [
        "openapi",
        "openapi-generator",
        "phrameapi"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bff2de53d5c2dd2f69ad961de03c17bee6106ef6111b1d2661e860ef472594ea",
                "md5": "533b2236525f6d4e4fa5eb0a6b241159",
                "sha256": "224b653f6586cb7e05d694427aec3b165a9b1096c0b0f654ce767a6ba2d1dc1d"
            },
            "downloads": -1,
            "filename": "PhrameAPI-1.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "533b2236525f6d4e4fa5eb0a6b241159",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.4",
            "size": 28001,
            "upload_time": "2024-01-12T14:30:42",
            "upload_time_iso_8601": "2024-01-12T14:30:42.200677Z",
            "url": "https://files.pythonhosted.org/packages/bf/f2/de53d5c2dd2f69ad961de03c17bee6106ef6111b1d2661e860ef472594ea/PhrameAPI-1.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92f1193ffc1c1fff1bbe572029224e0d0d4feba40b1af7cecec3f38ba55c0b5f",
                "md5": "39c05027c1777f3e67ddceafda4f9984",
                "sha256": "3033c9494bdb341d6caae9f62ba74cbc2a5df39ea0c7c5b45c6ec5363c54e09e"
            },
            "downloads": -1,
            "filename": "PhrameAPI-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "39c05027c1777f3e67ddceafda4f9984",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.4",
            "size": 26158,
            "upload_time": "2024-01-12T14:30:43",
            "upload_time_iso_8601": "2024-01-12T14:30:43.932775Z",
            "url": "https://files.pythonhosted.org/packages/92/f1/193ffc1c1fff1bbe572029224e0d0d4feba40b1af7cecec3f38ba55c0b5f/PhrameAPI-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-12 14:30:43",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "phrameapi"
}
        
Elapsed time: 0.18459s