# ourskyai-astro-api
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.3.8106
- Package version: 1.3.8106
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
## Requirements.
Python 3.7+
## Installation & Usage
### pip install
```sh
pip install ourskyai_astro_api
```
(you may need to run `pip` with root permission: `sudo pip install ourskyai_astro_api`)
### Poetry install
If you manage dependencies with [poetry](https://python-poetry.org/) then you can add the SDK with:
```sh
poetry add ourskyai_astro_api
```
### Import the package
Then import the package:
```python
import ourskyai_astro_api
```
## Getting Started
Please follow the [installation procedure](#installation--usage) and then run the following:
```python
import os
import ourskyai_astro_api
from ourskyai_astro_api.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.prod.oursky.ai
# See configuration.py for a list of all supported configuration parameters.
configuration = ourskyai_astro_api.Configuration(
host = "https://api.prod.oursky.ai"
)
# 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: BearerToken
configuration = ourskyai_astro_api.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with ourskyai_astro_api.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ourskyai_astro_api.DefaultApi(api_client)
model = 'model_example' # str | (optional)
pixel_size_microns = 3.4 # float | (optional)
pixels_x = 56 # int | (optional)
pixels_y = 56 # int | (optional)
megapixels = 3.4 # float | (optional)
chilled = True # bool | (optional)
adc_bit_depth = 56 # int | (optional)
is_color = True # bool | (optional)
try:
api_response = api_instance.v1_camera_match(model=model, pixel_size_microns=pixel_size_microns, pixels_x=pixels_x, pixels_y=pixels_y, megapixels=megapixels, chilled=chilled, adc_bit_depth=adc_bit_depth, is_color=is_color)
print("The response of DefaultApi->v1_camera_match:\n")
pprint(api_response)
except ApiException as e:
print("Exception when calling DefaultApi->v1_camera_match: %s\n" % e)
```
## Documentation for API Endpoints
All URIs are relative to *https://api.prod.oursky.ai/docs/astro*
<a id="documentation-for-authorization"></a>
## Documentation For Authorization
Authentication schemes defined for the API:
<a id="BearerToken"></a>
### BearerToken
- **Type**: Bearer authentication
<a id="Roles"></a>
### Roles
## Author
Raw data
{
"_id": null,
"home_page": "https://github.com/GIT_USER_ID/GIT_REPO_ID",
"name": "ourskyai_astro_api",
"maintainer": null,
"docs_url": null,
"requires_python": "<4.0,>=3.7",
"maintainer_email": null,
"keywords": "OpenAPI, OpenAPI-Generator, OurSky Astro",
"author": "OpenAPI Generator Community",
"author_email": "team@openapitools.org",
"download_url": "https://files.pythonhosted.org/packages/0e/1d/7d0f6f9f8cc21869f7f8ea5f258987ddb16a3da604c3c07702549fb32e0d/ourskyai_astro_api-1.3.8106.tar.gz",
"platform": null,
"description": "# ourskyai-astro-api\nNo description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 1.3.8106\n- Package version: 1.3.8106\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 ourskyai_astro_api\n```\n(you may need to run `pip` with root permission: `sudo pip install ourskyai_astro_api`)\n\n### Poetry install\nIf you manage dependencies with [poetry](https://python-poetry.org/) then you can add the SDK with:\n\n```sh\npoetry add ourskyai_astro_api\n```\n\n### Import the package\n\nThen import the package:\n```python\nimport ourskyai_astro_api\n```\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\n\nimport os\nimport ourskyai_astro_api\nfrom ourskyai_astro_api.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to https://api.prod.oursky.ai\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = ourskyai_astro_api.Configuration(\n host = \"https://api.prod.oursky.ai\"\n)\n\n# The client must configure the authentication and authorization parameters\n# in accordance with the API server security policy.\n# Examples for each auth method are provided below, use the example that\n# satisfies your auth use case.\n\n# Configure Bearer authorization: BearerToken\nconfiguration = ourskyai_astro_api.Configuration(\n access_token = os.environ[\"BEARER_TOKEN\"]\n)\n\n\n# Enter a context with an instance of the API client\nwith ourskyai_astro_api.ApiClient(configuration) as api_client:\n # Create an instance of the API class\n api_instance = ourskyai_astro_api.DefaultApi(api_client)\n model = 'model_example' # str | (optional)\n pixel_size_microns = 3.4 # float | (optional)\n pixels_x = 56 # int | (optional)\n pixels_y = 56 # int | (optional)\n megapixels = 3.4 # float | (optional)\n chilled = True # bool | (optional)\n adc_bit_depth = 56 # int | (optional)\n is_color = True # bool | (optional)\n\n try:\n api_response = api_instance.v1_camera_match(model=model, pixel_size_microns=pixel_size_microns, pixels_x=pixels_x, pixels_y=pixels_y, megapixels=megapixels, chilled=chilled, adc_bit_depth=adc_bit_depth, is_color=is_color)\n print(\"The response of DefaultApi->v1_camera_match:\\n\")\n pprint(api_response)\n except ApiException as e:\n print(\"Exception when calling DefaultApi->v1_camera_match: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://api.prod.oursky.ai/docs/astro*\n\n<a id=\"documentation-for-authorization\"></a>\n## Documentation For Authorization\n\n\nAuthentication schemes defined for the API:\n<a id=\"BearerToken\"></a>\n### BearerToken\n\n- **Type**: Bearer authentication\n\n<a id=\"Roles\"></a>\n### Roles\n\n\n\n## Author\n\n\n",
"bugtrack_url": null,
"license": "NoLicense",
"summary": "OurSky Astro",
"version": "1.3.8106",
"project_urls": {
"Homepage": "https://github.com/GIT_USER_ID/GIT_REPO_ID",
"Repository": "https://github.com/GIT_USER_ID/GIT_REPO_ID"
},
"split_keywords": [
"openapi",
" openapi-generator",
" oursky astro"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "d54df5ea63962e8f0790105eb4d52c58efc4c81bdfd31731b5b5067ddbbc3449",
"md5": "d55da0b3bb6378ff086de406b8847ac1",
"sha256": "b54cc837af33378580df788de862f0360d55f66b835fa8917db9c310572309e3"
},
"downloads": -1,
"filename": "ourskyai_astro_api-1.3.8106-py3-none-any.whl",
"has_sig": false,
"md5_digest": "d55da0b3bb6378ff086de406b8847ac1",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4.0,>=3.7",
"size": 115033,
"upload_time": "2025-09-12T05:01:28",
"upload_time_iso_8601": "2025-09-12T05:01:28.487436Z",
"url": "https://files.pythonhosted.org/packages/d5/4d/f5ea63962e8f0790105eb4d52c58efc4c81bdfd31731b5b5067ddbbc3449/ourskyai_astro_api-1.3.8106-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0e1d7d0f6f9f8cc21869f7f8ea5f258987ddb16a3da604c3c07702549fb32e0d",
"md5": "d27c7cf3151ccb48f18e90525f75cefa",
"sha256": "6c7c8b3ec35fd2b3038c0a2e45f058c31a697e3c2a158706a9f3d1468449c6f2"
},
"downloads": -1,
"filename": "ourskyai_astro_api-1.3.8106.tar.gz",
"has_sig": false,
"md5_digest": "d27c7cf3151ccb48f18e90525f75cefa",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0,>=3.7",
"size": 61553,
"upload_time": "2025-09-12T05:01:30",
"upload_time_iso_8601": "2025-09-12T05:01:30.541423Z",
"url": "https://files.pythonhosted.org/packages/0e/1d/7d0f6f9f8cc21869f7f8ea5f258987ddb16a3da604c3c07702549fb32e0d/ourskyai_astro_api-1.3.8106.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-09-12 05:01:30",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "GIT_USER_ID",
"github_project": "GIT_REPO_ID",
"github_not_found": true,
"lcname": "ourskyai_astro_api"
}