Metadata-Version: 2.3
Name: static_server_connector
Version: 1.1.0+1653032141
Summary: Mentortools Static Landing Page Server
License: NoLicense
Keywords: OpenAPI,OpenAPI-Generator,Mentortools Static Landing Page Server
Author: OpenAPI Generator Community
Author-email: team@openapitools.org
Requires-Python: >=3.7,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: aenum (>=3.1.11)
Requires-Dist: aiohttp (>=3.8.4)
Requires-Dist: pydantic (>=1.10.5,<2.0.0)
Requires-Dist: python-dateutil (>=2.8.2)
Requires-Dist: urllib3 (>=1.25.3)
Project-URL: Repository, https://github.com/GIT_USER_ID/GIT_REPO_ID
Description-Content-Type: text/markdown

# static-server-connector
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

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

- API version: 1.1.0
- Package version: 1.1.0+1653032141
- Generator version: 7.8.0
- Build package: org.openapitools.codegen.languages.PythonPydanticV1ClientCodegen

## Requirements.

Python 3.7+

## 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 static_server_connector
```

### 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 static_server_connector
```

### Tests

Execute `pytest` to run the tests.

## Getting Started

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

```python

import time
import static_server_connector
from static_server_connector.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to /static_api
# See configuration.py for a list of all supported configuration parameters.
configuration = static_server_connector.Configuration(
    host = "/static_api"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization: TokenSecurity
configuration = static_server_connector.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)


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

    try:
        api_response = await api_instance.design_get()
        print("The response of DefaultApi->design_get:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling DefaultApi->design_get: %s\n" % e)

```

## Documentation for API Endpoints

All URIs are relative to */static_api*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*DefaultApi* | [**design_get**](docs/DefaultApi.md#design_get) | **GET** /design | 
*DefaultApi* | [**design_post**](docs/DefaultApi.md#design_post) | **POST** /design | 
*DefaultApi* | [**file_v1_publish_post**](docs/DefaultApi.md#file_v1_publish_post) | **POST** /file/v1/publish | 
*DefaultApi* | [**file_v1_unpublish_post**](docs/DefaultApi.md#file_v1_unpublish_post) | **POST** /file/v1/unpublish | 
*DefaultApi* | [**health_get**](docs/DefaultApi.md#health_get) | **GET** /health | 


## Documentation For Models

 - [ApiResponseWrapperBoolean](docs/ApiResponseWrapperBoolean.md)
 - [Error](docs/Error.md)
 - [PagePublish](docs/PagePublish.md)
 - [PageUnpublish](docs/PageUnpublish.md)
 - [SwitchDesinRequest](docs/SwitchDesinRequest.md)


<a id="documentation-for-authorization"></a>
## Documentation For Authorization


Authentication schemes defined for the API:
<a id="ServerNameSecurity"></a>
### ServerNameSecurity

- **Type**: API key
- **API key parameter name**: server_name
- **Location**: HTTP header

<a id="TokenSecurity"></a>
### TokenSecurity

- **Type**: Bearer authentication


## Author





