Name | icotest-voice JSON |
Version |
1.0.44
JSON |
| download |
home_page | None |
Summary | Icotest Voice API |
upload_time | 2024-04-16 10:36:48 |
maintainer | None |
docs_url | None |
author | Shaun Hirst |
requires_python | >=3.7 |
license | Copyright © 2024 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
icotest voice
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# icotest-voice
IcoTest Voice API
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 1.0.44
- Package version: 1.0.44
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
## Requirements.
Python 3.7+
## Installation & Usage
### pip install
```sh
pip install icotest-voice
```
Then import the package:
```python
import icotest_voice
```
### Tests
Execute `pytest` to run the tests.
## Getting Started
Please follow the installation procedure and then run the following:
```python
import icotest_voice
from icotest_voice.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://localhost/icotest_voice
# See configuration.py for a list of all supported configuration parameters.
configuration = icotest_voice.Configuration(
host = "https://localhost/icotest_voice"
)
# Enter a context with an instance of the API client
with icotest_voice.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = icotest_voice.ControllersApi(api_client)
controller_id = "ac331ccb-5841-44ec-9d32-4f4fe0c3c16c" # str: the unique ID of the controller
try:
# DELETE Controller
api_instance.delete_controller(controller_id)
except ApiException as e:
print("Exception when calling ControllersApi->delete_controller: %s\n" % e)
```
## Documentation for API Endpoints
All URIs are relative to *https://localhost/icotest_voice*
Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*ControllersApi* | [**delete_controller**](docs/ControllersApi.md#delete_controller) | **DELETE** /controllers | DELETE Controller
*ControllersApi* | [**get_controllers**](docs/ControllersApi.md#get_controllers) | **GET** /controllers | GET controllers
*ControllersApi* | [**post_controller_heartbeat**](docs/ControllersApi.md#post_controller_heartbeat) | **POST** /controllers/{controller_id}/heartbeat | POST Controller heartbeat
*ControllersApi* | [**put_controller**](docs/ControllersApi.md#put_controller) | **PUT** /controllers | PUT controller
*DevicesApi* | [**delete_device**](docs/DevicesApi.md#delete_device) | **DELETE** /devices | DELETE Device
*DevicesApi* | [**get_device_status**](docs/DevicesApi.md#get_device_status) | **GET** /devices/{device_id}/status | GET device status
*DevicesApi* | [**get_devices**](docs/DevicesApi.md#get_devices) | **GET** /devices | GET devices
*DevicesApi* | [**get_host_config**](docs/DevicesApi.md#get_host_config) | **GET** /host/config | Your GET endpoint
*DevicesApi* | [**post_device_appium_take_screenshot**](docs/DevicesApi.md#post_device_appium_take_screenshot) | **POST** /devices/{device_id}/APPIUM_take_screenshot | POST APPIUM take screenshot
*DevicesApi* | [**post_device_dect_get_handset_name**](docs/DevicesApi.md#post_device_dect_get_handset_name) | **POST** /devices/{device_id}/DECT_get_handset_name | POST DECT Get Handset Name
*DevicesApi* | [**post_device_dect_reset**](docs/DevicesApi.md#post_device_dect_reset) | **POST** /devices/{device_id}/DECT_reset | POST DECT Device Reset
*DevicesApi* | [**post_device_dect_run_at_cmd**](docs/DevicesApi.md#post_device_dect_run_at_cmd) | **POST** /devices/{device_id}/DECT_run_AT_command | POST DECT Run AT Command
*DevicesApi* | [**post_device_deregister**](docs/DevicesApi.md#post_device_deregister) | **POST** /devices/{device_id}/deregister | POST deregister device
*DevicesApi* | [**post_device_end_call**](docs/DevicesApi.md#post_device_end_call) | **POST** /devices/{device_id}/end_call | POST end call
*DevicesApi* | [**post_device_heartbeat**](docs/DevicesApi.md#post_device_heartbeat) | **POST** /devices/{device_id}/heartbeat | POST Device heartbeat
*DevicesApi* | [**post_device_make_call**](docs/DevicesApi.md#post_device_make_call) | **POST** /devices/{device_id}/make_call | POST make call
*DevicesApi* | [**post_device_receive_call**](docs/DevicesApi.md#post_device_receive_call) | **POST** /devices/{device_id}/receive_call | POST receive call
*DevicesApi* | [**post_device_register**](docs/DevicesApi.md#post_device_register) | **POST** /devices/{device_id}/register | POST register device
*DevicesApi* | [**post_device_send_command**](docs/DevicesApi.md#post_device_send_command) | **POST** /devices/{device_id}/send_command | POST send command
*DevicesApi* | [**post_devices_scan**](docs/DevicesApi.md#post_devices_scan) | **POST** /devices/{controller_id}/scan | POST device scan
*DevicesApi* | [**put_device**](docs/DevicesApi.md#put_device) | **PUT** /devices | PUT device
*DevicesApi* | [**put_device_status**](docs/DevicesApi.md#put_device_status) | **PUT** /devices/{device_id}/status | PUT device status
*DevicesApi* | [**put_host_config**](docs/DevicesApi.md#put_host_config) | **PUT** /host/config |
*RequestsApi* | [**dect_get_last_commands**](docs/RequestsApi.md#dect_get_last_commands) | **GET** /requests/{device_id}/DECT_get_last_commands | DECT Get Last Commands
*RequestsApi* | [**delete_appium_all_screenshots**](docs/RequestsApi.md#delete_appium_all_screenshots) | **DELETE** /requests/{controller_id}/APPIUM_delete_all_screenshots | DELETE APPIUM all screenshots
*RequestsApi* | [**delete_appium_ios_certificates**](docs/RequestsApi.md#delete_appium_ios_certificates) | **DELETE** /requests/{controller_id}/APPIUM_delete_ios_certificates | DELETE APPIUM audio playback file
*RequestsApi* | [**delete_audio_playback_file**](docs/RequestsApi.md#delete_audio_playback_file) | **DELETE** /requests/{controller_id}/delete_audio_playback_file | DELETE audio playback file
*RequestsApi* | [**delete_request**](docs/RequestsApi.md#delete_request) | **DELETE** /requests | DELETE request
*RequestsApi* | [**delete_result_file**](docs/RequestsApi.md#delete_result_file) | **DELETE** /requests/{request_id}/delete_result_file | DELETE result file
*RequestsApi* | [**delete_result_files_in_range**](docs/RequestsApi.md#delete_result_files_in_range) | **DELETE** /requests/{controller_id}/delete_result_files_in_range | DELETE result files in date-time range
*RequestsApi* | [**get_appium_device_screenshot_list**](docs/RequestsApi.md#get_appium_device_screenshot_list) | **GET** /requests/{controller_id}/APPIUM_get_screenshot_list | GET APPIUM device screenshot list
*RequestsApi* | [**get_appium_retrieve_device_screenshot**](docs/RequestsApi.md#get_appium_retrieve_device_screenshot) | **GET** /requests/{request_id}/APPIUM_retrieve_screenshot | GET APPIUM retrieve screenshot
*RequestsApi* | [**get_audio_playback_file_list**](docs/RequestsApi.md#get_audio_playback_file_list) | **GET** /requests/{controller_id}/get_audio_playback_file_list | GET audio playback file list
*RequestsApi* | [**get_requests**](docs/RequestsApi.md#get_requests) | **GET** /requests | GET requests
*RequestsApi* | [**get_retrieve_test_result_file**](docs/RequestsApi.md#get_retrieve_test_result_file) | **GET** /requests/{request_id}/retrieve_result_file | GET test result file
*RequestsApi* | [**get_test_result_file_list**](docs/RequestsApi.md#get_test_result_file_list) | **GET** /requests/{controller_id}/get_result_file_list | GET test result file list
*RequestsApi* | [**post_request_heartbeat**](docs/RequestsApi.md#post_request_heartbeat) | **POST** /requests/{request_id}/heartbeat | POST request heartbeat
*RequestsApi* | [**put_appium_install_ios_webdriveragent**](docs/RequestsApi.md#put_appium_install_ios_webdriveragent) | **PUT** /requests/{controller_id}/APPIUM_install_ios_webdriveragent | PUT APPIUM install ios webdriveragent
*RequestsApi* | [**put_appium_upload_ios_certificates**](docs/RequestsApi.md#put_appium_upload_ios_certificates) | **PUT** /requests/{controller_id}/APPIUM_upload_ios_certificates | PUT APPIUM upload ios certificates
*RequestsApi* | [**put_request**](docs/RequestsApi.md#put_request) | **PUT** /requests | PUT request
*RequestsApi* | [**put_request_status**](docs/RequestsApi.md#put_request_status) | **PUT** /requests/{request_id}/status | PUT request status
*RequestsApi* | [**put_upload_audio_playback_file**](docs/RequestsApi.md#put_upload_audio_playback_file) | **PUT** /requests/{controller_id}/upload_audio_playback_file | PUT upload audio playback file
## Documentation For Models
- [Controller](docs/Controller.md)
- [Device](docs/Device.md)
- [GetTestResultFileList200Response](docs/GetTestResultFileList200Response.md)
- [GetTestResultFileList200ResponseFilesInner](docs/GetTestResultFileList200ResponseFilesInner.md)
- [HostConfig](docs/HostConfig.md)
- [PostDeviceRegisterRequest](docs/PostDeviceRegisterRequest.md)
- [Request](docs/Request.md)
<a id="documentation-for-authorization"></a>
## Documentation For Authorization
Endpoints do not require authorization.
## Author
shaun.hirst@3adesign.co.uk
Raw data
{
"_id": null,
"home_page": null,
"name": "icotest-voice",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": null,
"keywords": "OpenAPI, OpenAPI-Generator, Icotest Voice",
"author": "Shaun Hirst",
"author_email": "Shaun Hirst <shaun.hirst@3adesign.co.uk>, Ivo Shipkaliev <ivo@3adesign.co.uk>",
"download_url": "https://files.pythonhosted.org/packages/88/8f/6071ae8fded01515c587838ea9b2f791c3716903a49d26de21b94e4e05f8/icotest_voice-1.0.44.tar.gz",
"platform": null,
"description": "# icotest-voice\nIcoTest Voice API\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 1.0.44\n- Package version: 1.0.44\n- Build package: org.openapitools.codegen.languages.PythonClientCodegen\n\n## Requirements.\n\nPython 3.7+\n\n## Installation & Usage\n### pip install\n\n```sh\npip install icotest-voice\n```\n\nThen import the package:\n```python\nimport icotest_voice\n```\n\n### Tests\n\nExecute `pytest` to run the tests.\n\n## Getting Started\n\nPlease follow the installation procedure and then run the following:\n\n```python\nimport icotest_voice\nfrom icotest_voice.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to https://localhost/icotest_voice\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = icotest_voice.Configuration(\n host = \"https://localhost/icotest_voice\"\n)\n\n# Enter a context with an instance of the API client\nwith icotest_voice.ApiClient(configuration) as api_client:\n # Create an instance of the API class\n api_instance = icotest_voice.ControllersApi(api_client)\n controller_id = \"ac331ccb-5841-44ec-9d32-4f4fe0c3c16c\" # str: the unique ID of the controller\n\n try:\n # DELETE Controller\n api_instance.delete_controller(controller_id)\n\n except ApiException as e:\n print(\"Exception when calling ControllersApi->delete_controller: %s\\n\" % e)\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://localhost/icotest_voice*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*ControllersApi* | [**delete_controller**](docs/ControllersApi.md#delete_controller) | **DELETE** /controllers | DELETE Controller\n*ControllersApi* | [**get_controllers**](docs/ControllersApi.md#get_controllers) | **GET** /controllers | GET controllers\n*ControllersApi* | [**post_controller_heartbeat**](docs/ControllersApi.md#post_controller_heartbeat) | **POST** /controllers/{controller_id}/heartbeat | POST Controller heartbeat\n*ControllersApi* | [**put_controller**](docs/ControllersApi.md#put_controller) | **PUT** /controllers | PUT controller\n*DevicesApi* | [**delete_device**](docs/DevicesApi.md#delete_device) | **DELETE** /devices | DELETE Device\n*DevicesApi* | [**get_device_status**](docs/DevicesApi.md#get_device_status) | **GET** /devices/{device_id}/status | GET device status\n*DevicesApi* | [**get_devices**](docs/DevicesApi.md#get_devices) | **GET** /devices | GET devices\n*DevicesApi* | [**get_host_config**](docs/DevicesApi.md#get_host_config) | **GET** /host/config | Your GET endpoint\n*DevicesApi* | [**post_device_appium_take_screenshot**](docs/DevicesApi.md#post_device_appium_take_screenshot) | **POST** /devices/{device_id}/APPIUM_take_screenshot | POST APPIUM take screenshot\n*DevicesApi* | [**post_device_dect_get_handset_name**](docs/DevicesApi.md#post_device_dect_get_handset_name) | **POST** /devices/{device_id}/DECT_get_handset_name | POST DECT Get Handset Name\n*DevicesApi* | [**post_device_dect_reset**](docs/DevicesApi.md#post_device_dect_reset) | **POST** /devices/{device_id}/DECT_reset | POST DECT Device Reset\n*DevicesApi* | [**post_device_dect_run_at_cmd**](docs/DevicesApi.md#post_device_dect_run_at_cmd) | **POST** /devices/{device_id}/DECT_run_AT_command | POST DECT Run AT Command\n*DevicesApi* | [**post_device_deregister**](docs/DevicesApi.md#post_device_deregister) | **POST** /devices/{device_id}/deregister | POST deregister device\n*DevicesApi* | [**post_device_end_call**](docs/DevicesApi.md#post_device_end_call) | **POST** /devices/{device_id}/end_call | POST end call\n*DevicesApi* | [**post_device_heartbeat**](docs/DevicesApi.md#post_device_heartbeat) | **POST** /devices/{device_id}/heartbeat | POST Device heartbeat\n*DevicesApi* | [**post_device_make_call**](docs/DevicesApi.md#post_device_make_call) | **POST** /devices/{device_id}/make_call | POST make call\n*DevicesApi* | [**post_device_receive_call**](docs/DevicesApi.md#post_device_receive_call) | **POST** /devices/{device_id}/receive_call | POST receive call\n*DevicesApi* | [**post_device_register**](docs/DevicesApi.md#post_device_register) | **POST** /devices/{device_id}/register | POST register device\n*DevicesApi* | [**post_device_send_command**](docs/DevicesApi.md#post_device_send_command) | **POST** /devices/{device_id}/send_command | POST send command\n*DevicesApi* | [**post_devices_scan**](docs/DevicesApi.md#post_devices_scan) | **POST** /devices/{controller_id}/scan | POST device scan\n*DevicesApi* | [**put_device**](docs/DevicesApi.md#put_device) | **PUT** /devices | PUT device\n*DevicesApi* | [**put_device_status**](docs/DevicesApi.md#put_device_status) | **PUT** /devices/{device_id}/status | PUT device status\n*DevicesApi* | [**put_host_config**](docs/DevicesApi.md#put_host_config) | **PUT** /host/config |\n*RequestsApi* | [**dect_get_last_commands**](docs/RequestsApi.md#dect_get_last_commands) | **GET** /requests/{device_id}/DECT_get_last_commands | DECT Get Last Commands\n*RequestsApi* | [**delete_appium_all_screenshots**](docs/RequestsApi.md#delete_appium_all_screenshots) | **DELETE** /requests/{controller_id}/APPIUM_delete_all_screenshots | DELETE APPIUM all screenshots\n*RequestsApi* | [**delete_appium_ios_certificates**](docs/RequestsApi.md#delete_appium_ios_certificates) | **DELETE** /requests/{controller_id}/APPIUM_delete_ios_certificates | DELETE APPIUM audio playback file\n*RequestsApi* | [**delete_audio_playback_file**](docs/RequestsApi.md#delete_audio_playback_file) | **DELETE** /requests/{controller_id}/delete_audio_playback_file | DELETE audio playback file\n*RequestsApi* | [**delete_request**](docs/RequestsApi.md#delete_request) | **DELETE** /requests | DELETE request\n*RequestsApi* | [**delete_result_file**](docs/RequestsApi.md#delete_result_file) | **DELETE** /requests/{request_id}/delete_result_file | DELETE result file\n*RequestsApi* | [**delete_result_files_in_range**](docs/RequestsApi.md#delete_result_files_in_range) | **DELETE** /requests/{controller_id}/delete_result_files_in_range | DELETE result files in date-time range\n*RequestsApi* | [**get_appium_device_screenshot_list**](docs/RequestsApi.md#get_appium_device_screenshot_list) | **GET** /requests/{controller_id}/APPIUM_get_screenshot_list | GET APPIUM device screenshot list\n*RequestsApi* | [**get_appium_retrieve_device_screenshot**](docs/RequestsApi.md#get_appium_retrieve_device_screenshot) | **GET** /requests/{request_id}/APPIUM_retrieve_screenshot | GET APPIUM retrieve screenshot\n*RequestsApi* | [**get_audio_playback_file_list**](docs/RequestsApi.md#get_audio_playback_file_list) | **GET** /requests/{controller_id}/get_audio_playback_file_list | GET audio playback file list\n*RequestsApi* | [**get_requests**](docs/RequestsApi.md#get_requests) | **GET** /requests | GET requests\n*RequestsApi* | [**get_retrieve_test_result_file**](docs/RequestsApi.md#get_retrieve_test_result_file) | **GET** /requests/{request_id}/retrieve_result_file | GET test result file\n*RequestsApi* | [**get_test_result_file_list**](docs/RequestsApi.md#get_test_result_file_list) | **GET** /requests/{controller_id}/get_result_file_list | GET test result file list\n*RequestsApi* | [**post_request_heartbeat**](docs/RequestsApi.md#post_request_heartbeat) | **POST** /requests/{request_id}/heartbeat | POST request heartbeat\n*RequestsApi* | [**put_appium_install_ios_webdriveragent**](docs/RequestsApi.md#put_appium_install_ios_webdriveragent) | **PUT** /requests/{controller_id}/APPIUM_install_ios_webdriveragent | PUT APPIUM install ios webdriveragent\n*RequestsApi* | [**put_appium_upload_ios_certificates**](docs/RequestsApi.md#put_appium_upload_ios_certificates) | **PUT** /requests/{controller_id}/APPIUM_upload_ios_certificates | PUT APPIUM upload ios certificates\n*RequestsApi* | [**put_request**](docs/RequestsApi.md#put_request) | **PUT** /requests | PUT request\n*RequestsApi* | [**put_request_status**](docs/RequestsApi.md#put_request_status) | **PUT** /requests/{request_id}/status | PUT request status\n*RequestsApi* | [**put_upload_audio_playback_file**](docs/RequestsApi.md#put_upload_audio_playback_file) | **PUT** /requests/{controller_id}/upload_audio_playback_file | PUT upload audio playback file\n\n\n## Documentation For Models\n\n - [Controller](docs/Controller.md)\n - [Device](docs/Device.md)\n - [GetTestResultFileList200Response](docs/GetTestResultFileList200Response.md)\n - [GetTestResultFileList200ResponseFilesInner](docs/GetTestResultFileList200ResponseFilesInner.md)\n - [HostConfig](docs/HostConfig.md)\n - [PostDeviceRegisterRequest](docs/PostDeviceRegisterRequest.md)\n - [Request](docs/Request.md)\n\n\n<a id=\"documentation-for-authorization\"></a>\n## Documentation For Authorization\n\nEndpoints do not require authorization.\n\n\n## Author\n\nshaun.hirst@3adesign.co.uk\n\n\n",
"bugtrack_url": null,
"license": "Copyright \u00a9 2024 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": "Icotest Voice API",
"version": "1.0.44",
"project_urls": null,
"split_keywords": [
"openapi",
" openapi-generator",
" icotest voice"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "f9e80f622146cd6996010451b5daf16574c6f7cf35f71aed6ae367ed30c1995a",
"md5": "75a40710464196341b582ff305a5fe71",
"sha256": "d58e756c363b76018abc7cd66b7e1cb424107dcd5abf0e20e879c768c4e39ab0"
},
"downloads": -1,
"filename": "icotest_voice-1.0.44-py3-none-any.whl",
"has_sig": false,
"md5_digest": "75a40710464196341b582ff305a5fe71",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 48101,
"upload_time": "2024-04-16T10:36:45",
"upload_time_iso_8601": "2024-04-16T10:36:45.344792Z",
"url": "https://files.pythonhosted.org/packages/f9/e8/0f622146cd6996010451b5daf16574c6f7cf35f71aed6ae367ed30c1995a/icotest_voice-1.0.44-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "888f6071ae8fded01515c587838ea9b2f791c3716903a49d26de21b94e4e05f8",
"md5": "1abca9043a2d367e509121fcaba00495",
"sha256": "21cb05ec3297465931a631f1935f1979e5ebe62393e8b5ad0e5cb41bff9833ee"
},
"downloads": -1,
"filename": "icotest_voice-1.0.44.tar.gz",
"has_sig": false,
"md5_digest": "1abca9043a2d367e509121fcaba00495",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 47621,
"upload_time": "2024-04-16T10:36:48",
"upload_time_iso_8601": "2024-04-16T10:36:48.188461Z",
"url": "https://files.pythonhosted.org/packages/88/8f/6071ae8fded01515c587838ea9b2f791c3716903a49d26de21b94e4e05f8/icotest_voice-1.0.44.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-04-16 10:36:48",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "icotest-voice"
}