Metadata-Version: 2.3
Name: smarthome_meterportal
Version: 1.0.1
Summary: SmartHome
License: NoLicense
Keywords: OpenAPI,OpenAPI-Generator,SmartHome
Author: OpenAPI Generator Community
Author-email: team@openapitools.org
Requires-Python: >=3.8,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
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: pydantic (>=2)
Requires-Dist: python-dateutil (>=2.8.2)
Requires-Dist: typing-extensions (>=4.7.1)
Requires-Dist: urllib3 (>=1.25.3,<3.0.0)
Project-URL: Repository, https://github.com/GIT_USER_ID/GIT_REPO_ID
Description-Content-Type: text/markdown

# smarthome-meterportal
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.0
- Package version: 1.0.0
- Generator version: 7.10.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.

Python 3.8+

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

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

### Tests

Execute `pytest` to run the tests.

## Getting Started

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

```python

import smarthome_meterportal
from smarthome_meterportal.rest import ApiException
from pprint import pprint

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



# Enter a context with an instance of the API client
with smarthome_meterportal.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = smarthome_meterportal.HomeAssistantApi(api_client)
    auth_request = smarthome_meterportal.AuthRequest() # AuthRequest |  (optional)

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

```

## Documentation for API Endpoints

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

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*HomeAssistantApi* | [**api_homeassistant_authenticate_post**](docs/HomeAssistantApi.md#api_homeassistant_authenticate_post) | **POST** /api/homeassistant/authenticate | 
*HomeAssistantApi* | [**api_homeassistant_full_post**](docs/HomeAssistantApi.md#api_homeassistant_full_post) | **POST** /api/homeassistant/full | 
*HomeAssistantApi* | [**api_homeassistant_meters_get**](docs/HomeAssistantApi.md#api_homeassistant_meters_get) | **GET** /api/homeassistant/meters | 
*HomeAssistantApi* | [**api_homeassistant_partial_post**](docs/HomeAssistantApi.md#api_homeassistant_partial_post) | **POST** /api/homeassistant/partial | 
*HomeyApi* | [**api_homey_authenticate_post**](docs/HomeyApi.md#api_homey_authenticate_post) | **POST** /api/homey/authenticate | 
*HomeyApi* | [**api_homey_full_post**](docs/HomeyApi.md#api_homey_full_post) | **POST** /api/homey/full | 
*HomeyApi* | [**api_homey_meters_get**](docs/HomeyApi.md#api_homey_meters_get) | **GET** /api/homey/meters | 
*HomeyApi* | [**api_homey_partial_post**](docs/HomeyApi.md#api_homey_partial_post) | **POST** /api/homey/partial | 


## Documentation For Models

 - [AuthRequest](docs/AuthRequest.md)
 - [AuthResponse](docs/AuthResponse.md)
 - [FullRequest](docs/FullRequest.md)
 - [MeterReadingData](docs/MeterReadingData.md)
 - [MeterReadingResponse](docs/MeterReadingResponse.md)
 - [MeterReadingResponseData](docs/MeterReadingResponseData.md)
 - [MetersResponse](docs/MetersResponse.md)
 - [PartialRequest](docs/PartialRequest.md)


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


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

- **Type**: API key
- **API key parameter name**: X-API-KEY
- **Location**: HTTP header


## Author





