neops_workflow_engine_client 0.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- neops_workflow_engine_client-0.0.0/PKG-INFO +127 -0
- neops_workflow_engine_client-0.0.0/README.md +102 -0
- neops_workflow_engine_client-0.0.0/neops_workflow_engine_client/__init__.py +33 -0
- neops_workflow_engine_client-0.0.0/neops_workflow_engine_client/api/__init__.py +5 -0
- neops_workflow_engine_client-0.0.0/neops_workflow_engine_client/api/default_api.py +505 -0
- neops_workflow_engine_client-0.0.0/neops_workflow_engine_client/api_client.py +797 -0
- neops_workflow_engine_client-0.0.0/neops_workflow_engine_client/api_response.py +21 -0
- neops_workflow_engine_client-0.0.0/neops_workflow_engine_client/configuration.py +450 -0
- neops_workflow_engine_client-0.0.0/neops_workflow_engine_client/exceptions.py +199 -0
- neops_workflow_engine_client-0.0.0/neops_workflow_engine_client/models/__init__.py +16 -0
- neops_workflow_engine_client-0.0.0/neops_workflow_engine_client/py.typed +0 -0
- neops_workflow_engine_client-0.0.0/neops_workflow_engine_client/rest.py +257 -0
- neops_workflow_engine_client-0.0.0/pyproject.toml +72 -0
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: neops_workflow_engine_client
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Neops Workflow Engine
|
|
5
|
+
Home-page: https://github.com/GIT_USER_ID/GIT_REPO_ID
|
|
6
|
+
License: NoLicense
|
|
7
|
+
Keywords: OpenAPI,OpenAPI-Generator,Neops Workflow Engine
|
|
8
|
+
Author: OpenAPI Generator Community
|
|
9
|
+
Author-email: team@openapitools.org
|
|
10
|
+
Requires-Python: >=3.8,<4.0
|
|
11
|
+
Classifier: License :: Other/Proprietary License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Requires-Dist: pydantic (>=2)
|
|
19
|
+
Requires-Dist: python-dateutil (>=2.8.2)
|
|
20
|
+
Requires-Dist: typing-extensions (>=4.7.1)
|
|
21
|
+
Requires-Dist: urllib3 (>=1.25.3,<3.0.0)
|
|
22
|
+
Project-URL: Repository, https://github.com/GIT_USER_ID/GIT_REPO_ID
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
|
|
25
|
+
# Neops Task Engine Client
|
|
26
|
+
Neops workflow engine API documentation
|
|
27
|
+
|
|
28
|
+
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
29
|
+
|
|
30
|
+
- API version: 1.0
|
|
31
|
+
- Package version: 0.0.0
|
|
32
|
+
- Generator version: 7.9.0
|
|
33
|
+
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
34
|
+
|
|
35
|
+
## Requirements.
|
|
36
|
+
|
|
37
|
+
Python 3.7+
|
|
38
|
+
|
|
39
|
+
## Installation & Usage
|
|
40
|
+
### pip install
|
|
41
|
+
|
|
42
|
+
If the python package is hosted on a repository, you can install directly using:
|
|
43
|
+
|
|
44
|
+
```sh
|
|
45
|
+
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
|
|
46
|
+
```
|
|
47
|
+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
|
|
48
|
+
|
|
49
|
+
Then import the package:
|
|
50
|
+
```python
|
|
51
|
+
import neops_workflow_engine_client
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
### Setuptools
|
|
55
|
+
|
|
56
|
+
Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
|
|
57
|
+
|
|
58
|
+
```sh
|
|
59
|
+
python setup.py install --user
|
|
60
|
+
```
|
|
61
|
+
(or `sudo python setup.py install` to install the package for all users)
|
|
62
|
+
|
|
63
|
+
Then import the package:
|
|
64
|
+
```python
|
|
65
|
+
import neops_workflow_engine_client
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
### Tests
|
|
69
|
+
|
|
70
|
+
Execute `pytest` to run the tests.
|
|
71
|
+
|
|
72
|
+
## Getting Started
|
|
73
|
+
|
|
74
|
+
Please follow the [installation procedure](#installation--usage) and then run the following:
|
|
75
|
+
|
|
76
|
+
```python
|
|
77
|
+
|
|
78
|
+
import neops_workflow_engine_client
|
|
79
|
+
from neops_workflow_engine_client.rest import ApiException
|
|
80
|
+
from pprint import pprint
|
|
81
|
+
|
|
82
|
+
# Defining the host is optional and defaults to http://localhost
|
|
83
|
+
# See configuration.py for a list of all supported configuration parameters.
|
|
84
|
+
configuration = neops_workflow_engine_client.Configuration(
|
|
85
|
+
host = "http://localhost"
|
|
86
|
+
)
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
# Enter a context with an instance of the API client
|
|
91
|
+
with neops_workflow_engine_client.ApiClient(configuration) as api_client:
|
|
92
|
+
# Create an instance of the API class
|
|
93
|
+
api_instance = neops_workflow_engine_client.DefaultApi(api_client)
|
|
94
|
+
|
|
95
|
+
try:
|
|
96
|
+
api_instance.app_controller_get_hello()
|
|
97
|
+
except ApiException as e:
|
|
98
|
+
print("Exception when calling DefaultApi->app_controller_get_hello: %s\n" % e)
|
|
99
|
+
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
## Documentation for API Endpoints
|
|
103
|
+
|
|
104
|
+
All URIs are relative to *http://localhost*
|
|
105
|
+
|
|
106
|
+
Class | Method | HTTP request | Description
|
|
107
|
+
------------ | ------------- | ------------- | -------------
|
|
108
|
+
*DefaultApi* | [**app_controller_get_hello**](docs/DefaultApi.md#app_controller_get_hello) | **GET** / |
|
|
109
|
+
*DefaultApi* | [**health_controller_healthy**](docs/DefaultApi.md#health_controller_healthy) | **GET** /health |
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
## Documentation For Models
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
<a id="documentation-for-authorization"></a>
|
|
117
|
+
## Documentation For Authorization
|
|
118
|
+
|
|
119
|
+
Endpoints do not require authorization.
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
## Author
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
# Neops Task Engine Client
|
|
2
|
+
Neops workflow engine API documentation
|
|
3
|
+
|
|
4
|
+
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
5
|
+
|
|
6
|
+
- API version: 1.0
|
|
7
|
+
- Package version: 0.0.0
|
|
8
|
+
- Generator version: 7.9.0
|
|
9
|
+
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
10
|
+
|
|
11
|
+
## Requirements.
|
|
12
|
+
|
|
13
|
+
Python 3.7+
|
|
14
|
+
|
|
15
|
+
## Installation & Usage
|
|
16
|
+
### pip install
|
|
17
|
+
|
|
18
|
+
If the python package is hosted on a repository, you can install directly using:
|
|
19
|
+
|
|
20
|
+
```sh
|
|
21
|
+
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
|
|
22
|
+
```
|
|
23
|
+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
|
|
24
|
+
|
|
25
|
+
Then import the package:
|
|
26
|
+
```python
|
|
27
|
+
import neops_workflow_engine_client
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### Setuptools
|
|
31
|
+
|
|
32
|
+
Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
|
|
33
|
+
|
|
34
|
+
```sh
|
|
35
|
+
python setup.py install --user
|
|
36
|
+
```
|
|
37
|
+
(or `sudo python setup.py install` to install the package for all users)
|
|
38
|
+
|
|
39
|
+
Then import the package:
|
|
40
|
+
```python
|
|
41
|
+
import neops_workflow_engine_client
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
### Tests
|
|
45
|
+
|
|
46
|
+
Execute `pytest` to run the tests.
|
|
47
|
+
|
|
48
|
+
## Getting Started
|
|
49
|
+
|
|
50
|
+
Please follow the [installation procedure](#installation--usage) and then run the following:
|
|
51
|
+
|
|
52
|
+
```python
|
|
53
|
+
|
|
54
|
+
import neops_workflow_engine_client
|
|
55
|
+
from neops_workflow_engine_client.rest import ApiException
|
|
56
|
+
from pprint import pprint
|
|
57
|
+
|
|
58
|
+
# Defining the host is optional and defaults to http://localhost
|
|
59
|
+
# See configuration.py for a list of all supported configuration parameters.
|
|
60
|
+
configuration = neops_workflow_engine_client.Configuration(
|
|
61
|
+
host = "http://localhost"
|
|
62
|
+
)
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
# Enter a context with an instance of the API client
|
|
67
|
+
with neops_workflow_engine_client.ApiClient(configuration) as api_client:
|
|
68
|
+
# Create an instance of the API class
|
|
69
|
+
api_instance = neops_workflow_engine_client.DefaultApi(api_client)
|
|
70
|
+
|
|
71
|
+
try:
|
|
72
|
+
api_instance.app_controller_get_hello()
|
|
73
|
+
except ApiException as e:
|
|
74
|
+
print("Exception when calling DefaultApi->app_controller_get_hello: %s\n" % e)
|
|
75
|
+
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## Documentation for API Endpoints
|
|
79
|
+
|
|
80
|
+
All URIs are relative to *http://localhost*
|
|
81
|
+
|
|
82
|
+
Class | Method | HTTP request | Description
|
|
83
|
+
------------ | ------------- | ------------- | -------------
|
|
84
|
+
*DefaultApi* | [**app_controller_get_hello**](docs/DefaultApi.md#app_controller_get_hello) | **GET** / |
|
|
85
|
+
*DefaultApi* | [**health_controller_healthy**](docs/DefaultApi.md#health_controller_healthy) | **GET** /health |
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
## Documentation For Models
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
<a id="documentation-for-authorization"></a>
|
|
93
|
+
## Documentation For Authorization
|
|
94
|
+
|
|
95
|
+
Endpoints do not require authorization.
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
## Author
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
Neops Workflow Engine
|
|
7
|
+
|
|
8
|
+
Neops workflow engine API documentation
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 1.0
|
|
11
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
12
|
+
|
|
13
|
+
Do not edit the class manually.
|
|
14
|
+
""" # noqa: E501
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
__version__ = "0.0.0"
|
|
18
|
+
|
|
19
|
+
# import apis into sdk package
|
|
20
|
+
from neops_workflow_engine_client.api.default_api import DefaultApi
|
|
21
|
+
|
|
22
|
+
# import ApiClient
|
|
23
|
+
from neops_workflow_engine_client.api_response import ApiResponse
|
|
24
|
+
from neops_workflow_engine_client.api_client import ApiClient
|
|
25
|
+
from neops_workflow_engine_client.configuration import Configuration
|
|
26
|
+
from neops_workflow_engine_client.exceptions import OpenApiException
|
|
27
|
+
from neops_workflow_engine_client.exceptions import ApiTypeError
|
|
28
|
+
from neops_workflow_engine_client.exceptions import ApiValueError
|
|
29
|
+
from neops_workflow_engine_client.exceptions import ApiKeyError
|
|
30
|
+
from neops_workflow_engine_client.exceptions import ApiAttributeError
|
|
31
|
+
from neops_workflow_engine_client.exceptions import ApiException
|
|
32
|
+
|
|
33
|
+
# import models into sdk package
|