diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 000000000..e69de29bb diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index de178a6b0..9e2911f2a 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -5,10 +5,12 @@ on: paths: - '**.py' - .github/workflows/build-test.yml + - 'pyproject.toml' pull_request: paths: - '**.py' - .github/workflows/build-test.yml + - 'pyproject.toml' jobs: build-test: diff --git a/.github/workflows/generate-docs.yml b/.github/workflows/generate-docs.yml index f175a9054..fc6b150e4 100644 --- a/.github/workflows/generate-docs.yml +++ b/.github/workflows/generate-docs.yml @@ -9,12 +9,6 @@ on: - '**.rst' - '**.py' - .github/workflows/generate-docs.yml - pull_request: - paths: - - docs/conf.py - - '**.rst' - - '**.py' - - .github/workflows/generate-docs.yml jobs: generate-docs: diff --git a/.github/workflows/update-spec-for-docs.yml b/.github/workflows/update-spec-for-docs.yml new file mode 100644 index 000000000..11205d814 --- /dev/null +++ b/.github/workflows/update-spec-for-docs.yml @@ -0,0 +1,69 @@ +on: + push: + tags: + - v* + pull_request: + paths: + - .github/workflows/update-spec-for-docs.yml + workflow_dispatch: +name: update spec for docs +concurrency: + group: docs-${{ github.ref }} + cancel-in-progress: true +jobs: + update-spec: + name: update-spec + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-go@v2 + with: + go-version: '1.x' + - name: make generate + shell: bash + run: | + make generate + # Ensure no files changed. + - name: Ensure no files changed + shell: bash + run: | + if [[ `git status --porcelain` ]]; then + echo "Files changed, exiting"; + exit 1; + else + # No changes + echo "No files changed, proceeding"; + fi + # Checkout the docs repo since we will want to update the files there. + - uses: actions/checkout@v2 + with: + repository: 'kittycad/docs' + path: 'docs' + token: ${{secrets.PAT_GITHUB}} + - name: move spec to docs + shell: bash + run: | + rm docs/spec.json || true + cp spec.json docs/spec.json + - name: commit the changes in the docs repo + shell: bash + run: | + export VERSION=$(cat VERSION.txt); + cd docs + git config --local user.email "github-actions[bot]@users.noreply.github.com" + git config --local user.name "github-actions[bot]" + git add . + git commit -am "YOYO NEW SPEC DOCS ${VERSION}!" || exit 0 + git fetch origin + git rebase origin/main || exit 0 + export NEW_BRANCH="update-spec-${VERSION}" + git checkout -b "$NEW_BRANCH" + git push -f origin "$NEW_BRANCH" + gh pr create --title "Update lang spec docs for ${VERSION}" \ + --body "Updating the generated docs for go lang" \ + --head "$NEW_BRANCH" \ + --base main || true + env: + GITHUB_TOKEN: ${{secrets.PAT_GITHUB}} + + diff --git a/Dockerfile b/Dockerfile index f568a07a2..cbad6134a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,13 @@ FROM python:latest RUN pip install \ - openapi-python-client + poetry + +WORKDIR /usr/src/ + +COPY . /usr/src/ + +RUN poetry install # Set the default command to bash. CMD ["bash"] diff --git a/Makefile b/Makefile index 1dc48f391..f239ef3bf 100644 --- a/Makefile +++ b/Makefile @@ -10,14 +10,21 @@ endif VERSION := $(shell toml get $(CURDIR)/pyproject.toml tool.poetry.version | jq -r .) .PHONY: generate -generate: docker-image +generate: docker-image ## Generate the api client. docker run --rm -i $(DOCKER_FLAGS) \ --name python-generator \ - -v $(CURDIR):/usr/kittycad \ - --workdir /usr \ - $(DOCKER_IMAGE_NAME) openapi-python-client update \ - --url https://api.kittycad.io \ - --config /usr/kittycad/config.yml + -v $(CURDIR):/usr/src \ + --workdir /usr/src \ + $(DOCKER_IMAGE_NAME) sh -c 'poetry run python generate/generate.py && poetry run autopep8 --in-place --aggressive --aggressive kittycad/models/*.py && poetry run autopep8 --in-place --aggressive --aggressive kittycad/api/*.py && poetry run autopep8 --in-place --aggressive --aggressive kittycad/*.py && poetry run autopep8 --in-place --aggressive --aggressive generate/*.py' + +.PHONY: shell +shell: docker-image ## Pop into a shell in the docker image. + docker run --rm -i $(DOCKER_FLAGS) \ + --name python-generator-shell \ + -v $(CURDIR):/usr/src \ + --workdir /usr/src \ + $(DOCKER_IMAGE_NAME) /bin/bash + .PHONY: docker-image docker-image: diff --git a/README.md b/README.md index f06080239..27511fc21 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,6 @@ The Python API client for KittyCAD. -This is generated from -[openapi-generators/openapi-python-client](https://github.com/openapi-generators/openapi-python-client). - - [PyPI](https://pypi.org/project/kittycad/) - [Python docs](https://python.api.docs.kittycad.io/) - [KittyCAD API Docs](https://docs.kittycad.io/?lang=python) @@ -26,44 +23,3 @@ $ make generate Please do not change the code directly since it is generated. PRs that change the code directly will be automatically closed by a bot. - -## Usage -First, create an authenticated client: - -```python -from kittycad import AuthenticatedClient - -client = AuthenticatedClient(token="your_token") -``` - -If you want to use the environment variable `KITTYCAD_API_TOKEN` to do -authentication and not pass one to the client, do the following: - -```python -from kittycad import AuthenticatedClientFromEnv - -client = AuthenticatedClientFromEnv() -``` - -Now call your endpoint and use your models: - -```python -from kittycad.models import AuthSession -from kittycad.api.meta import meta_debug_session -from kittycad.types import Response - -session: AuthSession = meta_debug_session.sync(client=client) -# or if you need more info (e.g. status_code) -response: Response[AuthSession] = meta_debug_session.sync_detailed(client=client) -``` - -Or do the same thing with an async version: - -```python -from kittycad.models import AuthSession -from kittycad.api.meta import meta_debug_session -from kittycad.types import Response - -session: AuthSession = await meta_debug_session.asyncio(client=client) -response: Response[AuthSession] = await meta_debug_session.asyncio_detailed(client=client) -``` diff --git a/config.yml b/config.yml deleted file mode 100644 index 53f8f63da..000000000 --- a/config.yml +++ /dev/null @@ -1,2 +0,0 @@ -project_name_override: kittycad -package_name_override: kittycad diff --git a/docs/api/kittycad.AuthenticatedClient.rst b/docs/api/kittycad.ClientFromEnv.rst similarity index 60% rename from docs/api/kittycad.AuthenticatedClient.rst rename to docs/api/kittycad.ClientFromEnv.rst index 7e31ef30c..0a8a3026c 100644 --- a/docs/api/kittycad.AuthenticatedClient.rst +++ b/docs/api/kittycad.ClientFromEnv.rst @@ -1,16 +1,16 @@ -AuthenticatedClient -=================== +ClientFromEnv +============= .. currentmodule:: kittycad -.. autoclass:: AuthenticatedClient +.. autoclass:: ClientFromEnv :show-inheritance: .. rubric:: Methods Summary .. autosummary:: - ~AuthenticatedClient.get_headers + ~ClientFromEnv.get_headers .. rubric:: Methods Documentation diff --git a/docs/api/kittycad.api.file.file_conversion_by_id.asyncio.rst b/docs/api/kittycad.api.file.file_conversion_by_id.asyncio.rst deleted file mode 100644 index efc3f7d9b..000000000 --- a/docs/api/kittycad.api.file.file_conversion_by_id.asyncio.rst +++ /dev/null @@ -1,6 +0,0 @@ -asyncio -======= - -.. currentmodule:: kittycad.api.file.file_conversion_by_id - -.. autofunction:: asyncio diff --git a/docs/api/kittycad.api.file.file_conversion_by_id.asyncio_detailed.rst b/docs/api/kittycad.api.file.file_conversion_by_id.asyncio_detailed.rst deleted file mode 100644 index b50ec2a6e..000000000 --- a/docs/api/kittycad.api.file.file_conversion_by_id.asyncio_detailed.rst +++ /dev/null @@ -1,6 +0,0 @@ -asyncio_detailed -================ - -.. currentmodule:: kittycad.api.file.file_conversion_by_id - -.. autofunction:: asyncio_detailed diff --git a/docs/api/kittycad.api.file.file_conversion_by_id.sync.rst b/docs/api/kittycad.api.file.file_conversion_by_id.sync.rst deleted file mode 100644 index 1dc4703f5..000000000 --- a/docs/api/kittycad.api.file.file_conversion_by_id.sync.rst +++ /dev/null @@ -1,6 +0,0 @@ -sync -==== - -.. currentmodule:: kittycad.api.file.file_conversion_by_id - -.. autofunction:: sync diff --git a/docs/api/kittycad.api.file.file_conversion_by_id.sync_detailed.rst b/docs/api/kittycad.api.file.file_conversion_by_id.sync_detailed.rst deleted file mode 100644 index 76c6953a9..000000000 --- a/docs/api/kittycad.api.file.file_conversion_by_id.sync_detailed.rst +++ /dev/null @@ -1,6 +0,0 @@ -sync_detailed -============= - -.. currentmodule:: kittycad.api.file.file_conversion_by_id - -.. autofunction:: sync_detailed diff --git a/docs/api/kittycad.api.file.file_conversion_by_id_with_base64_helper.asyncio.rst b/docs/api/kittycad.api.file.file_conversion_by_id_with_base64_helper.asyncio.rst deleted file mode 100644 index f3b3406e6..000000000 --- a/docs/api/kittycad.api.file.file_conversion_by_id_with_base64_helper.asyncio.rst +++ /dev/null @@ -1,6 +0,0 @@ -asyncio -======= - -.. currentmodule:: kittycad.api.file.file_conversion_by_id_with_base64_helper - -.. autofunction:: asyncio diff --git a/docs/api/kittycad.api.file.file_conversion_by_id_with_base64_helper.sync.rst b/docs/api/kittycad.api.file.file_conversion_by_id_with_base64_helper.sync.rst deleted file mode 100644 index ee54bd3ec..000000000 --- a/docs/api/kittycad.api.file.file_conversion_by_id_with_base64_helper.sync.rst +++ /dev/null @@ -1,6 +0,0 @@ -sync -==== - -.. currentmodule:: kittycad.api.file.file_conversion_by_id_with_base64_helper - -.. autofunction:: sync diff --git a/docs/api/kittycad.api.file.file_convert.asyncio.rst b/docs/api/kittycad.api.file.file_convert.asyncio.rst deleted file mode 100644 index ed1b3b8b5..000000000 --- a/docs/api/kittycad.api.file.file_convert.asyncio.rst +++ /dev/null @@ -1,6 +0,0 @@ -asyncio -======= - -.. currentmodule:: kittycad.api.file.file_convert - -.. autofunction:: asyncio diff --git a/docs/api/kittycad.api.file.file_convert.asyncio_detailed.rst b/docs/api/kittycad.api.file.file_convert.asyncio_detailed.rst deleted file mode 100644 index ba677522c..000000000 --- a/docs/api/kittycad.api.file.file_convert.asyncio_detailed.rst +++ /dev/null @@ -1,6 +0,0 @@ -asyncio_detailed -================ - -.. currentmodule:: kittycad.api.file.file_convert - -.. autofunction:: asyncio_detailed diff --git a/docs/api/kittycad.api.file.file_convert.sync.rst b/docs/api/kittycad.api.file.file_convert.sync.rst deleted file mode 100644 index 4d9dccbac..000000000 --- a/docs/api/kittycad.api.file.file_convert.sync.rst +++ /dev/null @@ -1,6 +0,0 @@ -sync -==== - -.. currentmodule:: kittycad.api.file.file_convert - -.. autofunction:: sync diff --git a/docs/api/kittycad.api.file.file_convert.sync_detailed.rst b/docs/api/kittycad.api.file.file_convert.sync_detailed.rst deleted file mode 100644 index bba2fd7da..000000000 --- a/docs/api/kittycad.api.file.file_convert.sync_detailed.rst +++ /dev/null @@ -1,6 +0,0 @@ -sync_detailed -============= - -.. currentmodule:: kittycad.api.file.file_convert - -.. autofunction:: sync_detailed diff --git a/docs/api/kittycad.api.file.file_convert_with_base64_helper.asyncio.rst b/docs/api/kittycad.api.file.file_convert_with_base64_helper.asyncio.rst deleted file mode 100644 index 15320af7e..000000000 --- a/docs/api/kittycad.api.file.file_convert_with_base64_helper.asyncio.rst +++ /dev/null @@ -1,6 +0,0 @@ -asyncio -======= - -.. currentmodule:: kittycad.api.file.file_convert_with_base64_helper - -.. autofunction:: asyncio diff --git a/docs/api/kittycad.api.file.file_convert_with_base64_helper.sync.rst b/docs/api/kittycad.api.file.file_convert_with_base64_helper.sync.rst deleted file mode 100644 index 796616615..000000000 --- a/docs/api/kittycad.api.file.file_convert_with_base64_helper.sync.rst +++ /dev/null @@ -1,6 +0,0 @@ -sync -==== - -.. currentmodule:: kittycad.api.file.file_convert_with_base64_helper - -.. autofunction:: sync diff --git a/docs/api/kittycad.api.meta.meta_debug_instance.asyncio.rst b/docs/api/kittycad.api.meta.meta_debug_instance.asyncio.rst deleted file mode 100644 index 124d5387e..000000000 --- a/docs/api/kittycad.api.meta.meta_debug_instance.asyncio.rst +++ /dev/null @@ -1,6 +0,0 @@ -asyncio -======= - -.. currentmodule:: kittycad.api.meta.meta_debug_instance - -.. autofunction:: asyncio diff --git a/docs/api/kittycad.api.meta.meta_debug_instance.asyncio_detailed.rst b/docs/api/kittycad.api.meta.meta_debug_instance.asyncio_detailed.rst deleted file mode 100644 index a9d9c247b..000000000 --- a/docs/api/kittycad.api.meta.meta_debug_instance.asyncio_detailed.rst +++ /dev/null @@ -1,6 +0,0 @@ -asyncio_detailed -================ - -.. currentmodule:: kittycad.api.meta.meta_debug_instance - -.. autofunction:: asyncio_detailed diff --git a/docs/api/kittycad.api.meta.meta_debug_instance.sync.rst b/docs/api/kittycad.api.meta.meta_debug_instance.sync.rst deleted file mode 100644 index 22045326b..000000000 --- a/docs/api/kittycad.api.meta.meta_debug_instance.sync.rst +++ /dev/null @@ -1,6 +0,0 @@ -sync -==== - -.. currentmodule:: kittycad.api.meta.meta_debug_instance - -.. autofunction:: sync diff --git a/docs/api/kittycad.api.meta.meta_debug_instance.sync_detailed.rst b/docs/api/kittycad.api.meta.meta_debug_instance.sync_detailed.rst deleted file mode 100644 index d00e6cbae..000000000 --- a/docs/api/kittycad.api.meta.meta_debug_instance.sync_detailed.rst +++ /dev/null @@ -1,6 +0,0 @@ -sync_detailed -============= - -.. currentmodule:: kittycad.api.meta.meta_debug_instance - -.. autofunction:: sync_detailed diff --git a/docs/api/kittycad.api.meta.meta_debug_session.asyncio.rst b/docs/api/kittycad.api.meta.meta_debug_session.asyncio.rst deleted file mode 100644 index 0b0792c8b..000000000 --- a/docs/api/kittycad.api.meta.meta_debug_session.asyncio.rst +++ /dev/null @@ -1,6 +0,0 @@ -asyncio -======= - -.. currentmodule:: kittycad.api.meta.meta_debug_session - -.. autofunction:: asyncio diff --git a/docs/api/kittycad.api.meta.meta_debug_session.asyncio_detailed.rst b/docs/api/kittycad.api.meta.meta_debug_session.asyncio_detailed.rst deleted file mode 100644 index d98aba1c0..000000000 --- a/docs/api/kittycad.api.meta.meta_debug_session.asyncio_detailed.rst +++ /dev/null @@ -1,6 +0,0 @@ -asyncio_detailed -================ - -.. currentmodule:: kittycad.api.meta.meta_debug_session - -.. autofunction:: asyncio_detailed diff --git a/docs/api/kittycad.api.meta.meta_debug_session.sync.rst b/docs/api/kittycad.api.meta.meta_debug_session.sync.rst deleted file mode 100644 index 00dd7d4d2..000000000 --- a/docs/api/kittycad.api.meta.meta_debug_session.sync.rst +++ /dev/null @@ -1,6 +0,0 @@ -sync -==== - -.. currentmodule:: kittycad.api.meta.meta_debug_session - -.. autofunction:: sync diff --git a/docs/api/kittycad.api.meta.meta_debug_session.sync_detailed.rst b/docs/api/kittycad.api.meta.meta_debug_session.sync_detailed.rst deleted file mode 100644 index b221a1a54..000000000 --- a/docs/api/kittycad.api.meta.meta_debug_session.sync_detailed.rst +++ /dev/null @@ -1,6 +0,0 @@ -sync_detailed -============= - -.. currentmodule:: kittycad.api.meta.meta_debug_session - -.. autofunction:: sync_detailed diff --git a/docs/api/kittycad.api.meta.ping.asyncio.rst b/docs/api/kittycad.api.meta.ping.asyncio.rst deleted file mode 100644 index e2fc02127..000000000 --- a/docs/api/kittycad.api.meta.ping.asyncio.rst +++ /dev/null @@ -1,6 +0,0 @@ -asyncio -======= - -.. currentmodule:: kittycad.api.meta.ping - -.. autofunction:: asyncio diff --git a/docs/api/kittycad.api.meta.ping.asyncio_detailed.rst b/docs/api/kittycad.api.meta.ping.asyncio_detailed.rst deleted file mode 100644 index c7e723f66..000000000 --- a/docs/api/kittycad.api.meta.ping.asyncio_detailed.rst +++ /dev/null @@ -1,6 +0,0 @@ -asyncio_detailed -================ - -.. currentmodule:: kittycad.api.meta.ping - -.. autofunction:: asyncio_detailed diff --git a/docs/api/kittycad.api.meta.ping.sync.rst b/docs/api/kittycad.api.meta.ping.sync.rst deleted file mode 100644 index 23cbdd0ba..000000000 --- a/docs/api/kittycad.api.meta.ping.sync.rst +++ /dev/null @@ -1,6 +0,0 @@ -sync -==== - -.. currentmodule:: kittycad.api.meta.ping - -.. autofunction:: sync diff --git a/docs/api/kittycad.api.meta.ping.sync_detailed.rst b/docs/api/kittycad.api.meta.ping.sync_detailed.rst deleted file mode 100644 index 85808280f..000000000 --- a/docs/api/kittycad.api.meta.ping.sync_detailed.rst +++ /dev/null @@ -1,6 +0,0 @@ -sync_detailed -============= - -.. currentmodule:: kittycad.api.meta.ping - -.. autofunction:: sync_detailed diff --git a/docs/api/kittycad.client.AuthenticatedClient.rst b/docs/api/kittycad.client.AuthenticatedClient.rst deleted file mode 100644 index b2fa7996b..000000000 --- a/docs/api/kittycad.client.AuthenticatedClient.rst +++ /dev/null @@ -1,17 +0,0 @@ -AuthenticatedClient -=================== - -.. currentmodule:: kittycad.client - -.. autoclass:: AuthenticatedClient - :show-inheritance: - - .. rubric:: Methods Summary - - .. autosummary:: - - ~AuthenticatedClient.get_headers - - .. rubric:: Methods Documentation - - .. automethod:: get_headers diff --git a/docs/api/kittycad.client.AuthenticatedClientFromEnv.rst b/docs/api/kittycad.client.AuthenticatedClientFromEnv.rst deleted file mode 100644 index e7b88b47e..000000000 --- a/docs/api/kittycad.client.AuthenticatedClientFromEnv.rst +++ /dev/null @@ -1,17 +0,0 @@ -AuthenticatedClientFromEnv -========================== - -.. currentmodule:: kittycad.client - -.. autoclass:: AuthenticatedClientFromEnv - :show-inheritance: - - .. rubric:: Methods Summary - - .. autosummary:: - - ~AuthenticatedClientFromEnv.get_headers - - .. rubric:: Methods Documentation - - .. automethod:: get_headers diff --git a/docs/api/kittycad.client.Client.rst b/docs/api/kittycad.client.Client.rst deleted file mode 100644 index ce0a7f940..000000000 --- a/docs/api/kittycad.client.Client.rst +++ /dev/null @@ -1,27 +0,0 @@ -Client -====== - -.. currentmodule:: kittycad.client - -.. autoclass:: Client - :show-inheritance: - - .. rubric:: Methods Summary - - .. autosummary:: - - ~Client.get_cookies - ~Client.get_headers - ~Client.get_timeout - ~Client.with_cookies - ~Client.with_headers - ~Client.with_timeout - - .. rubric:: Methods Documentation - - .. automethod:: get_cookies - .. automethod:: get_headers - .. automethod:: get_timeout - .. automethod:: with_cookies - .. automethod:: with_headers - .. automethod:: with_timeout diff --git a/docs/api/kittycad.models.AuthSession.rst b/docs/api/kittycad.models.AuthSession.rst deleted file mode 100644 index 29c226d55..000000000 --- a/docs/api/kittycad.models.AuthSession.rst +++ /dev/null @@ -1,29 +0,0 @@ -AuthSession -=========== - -.. currentmodule:: kittycad.models - -.. autoclass:: AuthSession - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~AuthSession.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~AuthSession.from_dict - ~AuthSession.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/api/kittycad.models.Environment.rst b/docs/api/kittycad.models.Environment.rst deleted file mode 100644 index 58f41549b..000000000 --- a/docs/api/kittycad.models.Environment.rst +++ /dev/null @@ -1,21 +0,0 @@ -Environment -=========== - -.. currentmodule:: kittycad.models - -.. autoclass:: Environment - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~Environment.DEVELOPMENT - ~Environment.PREVIEW - ~Environment.PRODUCTION - - .. rubric:: Attributes Documentation - - .. autoattribute:: DEVELOPMENT - .. autoattribute:: PREVIEW - .. autoattribute:: PRODUCTION diff --git a/docs/api/kittycad.models.ErrorMessage.rst b/docs/api/kittycad.models.ErrorMessage.rst deleted file mode 100644 index b61c2b900..000000000 --- a/docs/api/kittycad.models.ErrorMessage.rst +++ /dev/null @@ -1,29 +0,0 @@ -ErrorMessage -============ - -.. currentmodule:: kittycad.models - -.. autoclass:: ErrorMessage - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~ErrorMessage.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~ErrorMessage.from_dict - ~ErrorMessage.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/api/kittycad.models.FileConversion.rst b/docs/api/kittycad.models.FileConversion.rst deleted file mode 100644 index ea7024539..000000000 --- a/docs/api/kittycad.models.FileConversion.rst +++ /dev/null @@ -1,29 +0,0 @@ -FileConversion -============== - -.. currentmodule:: kittycad.models - -.. autoclass:: FileConversion - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~FileConversion.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~FileConversion.from_dict - ~FileConversion.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/api/kittycad.models.FileConversionStatus.rst b/docs/api/kittycad.models.FileConversionStatus.rst deleted file mode 100644 index c75f1fd41..000000000 --- a/docs/api/kittycad.models.FileConversionStatus.rst +++ /dev/null @@ -1,25 +0,0 @@ -FileConversionStatus -==================== - -.. currentmodule:: kittycad.models - -.. autoclass:: FileConversionStatus - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~FileConversionStatus.COMPLETED - ~FileConversionStatus.FAILED - ~FileConversionStatus.IN_PROGRESS - ~FileConversionStatus.QUEUED - ~FileConversionStatus.UPLOADED - - .. rubric:: Attributes Documentation - - .. autoattribute:: COMPLETED - .. autoattribute:: FAILED - .. autoattribute:: IN_PROGRESS - .. autoattribute:: QUEUED - .. autoattribute:: UPLOADED diff --git a/docs/api/kittycad.models.InstanceMetadata.rst b/docs/api/kittycad.models.InstanceMetadata.rst deleted file mode 100644 index 86feaea81..000000000 --- a/docs/api/kittycad.models.InstanceMetadata.rst +++ /dev/null @@ -1,29 +0,0 @@ -InstanceMetadata -================ - -.. currentmodule:: kittycad.models - -.. autoclass:: InstanceMetadata - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~InstanceMetadata.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~InstanceMetadata.from_dict - ~InstanceMetadata.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/api/kittycad.models.Message.rst b/docs/api/kittycad.models.Message.rst deleted file mode 100644 index c6a5d79e4..000000000 --- a/docs/api/kittycad.models.Message.rst +++ /dev/null @@ -1,29 +0,0 @@ -Message -======= - -.. currentmodule:: kittycad.models - -.. autoclass:: Message - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~Message.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~Message.from_dict - ~Message.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/api/kittycad.models.ValidFileTypes.rst b/docs/api/kittycad.models.ValidFileTypes.rst deleted file mode 100644 index fb0585ce5..000000000 --- a/docs/api/kittycad.models.ValidFileTypes.rst +++ /dev/null @@ -1,25 +0,0 @@ -ValidFileTypes -============== - -.. currentmodule:: kittycad.models - -.. autoclass:: ValidFileTypes - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~ValidFileTypes.DWG - ~ValidFileTypes.DXF - ~ValidFileTypes.OBJ - ~ValidFileTypes.STEP - ~ValidFileTypes.STL - - .. rubric:: Attributes Documentation - - .. autoattribute:: DWG - .. autoattribute:: DXF - .. autoattribute:: OBJ - .. autoattribute:: STEP - .. autoattribute:: STL diff --git a/docs/api/kittycad.models.auth_session.AuthSession.rst b/docs/api/kittycad.models.auth_session.AuthSession.rst deleted file mode 100644 index 73d9cd14e..000000000 --- a/docs/api/kittycad.models.auth_session.AuthSession.rst +++ /dev/null @@ -1,29 +0,0 @@ -AuthSession -=========== - -.. currentmodule:: kittycad.models.auth_session - -.. autoclass:: AuthSession - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~AuthSession.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~AuthSession.from_dict - ~AuthSession.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/api/kittycad.models.environment.Environment.rst b/docs/api/kittycad.models.environment.Environment.rst deleted file mode 100644 index ad4190878..000000000 --- a/docs/api/kittycad.models.environment.Environment.rst +++ /dev/null @@ -1,21 +0,0 @@ -Environment -=========== - -.. currentmodule:: kittycad.models.environment - -.. autoclass:: Environment - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~Environment.DEVELOPMENT - ~Environment.PREVIEW - ~Environment.PRODUCTION - - .. rubric:: Attributes Documentation - - .. autoattribute:: DEVELOPMENT - .. autoattribute:: PREVIEW - .. autoattribute:: PRODUCTION diff --git a/docs/api/kittycad.models.error_message.ErrorMessage.rst b/docs/api/kittycad.models.error_message.ErrorMessage.rst deleted file mode 100644 index aa2052082..000000000 --- a/docs/api/kittycad.models.error_message.ErrorMessage.rst +++ /dev/null @@ -1,29 +0,0 @@ -ErrorMessage -============ - -.. currentmodule:: kittycad.models.error_message - -.. autoclass:: ErrorMessage - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~ErrorMessage.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~ErrorMessage.from_dict - ~ErrorMessage.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/api/kittycad.models.file_conversion.FileConversion.rst b/docs/api/kittycad.models.file_conversion.FileConversion.rst deleted file mode 100644 index 4bcc324ff..000000000 --- a/docs/api/kittycad.models.file_conversion.FileConversion.rst +++ /dev/null @@ -1,29 +0,0 @@ -FileConversion -============== - -.. currentmodule:: kittycad.models.file_conversion - -.. autoclass:: FileConversion - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~FileConversion.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~FileConversion.from_dict - ~FileConversion.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/api/kittycad.models.file_conversion.FileConversionStatus.rst b/docs/api/kittycad.models.file_conversion.FileConversionStatus.rst deleted file mode 100644 index 088aa93d3..000000000 --- a/docs/api/kittycad.models.file_conversion.FileConversionStatus.rst +++ /dev/null @@ -1,25 +0,0 @@ -FileConversionStatus -==================== - -.. currentmodule:: kittycad.models.file_conversion - -.. autoclass:: FileConversionStatus - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~FileConversionStatus.COMPLETED - ~FileConversionStatus.FAILED - ~FileConversionStatus.IN_PROGRESS - ~FileConversionStatus.QUEUED - ~FileConversionStatus.UPLOADED - - .. rubric:: Attributes Documentation - - .. autoattribute:: COMPLETED - .. autoattribute:: FAILED - .. autoattribute:: IN_PROGRESS - .. autoattribute:: QUEUED - .. autoattribute:: UPLOADED diff --git a/docs/api/kittycad.models.file_conversion_status.FileConversionStatus.rst b/docs/api/kittycad.models.file_conversion_status.FileConversionStatus.rst deleted file mode 100644 index 367439298..000000000 --- a/docs/api/kittycad.models.file_conversion_status.FileConversionStatus.rst +++ /dev/null @@ -1,25 +0,0 @@ -FileConversionStatus -==================== - -.. currentmodule:: kittycad.models.file_conversion_status - -.. autoclass:: FileConversionStatus - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~FileConversionStatus.COMPLETED - ~FileConversionStatus.FAILED - ~FileConversionStatus.IN_PROGRESS - ~FileConversionStatus.QUEUED - ~FileConversionStatus.UPLOADED - - .. rubric:: Attributes Documentation - - .. autoattribute:: COMPLETED - .. autoattribute:: FAILED - .. autoattribute:: IN_PROGRESS - .. autoattribute:: QUEUED - .. autoattribute:: UPLOADED diff --git a/docs/api/kittycad.models.instance_metadata.InstanceMetadata.rst b/docs/api/kittycad.models.instance_metadata.InstanceMetadata.rst deleted file mode 100644 index f5aaa331f..000000000 --- a/docs/api/kittycad.models.instance_metadata.InstanceMetadata.rst +++ /dev/null @@ -1,29 +0,0 @@ -InstanceMetadata -================ - -.. currentmodule:: kittycad.models.instance_metadata - -.. autoclass:: InstanceMetadata - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~InstanceMetadata.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~InstanceMetadata.from_dict - ~InstanceMetadata.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/api/kittycad.models.message.Message.rst b/docs/api/kittycad.models.message.Message.rst deleted file mode 100644 index 30d39fc53..000000000 --- a/docs/api/kittycad.models.message.Message.rst +++ /dev/null @@ -1,29 +0,0 @@ -Message -======= - -.. currentmodule:: kittycad.models.message - -.. autoclass:: Message - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~Message.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~Message.from_dict - ~Message.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/api/kittycad.models.valid_file_types.ValidFileTypes.rst b/docs/api/kittycad.models.valid_file_types.ValidFileTypes.rst deleted file mode 100644 index f434f3a29..000000000 --- a/docs/api/kittycad.models.valid_file_types.ValidFileTypes.rst +++ /dev/null @@ -1,25 +0,0 @@ -ValidFileTypes -============== - -.. currentmodule:: kittycad.models.valid_file_types - -.. autoclass:: ValidFileTypes - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~ValidFileTypes.DWG - ~ValidFileTypes.DXF - ~ValidFileTypes.OBJ - ~ValidFileTypes.STEP - ~ValidFileTypes.STL - - .. rubric:: Attributes Documentation - - .. autoattribute:: DWG - .. autoattribute:: DXF - .. autoattribute:: OBJ - .. autoattribute:: STEP - .. autoattribute:: STL diff --git a/docs/api/kittycad.types.File.rst b/docs/api/kittycad.types.File.rst deleted file mode 100644 index 64f4625fe..000000000 --- a/docs/api/kittycad.types.File.rst +++ /dev/null @@ -1,17 +0,0 @@ -File -==== - -.. currentmodule:: kittycad.types - -.. autoclass:: File - :show-inheritance: - - .. rubric:: Methods Summary - - .. autosummary:: - - ~File.to_tuple - - .. rubric:: Methods Documentation - - .. automethod:: to_tuple diff --git a/docs/api/kittycad.types.Response.rst b/docs/api/kittycad.types.Response.rst deleted file mode 100644 index 98341b950..000000000 --- a/docs/api/kittycad.types.Response.rst +++ /dev/null @@ -1,7 +0,0 @@ -Response -======== - -.. currentmodule:: kittycad.types - -.. autoclass:: Response - :show-inheritance: diff --git a/docs/html/.buildinfo b/docs/html/.buildinfo index 6cd2ca24f..af2946fca 100644 --- a/docs/html/.buildinfo +++ b/docs/html/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: fedaf56120cb91b327d8a023250f850a +config: 74989a7dc76cd38543fd6db0578bbfeb tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/html/.doctrees/api/kittycad.AuthenticatedClient.doctree b/docs/html/.doctrees/api/kittycad.AuthenticatedClient.doctree deleted file mode 100644 index 002386e87..000000000 Binary files a/docs/html/.doctrees/api/kittycad.AuthenticatedClient.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.Client.doctree b/docs/html/.doctrees/api/kittycad.Client.doctree index 88199ff26..c4d681263 100644 Binary files a/docs/html/.doctrees/api/kittycad.Client.doctree and b/docs/html/.doctrees/api/kittycad.Client.doctree differ diff --git a/docs/html/.doctrees/api/kittycad.ClientFromEnv.doctree b/docs/html/.doctrees/api/kittycad.ClientFromEnv.doctree new file mode 100644 index 000000000..28a4ee989 Binary files /dev/null and b/docs/html/.doctrees/api/kittycad.ClientFromEnv.doctree differ diff --git a/docs/html/.doctrees/api/kittycad.api.file.file_conversion_by_id.asyncio.doctree b/docs/html/.doctrees/api/kittycad.api.file.file_conversion_by_id.asyncio.doctree deleted file mode 100644 index f93d10654..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.file.file_conversion_by_id.asyncio.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.file.file_conversion_by_id.asyncio_detailed.doctree b/docs/html/.doctrees/api/kittycad.api.file.file_conversion_by_id.asyncio_detailed.doctree deleted file mode 100644 index 941e38fcd..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.file.file_conversion_by_id.asyncio_detailed.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.file.file_conversion_by_id.sync.doctree b/docs/html/.doctrees/api/kittycad.api.file.file_conversion_by_id.sync.doctree deleted file mode 100644 index e6936a2a0..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.file.file_conversion_by_id.sync.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.file.file_conversion_by_id.sync_detailed.doctree b/docs/html/.doctrees/api/kittycad.api.file.file_conversion_by_id.sync_detailed.doctree deleted file mode 100644 index e50bf94c9..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.file.file_conversion_by_id.sync_detailed.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.file.file_conversion_by_id_with_base64_helper.asyncio.doctree b/docs/html/.doctrees/api/kittycad.api.file.file_conversion_by_id_with_base64_helper.asyncio.doctree deleted file mode 100644 index ee3276bea..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.file.file_conversion_by_id_with_base64_helper.asyncio.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.file.file_conversion_by_id_with_base64_helper.sync.doctree b/docs/html/.doctrees/api/kittycad.api.file.file_conversion_by_id_with_base64_helper.sync.doctree deleted file mode 100644 index 796cd07c3..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.file.file_conversion_by_id_with_base64_helper.sync.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.file.file_convert.asyncio.doctree b/docs/html/.doctrees/api/kittycad.api.file.file_convert.asyncio.doctree deleted file mode 100644 index a7867c73b..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.file.file_convert.asyncio.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.file.file_convert.asyncio_detailed.doctree b/docs/html/.doctrees/api/kittycad.api.file.file_convert.asyncio_detailed.doctree deleted file mode 100644 index 2307c5742..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.file.file_convert.asyncio_detailed.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.file.file_convert.sync.doctree b/docs/html/.doctrees/api/kittycad.api.file.file_convert.sync.doctree deleted file mode 100644 index 27d08ba4b..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.file.file_convert.sync.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.file.file_convert.sync_detailed.doctree b/docs/html/.doctrees/api/kittycad.api.file.file_convert.sync_detailed.doctree deleted file mode 100644 index b8fb2fc0f..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.file.file_convert.sync_detailed.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.file.file_convert_with_base64_helper.asyncio.doctree b/docs/html/.doctrees/api/kittycad.api.file.file_convert_with_base64_helper.asyncio.doctree deleted file mode 100644 index 0a34afdfd..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.file.file_convert_with_base64_helper.asyncio.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.file.file_convert_with_base64_helper.sync.doctree b/docs/html/.doctrees/api/kittycad.api.file.file_convert_with_base64_helper.sync.doctree deleted file mode 100644 index 621cfb156..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.file.file_convert_with_base64_helper.sync.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_instance.asyncio.doctree b/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_instance.asyncio.doctree deleted file mode 100644 index 48cf60149..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_instance.asyncio.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_instance.asyncio_detailed.doctree b/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_instance.asyncio_detailed.doctree deleted file mode 100644 index 58a680773..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_instance.asyncio_detailed.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_instance.sync.doctree b/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_instance.sync.doctree deleted file mode 100644 index 5f92eb1ba..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_instance.sync.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_instance.sync_detailed.doctree b/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_instance.sync_detailed.doctree deleted file mode 100644 index 38412a88e..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_instance.sync_detailed.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_session.asyncio.doctree b/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_session.asyncio.doctree deleted file mode 100644 index d5eaec671..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_session.asyncio.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_session.asyncio_detailed.doctree b/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_session.asyncio_detailed.doctree deleted file mode 100644 index c0558741d..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_session.asyncio_detailed.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_session.sync.doctree b/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_session.sync.doctree deleted file mode 100644 index 1852aeff0..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_session.sync.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_session.sync_detailed.doctree b/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_session.sync_detailed.doctree deleted file mode 100644 index 7c4ce6bb5..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.meta.meta_debug_session.sync_detailed.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.meta.ping.asyncio.doctree b/docs/html/.doctrees/api/kittycad.api.meta.ping.asyncio.doctree deleted file mode 100644 index db074cbfd..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.meta.ping.asyncio.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.meta.ping.asyncio_detailed.doctree b/docs/html/.doctrees/api/kittycad.api.meta.ping.asyncio_detailed.doctree deleted file mode 100644 index 9853546c0..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.meta.ping.asyncio_detailed.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.meta.ping.sync.doctree b/docs/html/.doctrees/api/kittycad.api.meta.ping.sync.doctree deleted file mode 100644 index 1cc99598f..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.meta.ping.sync.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.api.meta.ping.sync_detailed.doctree b/docs/html/.doctrees/api/kittycad.api.meta.ping.sync_detailed.doctree deleted file mode 100644 index eb562f6bc..000000000 Binary files a/docs/html/.doctrees/api/kittycad.api.meta.ping.sync_detailed.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.client.AuthenticatedClient.doctree b/docs/html/.doctrees/api/kittycad.client.AuthenticatedClient.doctree deleted file mode 100644 index 9db8f3582..000000000 Binary files a/docs/html/.doctrees/api/kittycad.client.AuthenticatedClient.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.client.AuthenticatedClientFromEnv.doctree b/docs/html/.doctrees/api/kittycad.client.AuthenticatedClientFromEnv.doctree deleted file mode 100644 index 92346f567..000000000 Binary files a/docs/html/.doctrees/api/kittycad.client.AuthenticatedClientFromEnv.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.client.Client.doctree b/docs/html/.doctrees/api/kittycad.client.Client.doctree deleted file mode 100644 index f8b39c06a..000000000 Binary files a/docs/html/.doctrees/api/kittycad.client.Client.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.models.AuthSession.doctree b/docs/html/.doctrees/api/kittycad.models.AuthSession.doctree deleted file mode 100644 index c345e17e6..000000000 Binary files a/docs/html/.doctrees/api/kittycad.models.AuthSession.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.models.Environment.doctree b/docs/html/.doctrees/api/kittycad.models.Environment.doctree deleted file mode 100644 index fb266537d..000000000 Binary files a/docs/html/.doctrees/api/kittycad.models.Environment.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.models.ErrorMessage.doctree b/docs/html/.doctrees/api/kittycad.models.ErrorMessage.doctree deleted file mode 100644 index a4a1f3b75..000000000 Binary files a/docs/html/.doctrees/api/kittycad.models.ErrorMessage.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.models.FileConversion.doctree b/docs/html/.doctrees/api/kittycad.models.FileConversion.doctree deleted file mode 100644 index 91dd91750..000000000 Binary files a/docs/html/.doctrees/api/kittycad.models.FileConversion.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.models.FileConversionStatus.doctree b/docs/html/.doctrees/api/kittycad.models.FileConversionStatus.doctree deleted file mode 100644 index a04157ffc..000000000 Binary files a/docs/html/.doctrees/api/kittycad.models.FileConversionStatus.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.models.InstanceMetadata.doctree b/docs/html/.doctrees/api/kittycad.models.InstanceMetadata.doctree deleted file mode 100644 index a027c9c3c..000000000 Binary files a/docs/html/.doctrees/api/kittycad.models.InstanceMetadata.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.models.Message.doctree b/docs/html/.doctrees/api/kittycad.models.Message.doctree deleted file mode 100644 index bf3e09778..000000000 Binary files a/docs/html/.doctrees/api/kittycad.models.Message.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.models.auth_session.AuthSession.doctree b/docs/html/.doctrees/api/kittycad.models.auth_session.AuthSession.doctree deleted file mode 100644 index 5f128c223..000000000 Binary files a/docs/html/.doctrees/api/kittycad.models.auth_session.AuthSession.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.models.environment.Environment.doctree b/docs/html/.doctrees/api/kittycad.models.environment.Environment.doctree deleted file mode 100644 index a71767fff..000000000 Binary files a/docs/html/.doctrees/api/kittycad.models.environment.Environment.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.models.error_message.ErrorMessage.doctree b/docs/html/.doctrees/api/kittycad.models.error_message.ErrorMessage.doctree deleted file mode 100644 index 465a2de4a..000000000 Binary files a/docs/html/.doctrees/api/kittycad.models.error_message.ErrorMessage.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.models.file_conversion.FileConversion.doctree b/docs/html/.doctrees/api/kittycad.models.file_conversion.FileConversion.doctree deleted file mode 100644 index 797fac064..000000000 Binary files a/docs/html/.doctrees/api/kittycad.models.file_conversion.FileConversion.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.models.file_conversion.FileConversionStatus.doctree b/docs/html/.doctrees/api/kittycad.models.file_conversion.FileConversionStatus.doctree deleted file mode 100644 index 0a4a2cf90..000000000 Binary files a/docs/html/.doctrees/api/kittycad.models.file_conversion.FileConversionStatus.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.models.file_conversion_status.FileConversionStatus.doctree b/docs/html/.doctrees/api/kittycad.models.file_conversion_status.FileConversionStatus.doctree deleted file mode 100644 index 2211bcdf2..000000000 Binary files a/docs/html/.doctrees/api/kittycad.models.file_conversion_status.FileConversionStatus.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.models.instance_metadata.InstanceMetadata.doctree b/docs/html/.doctrees/api/kittycad.models.instance_metadata.InstanceMetadata.doctree deleted file mode 100644 index 40daf51f1..000000000 Binary files a/docs/html/.doctrees/api/kittycad.models.instance_metadata.InstanceMetadata.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.models.message.Message.doctree b/docs/html/.doctrees/api/kittycad.models.message.Message.doctree deleted file mode 100644 index 6d690211b..000000000 Binary files a/docs/html/.doctrees/api/kittycad.models.message.Message.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.models.valid_file_types.ValidFileTypes.doctree b/docs/html/.doctrees/api/kittycad.models.valid_file_types.ValidFileTypes.doctree deleted file mode 100644 index 06a405116..000000000 Binary files a/docs/html/.doctrees/api/kittycad.models.valid_file_types.ValidFileTypes.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.types.File.doctree b/docs/html/.doctrees/api/kittycad.types.File.doctree deleted file mode 100644 index 8a7365f93..000000000 Binary files a/docs/html/.doctrees/api/kittycad.types.File.doctree and /dev/null differ diff --git a/docs/html/.doctrees/api/kittycad.types.Response.doctree b/docs/html/.doctrees/api/kittycad.types.Response.doctree deleted file mode 100644 index 249bc6ec6..000000000 Binary files a/docs/html/.doctrees/api/kittycad.types.Response.doctree and /dev/null differ diff --git a/docs/html/.doctrees/environment.pickle b/docs/html/.doctrees/environment.pickle index dd272ee47..8e726de0a 100644 Binary files a/docs/html/.doctrees/environment.pickle and b/docs/html/.doctrees/environment.pickle differ diff --git a/docs/html/.doctrees/index.doctree b/docs/html/.doctrees/index.doctree index edae28552..69d2c2231 100644 Binary files a/docs/html/.doctrees/index.doctree and b/docs/html/.doctrees/index.doctree differ diff --git a/docs/html/.doctrees/api/kittycad.models.ValidFileTypes.doctree b/docs/html/.doctrees/modules/kittycad.api.beta.doctree similarity index 52% rename from docs/html/.doctrees/api/kittycad.models.ValidFileTypes.doctree rename to docs/html/.doctrees/modules/kittycad.api.beta.doctree index 3a2b70143..8fe889670 100644 Binary files a/docs/html/.doctrees/api/kittycad.models.ValidFileTypes.doctree and b/docs/html/.doctrees/modules/kittycad.api.beta.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.api.doctree b/docs/html/.doctrees/modules/kittycad.api.doctree new file mode 100644 index 000000000..9e16f816f Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.api.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.api.file.doctree b/docs/html/.doctrees/modules/kittycad.api.file.doctree new file mode 100644 index 000000000..cfd28edb1 Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.api.file.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.api.file.file_conversion_status.doctree b/docs/html/.doctrees/modules/kittycad.api.file.file_conversion_status.doctree new file mode 100644 index 000000000..7bb44a8e5 Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.api.file.file_conversion_status.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.api.file.file_conversion_status_with_base64_helper.doctree b/docs/html/.doctrees/modules/kittycad.api.file.file_conversion_status_with_base64_helper.doctree new file mode 100644 index 000000000..674c4270c Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.api.file.file_conversion_status_with_base64_helper.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.api.file.post_file_conversion.doctree b/docs/html/.doctrees/modules/kittycad.api.file.post_file_conversion.doctree new file mode 100644 index 000000000..24cb97288 Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.api.file.post_file_conversion.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.api.file.post_file_conversion_with_base64_helper.doctree b/docs/html/.doctrees/modules/kittycad.api.file.post_file_conversion_with_base64_helper.doctree new file mode 100644 index 000000000..8104853be Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.api.file.post_file_conversion_with_base64_helper.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.api.internal.doctree b/docs/html/.doctrees/modules/kittycad.api.internal.doctree new file mode 100644 index 000000000..e971465ce Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.api.internal.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.api.internal.gpu_devices.doctree b/docs/html/.doctrees/modules/kittycad.api.internal.gpu_devices.doctree new file mode 100644 index 000000000..4f8405ce4 Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.api.internal.gpu_devices.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.api.internal.stop_async_conversions.doctree b/docs/html/.doctrees/modules/kittycad.api.internal.stop_async_conversions.doctree new file mode 100644 index 000000000..819a8c61e Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.api.internal.stop_async_conversions.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.api.meta.auth_session.doctree b/docs/html/.doctrees/modules/kittycad.api.meta.auth_session.doctree new file mode 100644 index 000000000..b4aff8135 Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.api.meta.auth_session.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.api.meta.doctree b/docs/html/.doctrees/modules/kittycad.api.meta.doctree new file mode 100644 index 000000000..a05fc8c0e Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.api.meta.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.api.meta.instance_metadata.doctree b/docs/html/.doctrees/modules/kittycad.api.meta.instance_metadata.doctree new file mode 100644 index 000000000..6e171ce19 Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.api.meta.instance_metadata.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.api.meta.ping.doctree b/docs/html/.doctrees/modules/kittycad.api.meta.ping.doctree new file mode 100644 index 000000000..de6712b91 Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.api.meta.ping.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.client.doctree b/docs/html/.doctrees/modules/kittycad.client.doctree new file mode 100644 index 000000000..343a32214 Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.client.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.models.auth_session.doctree b/docs/html/.doctrees/modules/kittycad.models.auth_session.doctree new file mode 100644 index 000000000..c2147d15d Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.models.auth_session.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.models.doctree b/docs/html/.doctrees/modules/kittycad.models.doctree new file mode 100644 index 000000000..f688bbd54 Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.models.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.models.error_message.doctree b/docs/html/.doctrees/modules/kittycad.models.error_message.doctree new file mode 100644 index 000000000..8aadc28d0 Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.models.error_message.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.models.file_conversion.doctree b/docs/html/.doctrees/modules/kittycad.models.file_conversion.doctree new file mode 100644 index 000000000..b88836be6 Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.models.file_conversion.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.models.file_conversion_status.doctree b/docs/html/.doctrees/modules/kittycad.models.file_conversion_status.doctree new file mode 100644 index 000000000..c02bd3a2a Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.models.file_conversion_status.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.models.gpu_device.doctree b/docs/html/.doctrees/modules/kittycad.models.gpu_device.doctree new file mode 100644 index 000000000..47ced4785 Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.models.gpu_device.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.models.instance.doctree b/docs/html/.doctrees/modules/kittycad.models.instance.doctree new file mode 100644 index 000000000..dcd23b4f5 Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.models.instance.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.models.pong_enum.doctree b/docs/html/.doctrees/modules/kittycad.models.pong_enum.doctree new file mode 100644 index 000000000..995ae4d54 Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.models.pong_enum.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.models.pong_message.doctree b/docs/html/.doctrees/modules/kittycad.models.pong_message.doctree new file mode 100644 index 000000000..7f3e0dce3 Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.models.pong_message.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.models.server_env.doctree b/docs/html/.doctrees/modules/kittycad.models.server_env.doctree new file mode 100644 index 000000000..5d0735636 Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.models.server_env.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.models.valid_output_file_format.doctree b/docs/html/.doctrees/modules/kittycad.models.valid_output_file_format.doctree new file mode 100644 index 000000000..349cae286 Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.models.valid_output_file_format.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.models.valid_source_file_format.doctree b/docs/html/.doctrees/modules/kittycad.models.valid_source_file_format.doctree new file mode 100644 index 000000000..89064ba8b Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.models.valid_source_file_format.doctree differ diff --git a/docs/html/.doctrees/modules/kittycad.types.doctree b/docs/html/.doctrees/modules/kittycad.types.doctree new file mode 100644 index 000000000..0db0aaf3b Binary files /dev/null and b/docs/html/.doctrees/modules/kittycad.types.doctree differ diff --git a/docs/html/_sources/api/kittycad.AuthenticatedClient.rst.txt b/docs/html/_sources/api/kittycad.ClientFromEnv.rst.txt similarity index 60% rename from docs/html/_sources/api/kittycad.AuthenticatedClient.rst.txt rename to docs/html/_sources/api/kittycad.ClientFromEnv.rst.txt index 7e31ef30c..0a8a3026c 100644 --- a/docs/html/_sources/api/kittycad.AuthenticatedClient.rst.txt +++ b/docs/html/_sources/api/kittycad.ClientFromEnv.rst.txt @@ -1,16 +1,16 @@ -AuthenticatedClient -=================== +ClientFromEnv +============= .. currentmodule:: kittycad -.. autoclass:: AuthenticatedClient +.. autoclass:: ClientFromEnv :show-inheritance: .. rubric:: Methods Summary .. autosummary:: - ~AuthenticatedClient.get_headers + ~ClientFromEnv.get_headers .. rubric:: Methods Documentation diff --git a/docs/html/_sources/api/kittycad.api.file.file_conversion_by_id.asyncio.rst.txt b/docs/html/_sources/api/kittycad.api.file.file_conversion_by_id.asyncio.rst.txt deleted file mode 100644 index efc3f7d9b..000000000 --- a/docs/html/_sources/api/kittycad.api.file.file_conversion_by_id.asyncio.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -asyncio -======= - -.. currentmodule:: kittycad.api.file.file_conversion_by_id - -.. autofunction:: asyncio diff --git a/docs/html/_sources/api/kittycad.api.file.file_conversion_by_id.asyncio_detailed.rst.txt b/docs/html/_sources/api/kittycad.api.file.file_conversion_by_id.asyncio_detailed.rst.txt deleted file mode 100644 index b50ec2a6e..000000000 --- a/docs/html/_sources/api/kittycad.api.file.file_conversion_by_id.asyncio_detailed.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -asyncio_detailed -================ - -.. currentmodule:: kittycad.api.file.file_conversion_by_id - -.. autofunction:: asyncio_detailed diff --git a/docs/html/_sources/api/kittycad.api.file.file_conversion_by_id.sync.rst.txt b/docs/html/_sources/api/kittycad.api.file.file_conversion_by_id.sync.rst.txt deleted file mode 100644 index 1dc4703f5..000000000 --- a/docs/html/_sources/api/kittycad.api.file.file_conversion_by_id.sync.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -sync -==== - -.. currentmodule:: kittycad.api.file.file_conversion_by_id - -.. autofunction:: sync diff --git a/docs/html/_sources/api/kittycad.api.file.file_conversion_by_id.sync_detailed.rst.txt b/docs/html/_sources/api/kittycad.api.file.file_conversion_by_id.sync_detailed.rst.txt deleted file mode 100644 index 76c6953a9..000000000 --- a/docs/html/_sources/api/kittycad.api.file.file_conversion_by_id.sync_detailed.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -sync_detailed -============= - -.. currentmodule:: kittycad.api.file.file_conversion_by_id - -.. autofunction:: sync_detailed diff --git a/docs/html/_sources/api/kittycad.api.file.file_conversion_by_id_with_base64_helper.asyncio.rst.txt b/docs/html/_sources/api/kittycad.api.file.file_conversion_by_id_with_base64_helper.asyncio.rst.txt deleted file mode 100644 index f3b3406e6..000000000 --- a/docs/html/_sources/api/kittycad.api.file.file_conversion_by_id_with_base64_helper.asyncio.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -asyncio -======= - -.. currentmodule:: kittycad.api.file.file_conversion_by_id_with_base64_helper - -.. autofunction:: asyncio diff --git a/docs/html/_sources/api/kittycad.api.file.file_conversion_by_id_with_base64_helper.sync.rst.txt b/docs/html/_sources/api/kittycad.api.file.file_conversion_by_id_with_base64_helper.sync.rst.txt deleted file mode 100644 index ee54bd3ec..000000000 --- a/docs/html/_sources/api/kittycad.api.file.file_conversion_by_id_with_base64_helper.sync.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -sync -==== - -.. currentmodule:: kittycad.api.file.file_conversion_by_id_with_base64_helper - -.. autofunction:: sync diff --git a/docs/html/_sources/api/kittycad.api.file.file_convert.asyncio.rst.txt b/docs/html/_sources/api/kittycad.api.file.file_convert.asyncio.rst.txt deleted file mode 100644 index ed1b3b8b5..000000000 --- a/docs/html/_sources/api/kittycad.api.file.file_convert.asyncio.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -asyncio -======= - -.. currentmodule:: kittycad.api.file.file_convert - -.. autofunction:: asyncio diff --git a/docs/html/_sources/api/kittycad.api.file.file_convert.asyncio_detailed.rst.txt b/docs/html/_sources/api/kittycad.api.file.file_convert.asyncio_detailed.rst.txt deleted file mode 100644 index ba677522c..000000000 --- a/docs/html/_sources/api/kittycad.api.file.file_convert.asyncio_detailed.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -asyncio_detailed -================ - -.. currentmodule:: kittycad.api.file.file_convert - -.. autofunction:: asyncio_detailed diff --git a/docs/html/_sources/api/kittycad.api.file.file_convert.sync.rst.txt b/docs/html/_sources/api/kittycad.api.file.file_convert.sync.rst.txt deleted file mode 100644 index 4d9dccbac..000000000 --- a/docs/html/_sources/api/kittycad.api.file.file_convert.sync.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -sync -==== - -.. currentmodule:: kittycad.api.file.file_convert - -.. autofunction:: sync diff --git a/docs/html/_sources/api/kittycad.api.file.file_convert.sync_detailed.rst.txt b/docs/html/_sources/api/kittycad.api.file.file_convert.sync_detailed.rst.txt deleted file mode 100644 index bba2fd7da..000000000 --- a/docs/html/_sources/api/kittycad.api.file.file_convert.sync_detailed.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -sync_detailed -============= - -.. currentmodule:: kittycad.api.file.file_convert - -.. autofunction:: sync_detailed diff --git a/docs/html/_sources/api/kittycad.api.file.file_convert_with_base64_helper.asyncio.rst.txt b/docs/html/_sources/api/kittycad.api.file.file_convert_with_base64_helper.asyncio.rst.txt deleted file mode 100644 index 15320af7e..000000000 --- a/docs/html/_sources/api/kittycad.api.file.file_convert_with_base64_helper.asyncio.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -asyncio -======= - -.. currentmodule:: kittycad.api.file.file_convert_with_base64_helper - -.. autofunction:: asyncio diff --git a/docs/html/_sources/api/kittycad.api.file.file_convert_with_base64_helper.sync.rst.txt b/docs/html/_sources/api/kittycad.api.file.file_convert_with_base64_helper.sync.rst.txt deleted file mode 100644 index 796616615..000000000 --- a/docs/html/_sources/api/kittycad.api.file.file_convert_with_base64_helper.sync.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -sync -==== - -.. currentmodule:: kittycad.api.file.file_convert_with_base64_helper - -.. autofunction:: sync diff --git a/docs/html/_sources/api/kittycad.api.meta.meta_debug_instance.asyncio.rst.txt b/docs/html/_sources/api/kittycad.api.meta.meta_debug_instance.asyncio.rst.txt deleted file mode 100644 index 124d5387e..000000000 --- a/docs/html/_sources/api/kittycad.api.meta.meta_debug_instance.asyncio.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -asyncio -======= - -.. currentmodule:: kittycad.api.meta.meta_debug_instance - -.. autofunction:: asyncio diff --git a/docs/html/_sources/api/kittycad.api.meta.meta_debug_instance.asyncio_detailed.rst.txt b/docs/html/_sources/api/kittycad.api.meta.meta_debug_instance.asyncio_detailed.rst.txt deleted file mode 100644 index a9d9c247b..000000000 --- a/docs/html/_sources/api/kittycad.api.meta.meta_debug_instance.asyncio_detailed.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -asyncio_detailed -================ - -.. currentmodule:: kittycad.api.meta.meta_debug_instance - -.. autofunction:: asyncio_detailed diff --git a/docs/html/_sources/api/kittycad.api.meta.meta_debug_instance.sync.rst.txt b/docs/html/_sources/api/kittycad.api.meta.meta_debug_instance.sync.rst.txt deleted file mode 100644 index 22045326b..000000000 --- a/docs/html/_sources/api/kittycad.api.meta.meta_debug_instance.sync.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -sync -==== - -.. currentmodule:: kittycad.api.meta.meta_debug_instance - -.. autofunction:: sync diff --git a/docs/html/_sources/api/kittycad.api.meta.meta_debug_instance.sync_detailed.rst.txt b/docs/html/_sources/api/kittycad.api.meta.meta_debug_instance.sync_detailed.rst.txt deleted file mode 100644 index d00e6cbae..000000000 --- a/docs/html/_sources/api/kittycad.api.meta.meta_debug_instance.sync_detailed.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -sync_detailed -============= - -.. currentmodule:: kittycad.api.meta.meta_debug_instance - -.. autofunction:: sync_detailed diff --git a/docs/html/_sources/api/kittycad.api.meta.meta_debug_session.asyncio.rst.txt b/docs/html/_sources/api/kittycad.api.meta.meta_debug_session.asyncio.rst.txt deleted file mode 100644 index 0b0792c8b..000000000 --- a/docs/html/_sources/api/kittycad.api.meta.meta_debug_session.asyncio.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -asyncio -======= - -.. currentmodule:: kittycad.api.meta.meta_debug_session - -.. autofunction:: asyncio diff --git a/docs/html/_sources/api/kittycad.api.meta.meta_debug_session.asyncio_detailed.rst.txt b/docs/html/_sources/api/kittycad.api.meta.meta_debug_session.asyncio_detailed.rst.txt deleted file mode 100644 index d98aba1c0..000000000 --- a/docs/html/_sources/api/kittycad.api.meta.meta_debug_session.asyncio_detailed.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -asyncio_detailed -================ - -.. currentmodule:: kittycad.api.meta.meta_debug_session - -.. autofunction:: asyncio_detailed diff --git a/docs/html/_sources/api/kittycad.api.meta.meta_debug_session.sync.rst.txt b/docs/html/_sources/api/kittycad.api.meta.meta_debug_session.sync.rst.txt deleted file mode 100644 index 00dd7d4d2..000000000 --- a/docs/html/_sources/api/kittycad.api.meta.meta_debug_session.sync.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -sync -==== - -.. currentmodule:: kittycad.api.meta.meta_debug_session - -.. autofunction:: sync diff --git a/docs/html/_sources/api/kittycad.api.meta.meta_debug_session.sync_detailed.rst.txt b/docs/html/_sources/api/kittycad.api.meta.meta_debug_session.sync_detailed.rst.txt deleted file mode 100644 index b221a1a54..000000000 --- a/docs/html/_sources/api/kittycad.api.meta.meta_debug_session.sync_detailed.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -sync_detailed -============= - -.. currentmodule:: kittycad.api.meta.meta_debug_session - -.. autofunction:: sync_detailed diff --git a/docs/html/_sources/api/kittycad.api.meta.ping.asyncio.rst.txt b/docs/html/_sources/api/kittycad.api.meta.ping.asyncio.rst.txt deleted file mode 100644 index e2fc02127..000000000 --- a/docs/html/_sources/api/kittycad.api.meta.ping.asyncio.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -asyncio -======= - -.. currentmodule:: kittycad.api.meta.ping - -.. autofunction:: asyncio diff --git a/docs/html/_sources/api/kittycad.api.meta.ping.asyncio_detailed.rst.txt b/docs/html/_sources/api/kittycad.api.meta.ping.asyncio_detailed.rst.txt deleted file mode 100644 index c7e723f66..000000000 --- a/docs/html/_sources/api/kittycad.api.meta.ping.asyncio_detailed.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -asyncio_detailed -================ - -.. currentmodule:: kittycad.api.meta.ping - -.. autofunction:: asyncio_detailed diff --git a/docs/html/_sources/api/kittycad.api.meta.ping.sync.rst.txt b/docs/html/_sources/api/kittycad.api.meta.ping.sync.rst.txt deleted file mode 100644 index 23cbdd0ba..000000000 --- a/docs/html/_sources/api/kittycad.api.meta.ping.sync.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -sync -==== - -.. currentmodule:: kittycad.api.meta.ping - -.. autofunction:: sync diff --git a/docs/html/_sources/api/kittycad.api.meta.ping.sync_detailed.rst.txt b/docs/html/_sources/api/kittycad.api.meta.ping.sync_detailed.rst.txt deleted file mode 100644 index 85808280f..000000000 --- a/docs/html/_sources/api/kittycad.api.meta.ping.sync_detailed.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -sync_detailed -============= - -.. currentmodule:: kittycad.api.meta.ping - -.. autofunction:: sync_detailed diff --git a/docs/html/_sources/api/kittycad.client.AuthenticatedClient.rst.txt b/docs/html/_sources/api/kittycad.client.AuthenticatedClient.rst.txt deleted file mode 100644 index b2fa7996b..000000000 --- a/docs/html/_sources/api/kittycad.client.AuthenticatedClient.rst.txt +++ /dev/null @@ -1,17 +0,0 @@ -AuthenticatedClient -=================== - -.. currentmodule:: kittycad.client - -.. autoclass:: AuthenticatedClient - :show-inheritance: - - .. rubric:: Methods Summary - - .. autosummary:: - - ~AuthenticatedClient.get_headers - - .. rubric:: Methods Documentation - - .. automethod:: get_headers diff --git a/docs/html/_sources/api/kittycad.client.AuthenticatedClientFromEnv.rst.txt b/docs/html/_sources/api/kittycad.client.AuthenticatedClientFromEnv.rst.txt deleted file mode 100644 index e7b88b47e..000000000 --- a/docs/html/_sources/api/kittycad.client.AuthenticatedClientFromEnv.rst.txt +++ /dev/null @@ -1,17 +0,0 @@ -AuthenticatedClientFromEnv -========================== - -.. currentmodule:: kittycad.client - -.. autoclass:: AuthenticatedClientFromEnv - :show-inheritance: - - .. rubric:: Methods Summary - - .. autosummary:: - - ~AuthenticatedClientFromEnv.get_headers - - .. rubric:: Methods Documentation - - .. automethod:: get_headers diff --git a/docs/html/_sources/api/kittycad.client.Client.rst.txt b/docs/html/_sources/api/kittycad.client.Client.rst.txt deleted file mode 100644 index ce0a7f940..000000000 --- a/docs/html/_sources/api/kittycad.client.Client.rst.txt +++ /dev/null @@ -1,27 +0,0 @@ -Client -====== - -.. currentmodule:: kittycad.client - -.. autoclass:: Client - :show-inheritance: - - .. rubric:: Methods Summary - - .. autosummary:: - - ~Client.get_cookies - ~Client.get_headers - ~Client.get_timeout - ~Client.with_cookies - ~Client.with_headers - ~Client.with_timeout - - .. rubric:: Methods Documentation - - .. automethod:: get_cookies - .. automethod:: get_headers - .. automethod:: get_timeout - .. automethod:: with_cookies - .. automethod:: with_headers - .. automethod:: with_timeout diff --git a/docs/html/_sources/api/kittycad.models.AuthSession.rst.txt b/docs/html/_sources/api/kittycad.models.AuthSession.rst.txt deleted file mode 100644 index 29c226d55..000000000 --- a/docs/html/_sources/api/kittycad.models.AuthSession.rst.txt +++ /dev/null @@ -1,29 +0,0 @@ -AuthSession -=========== - -.. currentmodule:: kittycad.models - -.. autoclass:: AuthSession - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~AuthSession.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~AuthSession.from_dict - ~AuthSession.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/html/_sources/api/kittycad.models.Environment.rst.txt b/docs/html/_sources/api/kittycad.models.Environment.rst.txt deleted file mode 100644 index 58f41549b..000000000 --- a/docs/html/_sources/api/kittycad.models.Environment.rst.txt +++ /dev/null @@ -1,21 +0,0 @@ -Environment -=========== - -.. currentmodule:: kittycad.models - -.. autoclass:: Environment - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~Environment.DEVELOPMENT - ~Environment.PREVIEW - ~Environment.PRODUCTION - - .. rubric:: Attributes Documentation - - .. autoattribute:: DEVELOPMENT - .. autoattribute:: PREVIEW - .. autoattribute:: PRODUCTION diff --git a/docs/html/_sources/api/kittycad.models.ErrorMessage.rst.txt b/docs/html/_sources/api/kittycad.models.ErrorMessage.rst.txt deleted file mode 100644 index b61c2b900..000000000 --- a/docs/html/_sources/api/kittycad.models.ErrorMessage.rst.txt +++ /dev/null @@ -1,29 +0,0 @@ -ErrorMessage -============ - -.. currentmodule:: kittycad.models - -.. autoclass:: ErrorMessage - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~ErrorMessage.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~ErrorMessage.from_dict - ~ErrorMessage.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/html/_sources/api/kittycad.models.FileConversion.rst.txt b/docs/html/_sources/api/kittycad.models.FileConversion.rst.txt deleted file mode 100644 index ea7024539..000000000 --- a/docs/html/_sources/api/kittycad.models.FileConversion.rst.txt +++ /dev/null @@ -1,29 +0,0 @@ -FileConversion -============== - -.. currentmodule:: kittycad.models - -.. autoclass:: FileConversion - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~FileConversion.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~FileConversion.from_dict - ~FileConversion.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/html/_sources/api/kittycad.models.FileConversionStatus.rst.txt b/docs/html/_sources/api/kittycad.models.FileConversionStatus.rst.txt deleted file mode 100644 index c75f1fd41..000000000 --- a/docs/html/_sources/api/kittycad.models.FileConversionStatus.rst.txt +++ /dev/null @@ -1,25 +0,0 @@ -FileConversionStatus -==================== - -.. currentmodule:: kittycad.models - -.. autoclass:: FileConversionStatus - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~FileConversionStatus.COMPLETED - ~FileConversionStatus.FAILED - ~FileConversionStatus.IN_PROGRESS - ~FileConversionStatus.QUEUED - ~FileConversionStatus.UPLOADED - - .. rubric:: Attributes Documentation - - .. autoattribute:: COMPLETED - .. autoattribute:: FAILED - .. autoattribute:: IN_PROGRESS - .. autoattribute:: QUEUED - .. autoattribute:: UPLOADED diff --git a/docs/html/_sources/api/kittycad.models.InstanceMetadata.rst.txt b/docs/html/_sources/api/kittycad.models.InstanceMetadata.rst.txt deleted file mode 100644 index 86feaea81..000000000 --- a/docs/html/_sources/api/kittycad.models.InstanceMetadata.rst.txt +++ /dev/null @@ -1,29 +0,0 @@ -InstanceMetadata -================ - -.. currentmodule:: kittycad.models - -.. autoclass:: InstanceMetadata - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~InstanceMetadata.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~InstanceMetadata.from_dict - ~InstanceMetadata.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/html/_sources/api/kittycad.models.Message.rst.txt b/docs/html/_sources/api/kittycad.models.Message.rst.txt deleted file mode 100644 index c6a5d79e4..000000000 --- a/docs/html/_sources/api/kittycad.models.Message.rst.txt +++ /dev/null @@ -1,29 +0,0 @@ -Message -======= - -.. currentmodule:: kittycad.models - -.. autoclass:: Message - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~Message.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~Message.from_dict - ~Message.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/html/_sources/api/kittycad.models.ValidFileTypes.rst.txt b/docs/html/_sources/api/kittycad.models.ValidFileTypes.rst.txt deleted file mode 100644 index fb0585ce5..000000000 --- a/docs/html/_sources/api/kittycad.models.ValidFileTypes.rst.txt +++ /dev/null @@ -1,25 +0,0 @@ -ValidFileTypes -============== - -.. currentmodule:: kittycad.models - -.. autoclass:: ValidFileTypes - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~ValidFileTypes.DWG - ~ValidFileTypes.DXF - ~ValidFileTypes.OBJ - ~ValidFileTypes.STEP - ~ValidFileTypes.STL - - .. rubric:: Attributes Documentation - - .. autoattribute:: DWG - .. autoattribute:: DXF - .. autoattribute:: OBJ - .. autoattribute:: STEP - .. autoattribute:: STL diff --git a/docs/html/_sources/api/kittycad.models.auth_session.AuthSession.rst.txt b/docs/html/_sources/api/kittycad.models.auth_session.AuthSession.rst.txt deleted file mode 100644 index 73d9cd14e..000000000 --- a/docs/html/_sources/api/kittycad.models.auth_session.AuthSession.rst.txt +++ /dev/null @@ -1,29 +0,0 @@ -AuthSession -=========== - -.. currentmodule:: kittycad.models.auth_session - -.. autoclass:: AuthSession - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~AuthSession.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~AuthSession.from_dict - ~AuthSession.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/html/_sources/api/kittycad.models.environment.Environment.rst.txt b/docs/html/_sources/api/kittycad.models.environment.Environment.rst.txt deleted file mode 100644 index ad4190878..000000000 --- a/docs/html/_sources/api/kittycad.models.environment.Environment.rst.txt +++ /dev/null @@ -1,21 +0,0 @@ -Environment -=========== - -.. currentmodule:: kittycad.models.environment - -.. autoclass:: Environment - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~Environment.DEVELOPMENT - ~Environment.PREVIEW - ~Environment.PRODUCTION - - .. rubric:: Attributes Documentation - - .. autoattribute:: DEVELOPMENT - .. autoattribute:: PREVIEW - .. autoattribute:: PRODUCTION diff --git a/docs/html/_sources/api/kittycad.models.error_message.ErrorMessage.rst.txt b/docs/html/_sources/api/kittycad.models.error_message.ErrorMessage.rst.txt deleted file mode 100644 index aa2052082..000000000 --- a/docs/html/_sources/api/kittycad.models.error_message.ErrorMessage.rst.txt +++ /dev/null @@ -1,29 +0,0 @@ -ErrorMessage -============ - -.. currentmodule:: kittycad.models.error_message - -.. autoclass:: ErrorMessage - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~ErrorMessage.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~ErrorMessage.from_dict - ~ErrorMessage.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/html/_sources/api/kittycad.models.file_conversion.FileConversion.rst.txt b/docs/html/_sources/api/kittycad.models.file_conversion.FileConversion.rst.txt deleted file mode 100644 index 4bcc324ff..000000000 --- a/docs/html/_sources/api/kittycad.models.file_conversion.FileConversion.rst.txt +++ /dev/null @@ -1,29 +0,0 @@ -FileConversion -============== - -.. currentmodule:: kittycad.models.file_conversion - -.. autoclass:: FileConversion - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~FileConversion.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~FileConversion.from_dict - ~FileConversion.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/html/_sources/api/kittycad.models.file_conversion.FileConversionStatus.rst.txt b/docs/html/_sources/api/kittycad.models.file_conversion.FileConversionStatus.rst.txt deleted file mode 100644 index 088aa93d3..000000000 --- a/docs/html/_sources/api/kittycad.models.file_conversion.FileConversionStatus.rst.txt +++ /dev/null @@ -1,25 +0,0 @@ -FileConversionStatus -==================== - -.. currentmodule:: kittycad.models.file_conversion - -.. autoclass:: FileConversionStatus - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~FileConversionStatus.COMPLETED - ~FileConversionStatus.FAILED - ~FileConversionStatus.IN_PROGRESS - ~FileConversionStatus.QUEUED - ~FileConversionStatus.UPLOADED - - .. rubric:: Attributes Documentation - - .. autoattribute:: COMPLETED - .. autoattribute:: FAILED - .. autoattribute:: IN_PROGRESS - .. autoattribute:: QUEUED - .. autoattribute:: UPLOADED diff --git a/docs/html/_sources/api/kittycad.models.file_conversion_status.FileConversionStatus.rst.txt b/docs/html/_sources/api/kittycad.models.file_conversion_status.FileConversionStatus.rst.txt deleted file mode 100644 index 367439298..000000000 --- a/docs/html/_sources/api/kittycad.models.file_conversion_status.FileConversionStatus.rst.txt +++ /dev/null @@ -1,25 +0,0 @@ -FileConversionStatus -==================== - -.. currentmodule:: kittycad.models.file_conversion_status - -.. autoclass:: FileConversionStatus - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~FileConversionStatus.COMPLETED - ~FileConversionStatus.FAILED - ~FileConversionStatus.IN_PROGRESS - ~FileConversionStatus.QUEUED - ~FileConversionStatus.UPLOADED - - .. rubric:: Attributes Documentation - - .. autoattribute:: COMPLETED - .. autoattribute:: FAILED - .. autoattribute:: IN_PROGRESS - .. autoattribute:: QUEUED - .. autoattribute:: UPLOADED diff --git a/docs/html/_sources/api/kittycad.models.instance_metadata.InstanceMetadata.rst.txt b/docs/html/_sources/api/kittycad.models.instance_metadata.InstanceMetadata.rst.txt deleted file mode 100644 index f5aaa331f..000000000 --- a/docs/html/_sources/api/kittycad.models.instance_metadata.InstanceMetadata.rst.txt +++ /dev/null @@ -1,29 +0,0 @@ -InstanceMetadata -================ - -.. currentmodule:: kittycad.models.instance_metadata - -.. autoclass:: InstanceMetadata - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~InstanceMetadata.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~InstanceMetadata.from_dict - ~InstanceMetadata.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/html/_sources/api/kittycad.models.message.Message.rst.txt b/docs/html/_sources/api/kittycad.models.message.Message.rst.txt deleted file mode 100644 index 30d39fc53..000000000 --- a/docs/html/_sources/api/kittycad.models.message.Message.rst.txt +++ /dev/null @@ -1,29 +0,0 @@ -Message -======= - -.. currentmodule:: kittycad.models.message - -.. autoclass:: Message - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~Message.additional_keys - - .. rubric:: Methods Summary - - .. autosummary:: - - ~Message.from_dict - ~Message.to_dict - - .. rubric:: Attributes Documentation - - .. autoattribute:: additional_keys - - .. rubric:: Methods Documentation - - .. automethod:: from_dict - .. automethod:: to_dict diff --git a/docs/html/_sources/api/kittycad.models.valid_file_types.ValidFileTypes.rst.txt b/docs/html/_sources/api/kittycad.models.valid_file_types.ValidFileTypes.rst.txt deleted file mode 100644 index f434f3a29..000000000 --- a/docs/html/_sources/api/kittycad.models.valid_file_types.ValidFileTypes.rst.txt +++ /dev/null @@ -1,25 +0,0 @@ -ValidFileTypes -============== - -.. currentmodule:: kittycad.models.valid_file_types - -.. autoclass:: ValidFileTypes - :show-inheritance: - - .. rubric:: Attributes Summary - - .. autosummary:: - - ~ValidFileTypes.DWG - ~ValidFileTypes.DXF - ~ValidFileTypes.OBJ - ~ValidFileTypes.STEP - ~ValidFileTypes.STL - - .. rubric:: Attributes Documentation - - .. autoattribute:: DWG - .. autoattribute:: DXF - .. autoattribute:: OBJ - .. autoattribute:: STEP - .. autoattribute:: STL diff --git a/docs/html/_sources/api/kittycad.types.File.rst.txt b/docs/html/_sources/api/kittycad.types.File.rst.txt deleted file mode 100644 index 64f4625fe..000000000 --- a/docs/html/_sources/api/kittycad.types.File.rst.txt +++ /dev/null @@ -1,17 +0,0 @@ -File -==== - -.. currentmodule:: kittycad.types - -.. autoclass:: File - :show-inheritance: - - .. rubric:: Methods Summary - - .. autosummary:: - - ~File.to_tuple - - .. rubric:: Methods Documentation - - .. automethod:: to_tuple diff --git a/docs/html/_sources/api/kittycad.types.Response.rst.txt b/docs/html/_sources/api/kittycad.types.Response.rst.txt deleted file mode 100644 index 98341b950..000000000 --- a/docs/html/_sources/api/kittycad.types.Response.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -Response -======== - -.. currentmodule:: kittycad.types - -.. autoclass:: Response - :show-inheritance: diff --git a/docs/html/_sources/index.rst.txt b/docs/html/_sources/index.rst.txt index 121a82338..b997ab6b1 100644 --- a/docs/html/_sources/index.rst.txt +++ b/docs/html/_sources/index.rst.txt @@ -6,9 +6,9 @@ Welcome to kittycad's documentation! ==================================== -.. toctree:: - :maxdepth: 3 - :caption: Contents: +.. autosummary:: + :recursive: + :toctree: modules kittycad.api kittycad.client diff --git a/docs/html/_sources/modules/kittycad.api.beta.rst.txt b/docs/html/_sources/modules/kittycad.api.beta.rst.txt new file mode 100644 index 000000000..0a52051ff --- /dev/null +++ b/docs/html/_sources/modules/kittycad.api.beta.rst.txt @@ -0,0 +1,23 @@ +kittycad.api.beta +================= + +.. automodule:: kittycad.api.beta + + + + + + + + + + + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.api.file.file_conversion_status.rst.txt b/docs/html/_sources/modules/kittycad.api.file.file_conversion_status.rst.txt new file mode 100644 index 000000000..9fdf128a4 --- /dev/null +++ b/docs/html/_sources/modules/kittycad.api.file.file_conversion_status.rst.txt @@ -0,0 +1,32 @@ +kittycad.api.file.file\_conversion\_status +========================================== + +.. automodule:: kittycad.api.file.file_conversion_status + + + + + + + + .. rubric:: Functions + + .. autosummary:: + + asyncio + asyncio_detailed + sync + sync_detailed + + + + + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.api.file.file_conversion_status_with_base64_helper.rst.txt b/docs/html/_sources/modules/kittycad.api.file.file_conversion_status_with_base64_helper.rst.txt new file mode 100644 index 000000000..2acf39599 --- /dev/null +++ b/docs/html/_sources/modules/kittycad.api.file.file_conversion_status_with_base64_helper.rst.txt @@ -0,0 +1,30 @@ +kittycad.api.file.file\_conversion\_status\_with\_base64\_helper +================================================================ + +.. automodule:: kittycad.api.file.file_conversion_status_with_base64_helper + + + + + + + + .. rubric:: Functions + + .. autosummary:: + + asyncio + sync + + + + + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.api.file.post_file_conversion.rst.txt b/docs/html/_sources/modules/kittycad.api.file.post_file_conversion.rst.txt new file mode 100644 index 000000000..6c48880ae --- /dev/null +++ b/docs/html/_sources/modules/kittycad.api.file.post_file_conversion.rst.txt @@ -0,0 +1,32 @@ +kittycad.api.file.post\_file\_conversion +======================================== + +.. automodule:: kittycad.api.file.post_file_conversion + + + + + + + + .. rubric:: Functions + + .. autosummary:: + + asyncio + asyncio_detailed + sync + sync_detailed + + + + + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.api.file.post_file_conversion_with_base64_helper.rst.txt b/docs/html/_sources/modules/kittycad.api.file.post_file_conversion_with_base64_helper.rst.txt new file mode 100644 index 000000000..f6fdf1db7 --- /dev/null +++ b/docs/html/_sources/modules/kittycad.api.file.post_file_conversion_with_base64_helper.rst.txt @@ -0,0 +1,30 @@ +kittycad.api.file.post\_file\_conversion\_with\_base64\_helper +============================================================== + +.. automodule:: kittycad.api.file.post_file_conversion_with_base64_helper + + + + + + + + .. rubric:: Functions + + .. autosummary:: + + asyncio + sync + + + + + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.api.file.rst.txt b/docs/html/_sources/modules/kittycad.api.file.rst.txt new file mode 100644 index 000000000..5d5337d9c --- /dev/null +++ b/docs/html/_sources/modules/kittycad.api.file.rst.txt @@ -0,0 +1,34 @@ +kittycad.api.file +================= + +.. automodule:: kittycad.api.file + + + + + + + + + + + + + + + + + + + +.. rubric:: Modules + +.. autosummary:: + :toctree: + :recursive: + + kittycad.api.file.file_conversion_status + kittycad.api.file.file_conversion_status_with_base64_helper + kittycad.api.file.post_file_conversion + kittycad.api.file.post_file_conversion_with_base64_helper + diff --git a/docs/html/_sources/modules/kittycad.api.internal.gpu_devices.rst.txt b/docs/html/_sources/modules/kittycad.api.internal.gpu_devices.rst.txt new file mode 100644 index 000000000..d641b118b --- /dev/null +++ b/docs/html/_sources/modules/kittycad.api.internal.gpu_devices.rst.txt @@ -0,0 +1,32 @@ +kittycad.api.internal.gpu\_devices +================================== + +.. automodule:: kittycad.api.internal.gpu_devices + + + + + + + + .. rubric:: Functions + + .. autosummary:: + + asyncio + asyncio_detailed + sync + sync_detailed + + + + + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.api.internal.rst.txt b/docs/html/_sources/modules/kittycad.api.internal.rst.txt new file mode 100644 index 000000000..9dc99deac --- /dev/null +++ b/docs/html/_sources/modules/kittycad.api.internal.rst.txt @@ -0,0 +1,32 @@ +kittycad.api.internal +===================== + +.. automodule:: kittycad.api.internal + + + + + + + + + + + + + + + + + + + +.. rubric:: Modules + +.. autosummary:: + :toctree: + :recursive: + + kittycad.api.internal.gpu_devices + kittycad.api.internal.stop_async_conversions + diff --git a/docs/html/_sources/modules/kittycad.api.internal.stop_async_conversions.rst.txt b/docs/html/_sources/modules/kittycad.api.internal.stop_async_conversions.rst.txt new file mode 100644 index 000000000..7d0d74cb0 --- /dev/null +++ b/docs/html/_sources/modules/kittycad.api.internal.stop_async_conversions.rst.txt @@ -0,0 +1,32 @@ +kittycad.api.internal.stop\_async\_conversions +============================================== + +.. automodule:: kittycad.api.internal.stop_async_conversions + + + + + + + + .. rubric:: Functions + + .. autosummary:: + + asyncio + asyncio_detailed + sync + sync_detailed + + + + + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.api.meta.auth_session.rst.txt b/docs/html/_sources/modules/kittycad.api.meta.auth_session.rst.txt new file mode 100644 index 000000000..5eec49990 --- /dev/null +++ b/docs/html/_sources/modules/kittycad.api.meta.auth_session.rst.txt @@ -0,0 +1,32 @@ +kittycad.api.meta.auth\_session +=============================== + +.. automodule:: kittycad.api.meta.auth_session + + + + + + + + .. rubric:: Functions + + .. autosummary:: + + asyncio + asyncio_detailed + sync + sync_detailed + + + + + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.api.meta.instance_metadata.rst.txt b/docs/html/_sources/modules/kittycad.api.meta.instance_metadata.rst.txt new file mode 100644 index 000000000..8b0622bd0 --- /dev/null +++ b/docs/html/_sources/modules/kittycad.api.meta.instance_metadata.rst.txt @@ -0,0 +1,32 @@ +kittycad.api.meta.instance\_metadata +==================================== + +.. automodule:: kittycad.api.meta.instance_metadata + + + + + + + + .. rubric:: Functions + + .. autosummary:: + + asyncio + asyncio_detailed + sync + sync_detailed + + + + + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.api.meta.ping.rst.txt b/docs/html/_sources/modules/kittycad.api.meta.ping.rst.txt new file mode 100644 index 000000000..c91d90aec --- /dev/null +++ b/docs/html/_sources/modules/kittycad.api.meta.ping.rst.txt @@ -0,0 +1,32 @@ +kittycad.api.meta.ping +====================== + +.. automodule:: kittycad.api.meta.ping + + + + + + + + .. rubric:: Functions + + .. autosummary:: + + asyncio + asyncio_detailed + sync + sync_detailed + + + + + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.api.meta.rst.txt b/docs/html/_sources/modules/kittycad.api.meta.rst.txt new file mode 100644 index 000000000..bc5537a0e --- /dev/null +++ b/docs/html/_sources/modules/kittycad.api.meta.rst.txt @@ -0,0 +1,33 @@ +kittycad.api.meta +================= + +.. automodule:: kittycad.api.meta + + + + + + + + + + + + + + + + + + + +.. rubric:: Modules + +.. autosummary:: + :toctree: + :recursive: + + kittycad.api.meta.auth_session + kittycad.api.meta.instance_metadata + kittycad.api.meta.ping + diff --git a/docs/html/_sources/modules/kittycad.api.rst.txt b/docs/html/_sources/modules/kittycad.api.rst.txt new file mode 100644 index 000000000..aa0fa6aac --- /dev/null +++ b/docs/html/_sources/modules/kittycad.api.rst.txt @@ -0,0 +1,34 @@ +kittycad.api +============ + +.. automodule:: kittycad.api + + + + + + + + + + + + + + + + + + + +.. rubric:: Modules + +.. autosummary:: + :toctree: + :recursive: + + kittycad.api.beta + kittycad.api.file + kittycad.api.internal + kittycad.api.meta + diff --git a/docs/html/_sources/modules/kittycad.client.rst.txt b/docs/html/_sources/modules/kittycad.client.rst.txt new file mode 100644 index 000000000..0206d8f2a --- /dev/null +++ b/docs/html/_sources/modules/kittycad.client.rst.txt @@ -0,0 +1,30 @@ +kittycad.client +=============== + +.. automodule:: kittycad.client + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + + Client + ClientFromEnv + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.models.auth_session.rst.txt b/docs/html/_sources/modules/kittycad.models.auth_session.rst.txt new file mode 100644 index 000000000..62839f1b4 --- /dev/null +++ b/docs/html/_sources/modules/kittycad.models.auth_session.rst.txt @@ -0,0 +1,29 @@ +kittycad.models.auth\_session +============================= + +.. automodule:: kittycad.models.auth_session + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + + AuthSession + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.models.error_message.rst.txt b/docs/html/_sources/modules/kittycad.models.error_message.rst.txt new file mode 100644 index 000000000..18faf2284 --- /dev/null +++ b/docs/html/_sources/modules/kittycad.models.error_message.rst.txt @@ -0,0 +1,29 @@ +kittycad.models.error\_message +============================== + +.. automodule:: kittycad.models.error_message + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + + ErrorMessage + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.models.file_conversion.rst.txt b/docs/html/_sources/modules/kittycad.models.file_conversion.rst.txt new file mode 100644 index 000000000..45315a21d --- /dev/null +++ b/docs/html/_sources/modules/kittycad.models.file_conversion.rst.txt @@ -0,0 +1,29 @@ +kittycad.models.file\_conversion +================================ + +.. automodule:: kittycad.models.file_conversion + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + + FileConversion + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.models.file_conversion_status.rst.txt b/docs/html/_sources/modules/kittycad.models.file_conversion_status.rst.txt new file mode 100644 index 000000000..650b3ee5b --- /dev/null +++ b/docs/html/_sources/modules/kittycad.models.file_conversion_status.rst.txt @@ -0,0 +1,29 @@ +kittycad.models.file\_conversion\_status +======================================== + +.. automodule:: kittycad.models.file_conversion_status + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + + FileConversionStatus + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.models.gpu_device.rst.txt b/docs/html/_sources/modules/kittycad.models.gpu_device.rst.txt new file mode 100644 index 000000000..009534b75 --- /dev/null +++ b/docs/html/_sources/modules/kittycad.models.gpu_device.rst.txt @@ -0,0 +1,29 @@ +kittycad.models.gpu\_device +=========================== + +.. automodule:: kittycad.models.gpu_device + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + + GPUDevice + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.models.instance.rst.txt b/docs/html/_sources/modules/kittycad.models.instance.rst.txt new file mode 100644 index 000000000..1ea25a33b --- /dev/null +++ b/docs/html/_sources/modules/kittycad.models.instance.rst.txt @@ -0,0 +1,29 @@ +kittycad.models.instance +======================== + +.. automodule:: kittycad.models.instance + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + + Instance + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.models.pong_enum.rst.txt b/docs/html/_sources/modules/kittycad.models.pong_enum.rst.txt new file mode 100644 index 000000000..1c7774ee6 --- /dev/null +++ b/docs/html/_sources/modules/kittycad.models.pong_enum.rst.txt @@ -0,0 +1,29 @@ +kittycad.models.pong\_enum +========================== + +.. automodule:: kittycad.models.pong_enum + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + + PongEnum + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.models.pong_message.rst.txt b/docs/html/_sources/modules/kittycad.models.pong_message.rst.txt new file mode 100644 index 000000000..08f513b1c --- /dev/null +++ b/docs/html/_sources/modules/kittycad.models.pong_message.rst.txt @@ -0,0 +1,29 @@ +kittycad.models.pong\_message +============================= + +.. automodule:: kittycad.models.pong_message + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + + PongMessage + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.models.rst.txt b/docs/html/_sources/modules/kittycad.models.rst.txt new file mode 100644 index 000000000..30f1de237 --- /dev/null +++ b/docs/html/_sources/modules/kittycad.models.rst.txt @@ -0,0 +1,41 @@ +kittycad.models +=============== + +.. automodule:: kittycad.models + + + + + + + + + + + + + + + + + + + +.. rubric:: Modules + +.. autosummary:: + :toctree: + :recursive: + + kittycad.models.auth_session + kittycad.models.error_message + kittycad.models.file_conversion + kittycad.models.file_conversion_status + kittycad.models.gpu_device + kittycad.models.instance + kittycad.models.pong_enum + kittycad.models.pong_message + kittycad.models.server_env + kittycad.models.valid_output_file_format + kittycad.models.valid_source_file_format + diff --git a/docs/html/_sources/modules/kittycad.models.server_env.rst.txt b/docs/html/_sources/modules/kittycad.models.server_env.rst.txt new file mode 100644 index 000000000..a7ec78345 --- /dev/null +++ b/docs/html/_sources/modules/kittycad.models.server_env.rst.txt @@ -0,0 +1,29 @@ +kittycad.models.server\_env +=========================== + +.. automodule:: kittycad.models.server_env + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + + ServerEnv + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.models.valid_output_file_format.rst.txt b/docs/html/_sources/modules/kittycad.models.valid_output_file_format.rst.txt new file mode 100644 index 000000000..662fe81fa --- /dev/null +++ b/docs/html/_sources/modules/kittycad.models.valid_output_file_format.rst.txt @@ -0,0 +1,29 @@ +kittycad.models.valid\_output\_file\_format +=========================================== + +.. automodule:: kittycad.models.valid_output_file_format + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + + ValidOutputFileFormat + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.models.valid_source_file_format.rst.txt b/docs/html/_sources/modules/kittycad.models.valid_source_file_format.rst.txt new file mode 100644 index 000000000..bb3305484 --- /dev/null +++ b/docs/html/_sources/modules/kittycad.models.valid_source_file_format.rst.txt @@ -0,0 +1,29 @@ +kittycad.models.valid\_source\_file\_format +=========================================== + +.. automodule:: kittycad.models.valid_source_file_format + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + + ValidSourceFileFormat + + + + + + + + + diff --git a/docs/html/_sources/modules/kittycad.types.rst.txt b/docs/html/_sources/modules/kittycad.types.rst.txt new file mode 100644 index 000000000..07e380fa9 --- /dev/null +++ b/docs/html/_sources/modules/kittycad.types.rst.txt @@ -0,0 +1,31 @@ +kittycad.types +============== + +.. automodule:: kittycad.types + + + + + + + + + + + + .. rubric:: Classes + + .. autosummary:: + + File + Response + Unset + + + + + + + + + diff --git a/docs/html/_static/documentation_options.js b/docs/html/_static/documentation_options.js index 4dfe75f94..efa8c5749 100644 --- a/docs/html/_static/documentation_options.js +++ b/docs/html/_static/documentation_options.js @@ -1,6 +1,6 @@ var DOCUMENTATION_OPTIONS = { URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: 'v0.0.5', + VERSION: 'v0.0.6', LANGUAGE: 'None', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/docs/html/api/kittycad.Client.html b/docs/html/api/kittycad.Client.html index 1e1b95a27..86a5ace8f 100644 --- a/docs/html/api/kittycad.Client.html +++ b/docs/html/api/kittycad.Client.html @@ -4,7 +4,7 @@ - Client — kittycad v0.0.5 documentation + Client — kittycad v0.0.6 documentation @@ -19,7 +19,8 @@ - + + @@ -30,7 +31,7 @@ kittycad
- v0.0.5 + v0.0.6
@@ -40,9 +41,15 @@
@@ -73,9 +80,9 @@

Client

-class kittycad.Client(base_url='https://api.kittycad.io', *, cookies=NOTHING, headers=NOTHING, timeout=50.0, verify_ssl=True)[source]
+class kittycad.Client(base_url='https://api.kittycad.io', *, token, cookies=NOTHING, headers=NOTHING, timeout=50.0, verify_ssl=True)[source]

Bases: object

-

A class for keeping track of data related to the API

+

A Client which has been authenticated for use on secured endpoints of the KittyCAD API.

Methods Summary

@@ -151,7 +158,7 @@

Get a new client matching this one with additional cookies

Return type
-

Client

+

Client

@@ -162,7 +169,7 @@

Get a new client matching this one with additional headers

Return type
-

Client

+

Client

@@ -173,7 +180,7 @@

Get a new client matching this one with a new timeout (in seconds)

Return type
-

Client

+

Client

@@ -186,7 +193,8 @@

diff --git a/docs/html/api/kittycad.AuthenticatedClient.html b/docs/html/api/kittycad.ClientFromEnv.html similarity index 59% rename from docs/html/api/kittycad.AuthenticatedClient.html rename to docs/html/api/kittycad.ClientFromEnv.html index da651d14c..0c6e0d617 100644 --- a/docs/html/api/kittycad.AuthenticatedClient.html +++ b/docs/html/api/kittycad.ClientFromEnv.html @@ -4,7 +4,7 @@ - AuthenticatedClient — kittycad v0.0.5 documentation + ClientFromEnv — kittycad v0.0.6 documentation @@ -19,8 +19,7 @@ - - + @@ -31,7 +30,7 @@ kittycad
- v0.0.5 + v0.0.6
@@ -41,9 +40,15 @@
@@ -60,9 +65,9 @@

@@ -70,13 +75,13 @@
-
-

AuthenticatedClient

+
+

ClientFromEnv

-
-class kittycad.AuthenticatedClient(base_url='https://api.kittycad.io', *, cookies=NOTHING, headers=NOTHING, timeout=50.0, verify_ssl=True, token)[source]
-

Bases: kittycad.client.Client

-

A Client which has been authenticated for use on secured endpoints

+
+class kittycad.ClientFromEnv(base_url='https://api.kittycad.io', token='f633c45d-022a-469e-bb36-b5d7cbb6ae5b', *, cookies=NOTHING, headers=NOTHING, timeout=50.0, verify_ssl=True)[source]
+

Bases: kittycad.client.Client

+

A Client which has been authenticated for use on secured endpoints that uses the KITTYCAD_API_TOKEN environment variable for the authentication token.

Methods Summary

@@ -84,15 +89,15 @@ - +

get_headers()

get_headers()

Get headers to be used in authenticated endpoints

Methods Documentation

-
-get_headers()[source]
+
+get_headers()[source]

Get headers to be used in authenticated endpoints

Return type
@@ -109,8 +114,7 @@