diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml new file mode 100644 index 0000000..2af8ae3 --- /dev/null +++ b/.github/workflows/publish-pypi.yml @@ -0,0 +1,31 @@ +# This workflow is triggered when a GitHub release is created. +# It can also be run manually to re-publish to PyPI in case it failed for some reason. +# You can run this workflow by navigating to https://www.github.com/jed-richards/tmdb-client-python/actions/workflows/publish-pypi.yml +name: Publish PyPI +on: + workflow_dispatch: + + release: + types: [published] + +jobs: + publish: + name: publish + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Install Rye + run: | + curl -sSf https://rye.astral.sh/get | bash + echo "$HOME/.rye/shims" >> $GITHUB_PATH + env: + RYE_VERSION: '0.35.0' + RYE_INSTALL_OPTION: '--yes' + + - name: Publish to PyPI + run: | + bash ./bin/publish-pypi + env: + PYPI_TOKEN: ${{ secrets.TMDB_CLIENT_PYPI_TOKEN || secrets.PYPI_TOKEN }} diff --git a/.github/workflows/release-doctor.yml b/.github/workflows/release-doctor.yml new file mode 100644 index 0000000..5fc951c --- /dev/null +++ b/.github/workflows/release-doctor.yml @@ -0,0 +1,21 @@ +name: Release Doctor +on: + pull_request: + branches: + - main + workflow_dispatch: + +jobs: + release_doctor: + name: release doctor + runs-on: ubuntu-latest + if: github.repository == 'jed-richards/tmdb-client-python' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next') + + steps: + - uses: actions/checkout@v4 + + - name: Check release environment + run: | + bash ./bin/check-release-environment + env: + PYPI_TOKEN: ${{ secrets.TMDB_CLIENT_PYPI_TOKEN || secrets.PYPI_TOKEN }} diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 0000000..c476280 --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,3 @@ +{ + ".": "0.0.1-alpha.0" +} \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 493de80..c9062e6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -63,7 +63,7 @@ If you’d like to use the repository from source, you can either install from g To install via git: ```sh -$ pip install git+ssh://git@github.com/stainless-sdks/tmdb-client-python.git +$ pip install git+ssh://git@github.com/jed-richards/tmdb-client-python.git ``` Alternatively, you can build from source and install the wheel file: @@ -121,7 +121,7 @@ the changes aren't made through the automated pipeline, you may want to make rel ### Publish with a GitHub workflow -You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/stainless-sdks/tmdb-client-python/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up. +You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/jed-richards/tmdb-client-python/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up. ### Publish manually diff --git a/README.md b/README.md index 1023ae8..6d1e935 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,8 @@ The REST API documentation can be found on [docs.tmdb-client.com](https://docs.t ## Installation ```sh -# install from this staging repo -pip install git+ssh://git@github.com/stainless-sdks/tmdb-client-python.git +# install from the production repo +pip install git+ssh://git@github.com/jed-richards/tmdb-client-python.git ``` > [!NOTE] @@ -206,9 +206,9 @@ latest = response.parse() # get the object that `movies.latest.retrieve()` woul print(latest.id) ``` -These methods return an [`APIResponse`](https://github.com/stainless-sdks/tmdb-client-python/tree/main/src/tmdb_client/_response.py) object. +These methods return an [`APIResponse`](https://github.com/jed-richards/tmdb-client-python/tree/main/src/tmdb_client/_response.py) object. -The async client returns an [`AsyncAPIResponse`](https://github.com/stainless-sdks/tmdb-client-python/tree/main/src/tmdb_client/_response.py) with the same structure, the only difference being `await`able methods for reading the response content. +The async client returns an [`AsyncAPIResponse`](https://github.com/jed-richards/tmdb-client-python/tree/main/src/tmdb_client/_response.py) with the same structure, the only difference being `await`able methods for reading the response content. #### `.with_streaming_response` @@ -302,7 +302,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience. -We are keen for your feedback; please open an [issue](https://www.github.com/stainless-sdks/tmdb-client-python/issues) with questions, bugs, or suggestions. +We are keen for your feedback; please open an [issue](https://www.github.com/jed-richards/tmdb-client-python/issues) with questions, bugs, or suggestions. ### Determining the installed version diff --git a/bin/check-release-environment b/bin/check-release-environment new file mode 100644 index 0000000..7d1a2f7 --- /dev/null +++ b/bin/check-release-environment @@ -0,0 +1,21 @@ +#!/usr/bin/env bash + +errors=() + +if [ -z "${PYPI_TOKEN}" ]; then + errors+=("The TMDB_CLIENT_PYPI_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets.") +fi + +lenErrors=${#errors[@]} + +if [[ lenErrors -gt 0 ]]; then + echo -e "Found the following errors in the release environment:\n" + + for error in "${errors[@]}"; do + echo -e "- $error\n" + done + + exit 1 +fi + +echo "The environment is ready to push releases!" diff --git a/pyproject.toml b/pyproject.toml index fb261e0..678afc5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,8 +34,8 @@ classifiers = [ ] [project.urls] -Homepage = "https://github.com/stainless-sdks/tmdb-client-python" -Repository = "https://github.com/stainless-sdks/tmdb-client-python" +Homepage = "https://github.com/jed-richards/tmdb-client-python" +Repository = "https://github.com/jed-richards/tmdb-client-python" @@ -122,7 +122,7 @@ path = "README.md" [[tool.hatch.metadata.hooks.fancy-pypi-readme.substitutions]] # replace relative links with absolute links pattern = '\[(.+?)\]\(((?!https?://)\S+?)\)' -replacement = '[\1](https://github.com/stainless-sdks/tmdb-client-python/tree/main/\g<2>)' +replacement = '[\1](https://github.com/jed-richards/tmdb-client-python/tree/main/\g<2>)' [tool.pytest.ini_options] testpaths = ["tests"] diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 0000000..daad7a3 --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,66 @@ +{ + "packages": { + ".": {} + }, + "$schema": "https://raw.githubusercontent.com/stainless-api/release-please/main/schemas/config.json", + "include-v-in-tag": true, + "include-component-in-tag": false, + "versioning": "prerelease", + "prerelease": true, + "bump-minor-pre-major": true, + "bump-patch-for-minor-pre-major": false, + "pull-request-header": "Automated Release PR", + "pull-request-title-pattern": "release: ${version}", + "changelog-sections": [ + { + "type": "feat", + "section": "Features" + }, + { + "type": "fix", + "section": "Bug Fixes" + }, + { + "type": "perf", + "section": "Performance Improvements" + }, + { + "type": "revert", + "section": "Reverts" + }, + { + "type": "chore", + "section": "Chores" + }, + { + "type": "docs", + "section": "Documentation" + }, + { + "type": "style", + "section": "Styles" + }, + { + "type": "refactor", + "section": "Refactors" + }, + { + "type": "test", + "section": "Tests", + "hidden": true + }, + { + "type": "build", + "section": "Build System" + }, + { + "type": "ci", + "section": "Continuous Integration", + "hidden": true + } + ], + "release-type": "python", + "extra-files": [ + "src/tmdb_client/_version.py" + ] +} \ No newline at end of file diff --git a/src/tmdb_client/_version.py b/src/tmdb_client/_version.py index 0124ad1..0b2ebff 100644 --- a/src/tmdb_client/_version.py +++ b/src/tmdb_client/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "tmdb_client" -__version__ = "0.0.1-alpha.0" +__version__ = "0.0.1-alpha.0" # x-release-please-version diff --git a/src/tmdb_client/resources/accounts/accounts.py b/src/tmdb_client/resources/accounts/accounts.py index 0a33916..da1e73f 100644 --- a/src/tmdb_client/resources/accounts/accounts.py +++ b/src/tmdb_client/resources/accounts/accounts.py @@ -105,7 +105,7 @@ def with_raw_response(self) -> AccountsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AccountsResourceWithRawResponse(self) @@ -114,7 +114,7 @@ def with_streaming_response(self) -> AccountsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AccountsResourceWithStreamingResponse(self) @@ -186,7 +186,7 @@ def with_raw_response(self) -> AsyncAccountsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncAccountsResourceWithRawResponse(self) @@ -195,7 +195,7 @@ def with_streaming_response(self) -> AsyncAccountsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncAccountsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/accounts/favorite/favorite.py b/src/tmdb_client/resources/accounts/favorite/favorite.py index a65d699..78c6dcb 100644 --- a/src/tmdb_client/resources/accounts/favorite/favorite.py +++ b/src/tmdb_client/resources/accounts/favorite/favorite.py @@ -55,7 +55,7 @@ def with_raw_response(self) -> FavoriteResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return FavoriteResourceWithRawResponse(self) @@ -64,7 +64,7 @@ def with_streaming_response(self) -> FavoriteResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return FavoriteResourceWithStreamingResponse(self) @@ -122,7 +122,7 @@ def with_raw_response(self) -> AsyncFavoriteResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncFavoriteResourceWithRawResponse(self) @@ -131,7 +131,7 @@ def with_streaming_response(self) -> AsyncFavoriteResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncFavoriteResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/accounts/favorite/movies.py b/src/tmdb_client/resources/accounts/favorite/movies.py index 47ea2c1..38257d7 100644 --- a/src/tmdb_client/resources/accounts/favorite/movies.py +++ b/src/tmdb_client/resources/accounts/favorite/movies.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> MoviesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return MoviesResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> MoviesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return MoviesResourceWithStreamingResponse(self) @@ -101,7 +101,7 @@ def with_raw_response(self) -> AsyncMoviesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncMoviesResourceWithRawResponse(self) @@ -110,7 +110,7 @@ def with_streaming_response(self) -> AsyncMoviesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncMoviesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/accounts/favorite/tv.py b/src/tmdb_client/resources/accounts/favorite/tv.py index 9e4b46a..9704ce7 100644 --- a/src/tmdb_client/resources/accounts/favorite/tv.py +++ b/src/tmdb_client/resources/accounts/favorite/tv.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> TvResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TvResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> TvResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TvResourceWithStreamingResponse(self) @@ -101,7 +101,7 @@ def with_raw_response(self) -> AsyncTvResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTvResourceWithRawResponse(self) @@ -110,7 +110,7 @@ def with_streaming_response(self) -> AsyncTvResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTvResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/accounts/lists.py b/src/tmdb_client/resources/accounts/lists.py index ff275f1..a79305a 100644 --- a/src/tmdb_client/resources/accounts/lists.py +++ b/src/tmdb_client/resources/accounts/lists.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> ListsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ListsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> ListsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ListsResourceWithStreamingResponse(self) @@ -95,7 +95,7 @@ def with_raw_response(self) -> AsyncListsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncListsResourceWithRawResponse(self) @@ -104,7 +104,7 @@ def with_streaming_response(self) -> AsyncListsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncListsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/accounts/rated/movies.py b/src/tmdb_client/resources/accounts/rated/movies.py index f922c67..b15b8e5 100644 --- a/src/tmdb_client/resources/accounts/rated/movies.py +++ b/src/tmdb_client/resources/accounts/rated/movies.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> MoviesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return MoviesResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> MoviesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return MoviesResourceWithStreamingResponse(self) @@ -101,7 +101,7 @@ def with_raw_response(self) -> AsyncMoviesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncMoviesResourceWithRawResponse(self) @@ -110,7 +110,7 @@ def with_streaming_response(self) -> AsyncMoviesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncMoviesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/accounts/rated/rated.py b/src/tmdb_client/resources/accounts/rated/rated.py index e450421..f545f3e 100644 --- a/src/tmdb_client/resources/accounts/rated/rated.py +++ b/src/tmdb_client/resources/accounts/rated/rated.py @@ -51,7 +51,7 @@ def with_raw_response(self) -> RatedResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return RatedResourceWithRawResponse(self) @@ -60,7 +60,7 @@ def with_streaming_response(self) -> RatedResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return RatedResourceWithStreamingResponse(self) @@ -84,7 +84,7 @@ def with_raw_response(self) -> AsyncRatedResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncRatedResourceWithRawResponse(self) @@ -93,7 +93,7 @@ def with_streaming_response(self) -> AsyncRatedResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncRatedResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/accounts/rated/tv.py b/src/tmdb_client/resources/accounts/rated/tv.py index 0ff8c9f..866716c 100644 --- a/src/tmdb_client/resources/accounts/rated/tv.py +++ b/src/tmdb_client/resources/accounts/rated/tv.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> TvResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TvResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> TvResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TvResourceWithStreamingResponse(self) @@ -101,7 +101,7 @@ def with_raw_response(self) -> AsyncTvResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTvResourceWithRawResponse(self) @@ -110,7 +110,7 @@ def with_streaming_response(self) -> AsyncTvResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTvResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/accounts/rated/tv_episodes.py b/src/tmdb_client/resources/accounts/rated/tv_episodes.py index 047d727..32003b2 100644 --- a/src/tmdb_client/resources/accounts/rated/tv_episodes.py +++ b/src/tmdb_client/resources/accounts/rated/tv_episodes.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> TvEpisodesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TvEpisodesResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> TvEpisodesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TvEpisodesResourceWithStreamingResponse(self) @@ -101,7 +101,7 @@ def with_raw_response(self) -> AsyncTvEpisodesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTvEpisodesResourceWithRawResponse(self) @@ -110,7 +110,7 @@ def with_streaming_response(self) -> AsyncTvEpisodesResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTvEpisodesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/accounts/watchlist.py b/src/tmdb_client/resources/accounts/watchlist.py index ae375f7..307e4c5 100644 --- a/src/tmdb_client/resources/accounts/watchlist.py +++ b/src/tmdb_client/resources/accounts/watchlist.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> WatchlistResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return WatchlistResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> WatchlistResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return WatchlistResourceWithStreamingResponse(self) @@ -90,7 +90,7 @@ def with_raw_response(self) -> AsyncWatchlistResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncWatchlistResourceWithRawResponse(self) @@ -99,7 +99,7 @@ def with_streaming_response(self) -> AsyncWatchlistResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncWatchlistResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/accounts/watchlist_movies.py b/src/tmdb_client/resources/accounts/watchlist_movies.py index 03768e7..61fd4f0 100644 --- a/src/tmdb_client/resources/accounts/watchlist_movies.py +++ b/src/tmdb_client/resources/accounts/watchlist_movies.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> WatchlistMoviesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return WatchlistMoviesResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> WatchlistMoviesResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return WatchlistMoviesResourceWithStreamingResponse(self) @@ -101,7 +101,7 @@ def with_raw_response(self) -> AsyncWatchlistMoviesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncWatchlistMoviesResourceWithRawResponse(self) @@ -110,7 +110,7 @@ def with_streaming_response(self) -> AsyncWatchlistMoviesResourceWithStreamingRe """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncWatchlistMoviesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/accounts/watchlist_tv.py b/src/tmdb_client/resources/accounts/watchlist_tv.py index 7a6f568..4179074 100644 --- a/src/tmdb_client/resources/accounts/watchlist_tv.py +++ b/src/tmdb_client/resources/accounts/watchlist_tv.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> WatchlistTvResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return WatchlistTvResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> WatchlistTvResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return WatchlistTvResourceWithStreamingResponse(self) @@ -101,7 +101,7 @@ def with_raw_response(self) -> AsyncWatchlistTvResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncWatchlistTvResourceWithRawResponse(self) @@ -110,7 +110,7 @@ def with_streaming_response(self) -> AsyncWatchlistTvResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncWatchlistTvResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/authentication/authentication.py b/src/tmdb_client/resources/authentication/authentication.py index bd85f29..f0d5f8f 100644 --- a/src/tmdb_client/resources/authentication/authentication.py +++ b/src/tmdb_client/resources/authentication/authentication.py @@ -62,7 +62,7 @@ def with_raw_response(self) -> AuthenticationResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AuthenticationResourceWithRawResponse(self) @@ -71,7 +71,7 @@ def with_streaming_response(self) -> AuthenticationResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AuthenticationResourceWithStreamingResponse(self) @@ -114,7 +114,7 @@ def with_raw_response(self) -> AsyncAuthenticationResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncAuthenticationResourceWithRawResponse(self) @@ -123,7 +123,7 @@ def with_streaming_response(self) -> AsyncAuthenticationResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncAuthenticationResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/authentication/guest_session.py b/src/tmdb_client/resources/authentication/guest_session.py index df6bc5e..72572ca 100644 --- a/src/tmdb_client/resources/authentication/guest_session.py +++ b/src/tmdb_client/resources/authentication/guest_session.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> GuestSessionResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return GuestSessionResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> GuestSessionResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return GuestSessionResourceWithStreamingResponse(self) @@ -66,7 +66,7 @@ def with_raw_response(self) -> AsyncGuestSessionResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncGuestSessionResourceWithRawResponse(self) @@ -75,7 +75,7 @@ def with_streaming_response(self) -> AsyncGuestSessionResourceWithStreamingRespo """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncGuestSessionResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/authentication/session.py b/src/tmdb_client/resources/authentication/session.py index 954dab9..b4c9dc9 100644 --- a/src/tmdb_client/resources/authentication/session.py +++ b/src/tmdb_client/resources/authentication/session.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> SessionResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return SessionResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> SessionResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return SessionResourceWithStreamingResponse(self) @@ -150,7 +150,7 @@ def with_raw_response(self) -> AsyncSessionResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncSessionResourceWithRawResponse(self) @@ -159,7 +159,7 @@ def with_streaming_response(self) -> AsyncSessionResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncSessionResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/authentication/token.py b/src/tmdb_client/resources/authentication/token.py index 1ce1329..bd93740 100644 --- a/src/tmdb_client/resources/authentication/token.py +++ b/src/tmdb_client/resources/authentication/token.py @@ -32,7 +32,7 @@ def with_raw_response(self) -> TokenResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TokenResourceWithRawResponse(self) @@ -41,7 +41,7 @@ def with_streaming_response(self) -> TokenResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TokenResourceWithStreamingResponse(self) @@ -105,7 +105,7 @@ def with_raw_response(self) -> AsyncTokenResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTokenResourceWithRawResponse(self) @@ -114,7 +114,7 @@ def with_streaming_response(self) -> AsyncTokenResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTokenResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/certifications/certifications.py b/src/tmdb_client/resources/certifications/certifications.py index 980dacf..3e0ec7c 100644 --- a/src/tmdb_client/resources/certifications/certifications.py +++ b/src/tmdb_client/resources/certifications/certifications.py @@ -39,7 +39,7 @@ def with_raw_response(self) -> CertificationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return CertificationsResourceWithRawResponse(self) @@ -48,7 +48,7 @@ def with_streaming_response(self) -> CertificationsResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return CertificationsResourceWithStreamingResponse(self) @@ -68,7 +68,7 @@ def with_raw_response(self) -> AsyncCertificationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncCertificationsResourceWithRawResponse(self) @@ -77,7 +77,7 @@ def with_streaming_response(self) -> AsyncCertificationsResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncCertificationsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/certifications/movie.py b/src/tmdb_client/resources/certifications/movie.py index f051287..6e86f91 100644 --- a/src/tmdb_client/resources/certifications/movie.py +++ b/src/tmdb_client/resources/certifications/movie.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> MovieResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return MovieResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> MovieResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return MovieResourceWithStreamingResponse(self) @@ -68,7 +68,7 @@ def with_raw_response(self) -> AsyncMovieResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncMovieResourceWithRawResponse(self) @@ -77,7 +77,7 @@ def with_streaming_response(self) -> AsyncMovieResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncMovieResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/certifications/tv.py b/src/tmdb_client/resources/certifications/tv.py index 5e6bed2..2fa6bd3 100644 --- a/src/tmdb_client/resources/certifications/tv.py +++ b/src/tmdb_client/resources/certifications/tv.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> TvResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TvResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> TvResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TvResourceWithStreamingResponse(self) @@ -66,7 +66,7 @@ def with_raw_response(self) -> AsyncTvResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTvResourceWithRawResponse(self) @@ -75,7 +75,7 @@ def with_streaming_response(self) -> AsyncTvResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTvResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/collections/collections.py b/src/tmdb_client/resources/collections/collections.py index 2a21d05..72f04b9 100644 --- a/src/tmdb_client/resources/collections/collections.py +++ b/src/tmdb_client/resources/collections/collections.py @@ -55,7 +55,7 @@ def with_raw_response(self) -> CollectionsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return CollectionsResourceWithRawResponse(self) @@ -64,7 +64,7 @@ def with_streaming_response(self) -> CollectionsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return CollectionsResourceWithStreamingResponse(self) @@ -120,7 +120,7 @@ def with_raw_response(self) -> AsyncCollectionsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncCollectionsResourceWithRawResponse(self) @@ -129,7 +129,7 @@ def with_streaming_response(self) -> AsyncCollectionsResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncCollectionsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/collections/images.py b/src/tmdb_client/resources/collections/images.py index dff8f96..fc4cf4c 100644 --- a/src/tmdb_client/resources/collections/images.py +++ b/src/tmdb_client/resources/collections/images.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> ImagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ImagesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> ImagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ImagesResourceWithStreamingResponse(self) @@ -99,7 +99,7 @@ def with_raw_response(self) -> AsyncImagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncImagesResourceWithRawResponse(self) @@ -108,7 +108,7 @@ def with_streaming_response(self) -> AsyncImagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncImagesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/collections/translations.py b/src/tmdb_client/resources/collections/translations.py index 7368010..9b0156b 100644 --- a/src/tmdb_client/resources/collections/translations.py +++ b/src/tmdb_client/resources/collections/translations.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> TranslationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TranslationsResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> TranslationsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TranslationsResourceWithStreamingResponse(self) @@ -78,7 +78,7 @@ def with_raw_response(self) -> AsyncTranslationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTranslationsResourceWithRawResponse(self) @@ -87,7 +87,7 @@ def with_streaming_response(self) -> AsyncTranslationsResourceWithStreamingRespo """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTranslationsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/companies/alternative_names.py b/src/tmdb_client/resources/companies/alternative_names.py index 69c2c59..b32bf0a 100644 --- a/src/tmdb_client/resources/companies/alternative_names.py +++ b/src/tmdb_client/resources/companies/alternative_names.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> AlternativeNamesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AlternativeNamesResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> AlternativeNamesResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AlternativeNamesResourceWithStreamingResponse(self) @@ -78,7 +78,7 @@ def with_raw_response(self) -> AsyncAlternativeNamesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncAlternativeNamesResourceWithRawResponse(self) @@ -87,7 +87,7 @@ def with_streaming_response(self) -> AsyncAlternativeNamesResourceWithStreamingR """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncAlternativeNamesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/companies/companies.py b/src/tmdb_client/resources/companies/companies.py index 78e5128..6efa557 100644 --- a/src/tmdb_client/resources/companies/companies.py +++ b/src/tmdb_client/resources/companies/companies.py @@ -50,7 +50,7 @@ def with_raw_response(self) -> CompaniesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return CompaniesResourceWithRawResponse(self) @@ -59,7 +59,7 @@ def with_streaming_response(self) -> CompaniesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return CompaniesResourceWithStreamingResponse(self) @@ -110,7 +110,7 @@ def with_raw_response(self) -> AsyncCompaniesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncCompaniesResourceWithRawResponse(self) @@ -119,7 +119,7 @@ def with_streaming_response(self) -> AsyncCompaniesResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncCompaniesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/companies/images.py b/src/tmdb_client/resources/companies/images.py index c1d336f..55998b1 100644 --- a/src/tmdb_client/resources/companies/images.py +++ b/src/tmdb_client/resources/companies/images.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> ImagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ImagesResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> ImagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ImagesResourceWithStreamingResponse(self) @@ -78,7 +78,7 @@ def with_raw_response(self) -> AsyncImagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncImagesResourceWithRawResponse(self) @@ -87,7 +87,7 @@ def with_streaming_response(self) -> AsyncImagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncImagesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/configuration/configuration.py b/src/tmdb_client/resources/configuration/configuration.py index 6046565..b9cff48 100644 --- a/src/tmdb_client/resources/configuration/configuration.py +++ b/src/tmdb_client/resources/configuration/configuration.py @@ -86,7 +86,7 @@ def with_raw_response(self) -> ConfigurationResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ConfigurationResourceWithRawResponse(self) @@ -95,7 +95,7 @@ def with_streaming_response(self) -> ConfigurationResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ConfigurationResourceWithStreamingResponse(self) @@ -146,7 +146,7 @@ def with_raw_response(self) -> AsyncConfigurationResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncConfigurationResourceWithRawResponse(self) @@ -155,7 +155,7 @@ def with_streaming_response(self) -> AsyncConfigurationResourceWithStreamingResp """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncConfigurationResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/configuration/countries.py b/src/tmdb_client/resources/configuration/countries.py index 67cce2d..39bbe64 100644 --- a/src/tmdb_client/resources/configuration/countries.py +++ b/src/tmdb_client/resources/configuration/countries.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> CountriesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return CountriesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> CountriesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return CountriesResourceWithStreamingResponse(self) @@ -87,7 +87,7 @@ def with_raw_response(self) -> AsyncCountriesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncCountriesResourceWithRawResponse(self) @@ -96,7 +96,7 @@ def with_streaming_response(self) -> AsyncCountriesResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncCountriesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/configuration/jobs.py b/src/tmdb_client/resources/configuration/jobs.py index 17b1ea0..021e25c 100644 --- a/src/tmdb_client/resources/configuration/jobs.py +++ b/src/tmdb_client/resources/configuration/jobs.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> JobsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return JobsResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> JobsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return JobsResourceWithStreamingResponse(self) @@ -66,7 +66,7 @@ def with_raw_response(self) -> AsyncJobsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncJobsResourceWithRawResponse(self) @@ -75,7 +75,7 @@ def with_streaming_response(self) -> AsyncJobsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncJobsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/configuration/languages.py b/src/tmdb_client/resources/configuration/languages.py index 13dde83..d71c454 100644 --- a/src/tmdb_client/resources/configuration/languages.py +++ b/src/tmdb_client/resources/configuration/languages.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> LanguagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return LanguagesResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> LanguagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return LanguagesResourceWithStreamingResponse(self) @@ -66,7 +66,7 @@ def with_raw_response(self) -> AsyncLanguagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncLanguagesResourceWithRawResponse(self) @@ -75,7 +75,7 @@ def with_streaming_response(self) -> AsyncLanguagesResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncLanguagesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/configuration/primary_translations.py b/src/tmdb_client/resources/configuration/primary_translations.py index 7165f9c..48e7d85 100644 --- a/src/tmdb_client/resources/configuration/primary_translations.py +++ b/src/tmdb_client/resources/configuration/primary_translations.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> PrimaryTranslationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return PrimaryTranslationsResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> PrimaryTranslationsResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return PrimaryTranslationsResourceWithStreamingResponse(self) @@ -66,7 +66,7 @@ def with_raw_response(self) -> AsyncPrimaryTranslationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncPrimaryTranslationsResourceWithRawResponse(self) @@ -75,7 +75,7 @@ def with_streaming_response(self) -> AsyncPrimaryTranslationsResourceWithStreami """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncPrimaryTranslationsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/configuration/timezones.py b/src/tmdb_client/resources/configuration/timezones.py index a50fa91..368767b 100644 --- a/src/tmdb_client/resources/configuration/timezones.py +++ b/src/tmdb_client/resources/configuration/timezones.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> TimezonesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TimezonesResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> TimezonesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TimezonesResourceWithStreamingResponse(self) @@ -66,7 +66,7 @@ def with_raw_response(self) -> AsyncTimezonesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTimezonesResourceWithRawResponse(self) @@ -75,7 +75,7 @@ def with_streaming_response(self) -> AsyncTimezonesResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTimezonesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/credits.py b/src/tmdb_client/resources/credits.py index 717c456..bcd2893 100644 --- a/src/tmdb_client/resources/credits.py +++ b/src/tmdb_client/resources/credits.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> CreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return CreditsResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> CreditsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return CreditsResourceWithStreamingResponse(self) @@ -80,7 +80,7 @@ def with_raw_response(self) -> AsyncCreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncCreditsResourceWithRawResponse(self) @@ -89,7 +89,7 @@ def with_streaming_response(self) -> AsyncCreditsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncCreditsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/discover_tv.py b/src/tmdb_client/resources/discover_tv.py index 154c2e7..b0e031f 100644 --- a/src/tmdb_client/resources/discover_tv.py +++ b/src/tmdb_client/resources/discover_tv.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> DiscoverTvResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return DiscoverTvResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> DiscoverTvResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return DiscoverTvResourceWithStreamingResponse(self) @@ -183,7 +183,7 @@ def with_raw_response(self) -> AsyncDiscoverTvResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncDiscoverTvResourceWithRawResponse(self) @@ -192,7 +192,7 @@ def with_streaming_response(self) -> AsyncDiscoverTvResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncDiscoverTvResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/episodes.py b/src/tmdb_client/resources/episodes.py index 1d9e197..edb3768 100644 --- a/src/tmdb_client/resources/episodes.py +++ b/src/tmdb_client/resources/episodes.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> EpisodesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return EpisodesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> EpisodesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return EpisodesResourceWithStreamingResponse(self) @@ -97,7 +97,7 @@ def with_raw_response(self) -> AsyncEpisodesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncEpisodesResourceWithRawResponse(self) @@ -106,7 +106,7 @@ def with_streaming_response(self) -> AsyncEpisodesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncEpisodesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/find.py b/src/tmdb_client/resources/find.py index 68135e1..cf96524 100644 --- a/src/tmdb_client/resources/find.py +++ b/src/tmdb_client/resources/find.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> FindResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return FindResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> FindResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return FindResourceWithStreamingResponse(self) @@ -109,7 +109,7 @@ def with_raw_response(self) -> AsyncFindResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncFindResourceWithRawResponse(self) @@ -118,7 +118,7 @@ def with_streaming_response(self) -> AsyncFindResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncFindResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/genres/genres.py b/src/tmdb_client/resources/genres/genres.py index 5610fa0..d05426f 100644 --- a/src/tmdb_client/resources/genres/genres.py +++ b/src/tmdb_client/resources/genres/genres.py @@ -39,7 +39,7 @@ def with_raw_response(self) -> GenresResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return GenresResourceWithRawResponse(self) @@ -48,7 +48,7 @@ def with_streaming_response(self) -> GenresResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return GenresResourceWithStreamingResponse(self) @@ -68,7 +68,7 @@ def with_raw_response(self) -> AsyncGenresResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncGenresResourceWithRawResponse(self) @@ -77,7 +77,7 @@ def with_streaming_response(self) -> AsyncGenresResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncGenresResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/genres/movies.py b/src/tmdb_client/resources/genres/movies.py index 0d60129..d311dad 100644 --- a/src/tmdb_client/resources/genres/movies.py +++ b/src/tmdb_client/resources/genres/movies.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> MoviesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return MoviesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> MoviesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return MoviesResourceWithStreamingResponse(self) @@ -87,7 +87,7 @@ def with_raw_response(self) -> AsyncMoviesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncMoviesResourceWithRawResponse(self) @@ -96,7 +96,7 @@ def with_streaming_response(self) -> AsyncMoviesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncMoviesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/genres/tv.py b/src/tmdb_client/resources/genres/tv.py index 9a4a6ac..1e0d39c 100644 --- a/src/tmdb_client/resources/genres/tv.py +++ b/src/tmdb_client/resources/genres/tv.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> TvResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TvResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> TvResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TvResourceWithStreamingResponse(self) @@ -87,7 +87,7 @@ def with_raw_response(self) -> AsyncTvResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTvResourceWithRawResponse(self) @@ -96,7 +96,7 @@ def with_streaming_response(self) -> AsyncTvResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTvResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/guest_sessions/guest_sessions.py b/src/tmdb_client/resources/guest_sessions/guest_sessions.py index 6ef63ba..e990350 100644 --- a/src/tmdb_client/resources/guest_sessions/guest_sessions.py +++ b/src/tmdb_client/resources/guest_sessions/guest_sessions.py @@ -40,7 +40,7 @@ def with_raw_response(self) -> GuestSessionsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return GuestSessionsResourceWithRawResponse(self) @@ -49,7 +49,7 @@ def with_streaming_response(self) -> GuestSessionsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return GuestSessionsResourceWithStreamingResponse(self) @@ -69,7 +69,7 @@ def with_raw_response(self) -> AsyncGuestSessionsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncGuestSessionsResourceWithRawResponse(self) @@ -78,7 +78,7 @@ def with_streaming_response(self) -> AsyncGuestSessionsResourceWithStreamingResp """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncGuestSessionsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/guest_sessions/rated/movies.py b/src/tmdb_client/resources/guest_sessions/rated/movies.py index c2c47fc..41e0dbc 100644 --- a/src/tmdb_client/resources/guest_sessions/rated/movies.py +++ b/src/tmdb_client/resources/guest_sessions/rated/movies.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> MoviesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return MoviesResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> MoviesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return MoviesResourceWithStreamingResponse(self) @@ -101,7 +101,7 @@ def with_raw_response(self) -> AsyncMoviesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncMoviesResourceWithRawResponse(self) @@ -110,7 +110,7 @@ def with_streaming_response(self) -> AsyncMoviesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncMoviesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/guest_sessions/rated/rated.py b/src/tmdb_client/resources/guest_sessions/rated/rated.py index dd3f7c5..98fe64e 100644 --- a/src/tmdb_client/resources/guest_sessions/rated/rated.py +++ b/src/tmdb_client/resources/guest_sessions/rated/rated.py @@ -39,7 +39,7 @@ def with_raw_response(self) -> RatedResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return RatedResourceWithRawResponse(self) @@ -48,7 +48,7 @@ def with_streaming_response(self) -> RatedResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return RatedResourceWithStreamingResponse(self) @@ -68,7 +68,7 @@ def with_raw_response(self) -> AsyncRatedResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncRatedResourceWithRawResponse(self) @@ -77,7 +77,7 @@ def with_streaming_response(self) -> AsyncRatedResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncRatedResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/guest_sessions/rated/tv.py b/src/tmdb_client/resources/guest_sessions/rated/tv.py index 03d5153..2485669 100644 --- a/src/tmdb_client/resources/guest_sessions/rated/tv.py +++ b/src/tmdb_client/resources/guest_sessions/rated/tv.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> TvResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TvResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> TvResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TvResourceWithStreamingResponse(self) @@ -101,7 +101,7 @@ def with_raw_response(self) -> AsyncTvResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTvResourceWithRawResponse(self) @@ -110,7 +110,7 @@ def with_streaming_response(self) -> AsyncTvResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTvResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/guest_sessions/tv_episodes.py b/src/tmdb_client/resources/guest_sessions/tv_episodes.py index 0d2d15e..9854709 100644 --- a/src/tmdb_client/resources/guest_sessions/tv_episodes.py +++ b/src/tmdb_client/resources/guest_sessions/tv_episodes.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> TvEpisodesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TvEpisodesResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> TvEpisodesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TvEpisodesResourceWithStreamingResponse(self) @@ -101,7 +101,7 @@ def with_raw_response(self) -> AsyncTvEpisodesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTvEpisodesResourceWithRawResponse(self) @@ -110,7 +110,7 @@ def with_streaming_response(self) -> AsyncTvEpisodesResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTvEpisodesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/keywords/keywords.py b/src/tmdb_client/resources/keywords/keywords.py index f3e0d58..ae8a628 100644 --- a/src/tmdb_client/resources/keywords/keywords.py +++ b/src/tmdb_client/resources/keywords/keywords.py @@ -44,7 +44,7 @@ def with_raw_response(self) -> KeywordsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return KeywordsResourceWithRawResponse(self) @@ -53,7 +53,7 @@ def with_streaming_response(self) -> KeywordsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return KeywordsResourceWithStreamingResponse(self) @@ -142,7 +142,7 @@ def with_raw_response(self) -> AsyncKeywordsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncKeywordsResourceWithRawResponse(self) @@ -151,7 +151,7 @@ def with_streaming_response(self) -> AsyncKeywordsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncKeywordsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/keywords/movies.py b/src/tmdb_client/resources/keywords/movies.py index 51173e9..c6056d2 100644 --- a/src/tmdb_client/resources/keywords/movies.py +++ b/src/tmdb_client/resources/keywords/movies.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> MoviesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return MoviesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> MoviesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return MoviesResourceWithStreamingResponse(self) @@ -99,7 +99,7 @@ def with_raw_response(self) -> AsyncMoviesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncMoviesResourceWithRawResponse(self) @@ -108,7 +108,7 @@ def with_streaming_response(self) -> AsyncMoviesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncMoviesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/lists.py b/src/tmdb_client/resources/lists.py index 96d6e6d..9efb872 100644 --- a/src/tmdb_client/resources/lists.py +++ b/src/tmdb_client/resources/lists.py @@ -45,7 +45,7 @@ def with_raw_response(self) -> ListsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ListsResourceWithRawResponse(self) @@ -54,7 +54,7 @@ def with_streaming_response(self) -> ListsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ListsResourceWithStreamingResponse(self) @@ -344,7 +344,7 @@ def with_raw_response(self) -> AsyncListsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncListsResourceWithRawResponse(self) @@ -353,7 +353,7 @@ def with_streaming_response(self) -> AsyncListsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncListsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/account_states.py b/src/tmdb_client/resources/movies/account_states.py index b3fea19..1c0a8b2 100644 --- a/src/tmdb_client/resources/movies/account_states.py +++ b/src/tmdb_client/resources/movies/account_states.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> AccountStatesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AccountStatesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> AccountStatesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AccountStatesResourceWithStreamingResponse(self) @@ -95,7 +95,7 @@ def with_raw_response(self) -> AsyncAccountStatesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncAccountStatesResourceWithRawResponse(self) @@ -104,7 +104,7 @@ def with_streaming_response(self) -> AsyncAccountStatesResourceWithStreamingResp """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncAccountStatesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/alternative_titles.py b/src/tmdb_client/resources/movies/alternative_titles.py index d6c67a8..aec5429 100644 --- a/src/tmdb_client/resources/movies/alternative_titles.py +++ b/src/tmdb_client/resources/movies/alternative_titles.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> AlternativeTitlesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AlternativeTitlesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> AlternativeTitlesResourceWithStreamingRespo """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AlternativeTitlesResourceWithStreamingResponse(self) @@ -92,7 +92,7 @@ def with_raw_response(self) -> AsyncAlternativeTitlesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncAlternativeTitlesResourceWithRawResponse(self) @@ -101,7 +101,7 @@ def with_streaming_response(self) -> AsyncAlternativeTitlesResourceWithStreaming """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncAlternativeTitlesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/changes.py b/src/tmdb_client/resources/movies/changes.py index 2ac4be2..21e776b 100644 --- a/src/tmdb_client/resources/movies/changes.py +++ b/src/tmdb_client/resources/movies/changes.py @@ -35,7 +35,7 @@ def with_raw_response(self) -> ChangesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ChangesResourceWithRawResponse(self) @@ -44,7 +44,7 @@ def with_streaming_response(self) -> ChangesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ChangesResourceWithStreamingResponse(self) @@ -145,7 +145,7 @@ def with_raw_response(self) -> AsyncChangesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncChangesResourceWithRawResponse(self) @@ -154,7 +154,7 @@ def with_streaming_response(self) -> AsyncChangesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncChangesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/credits.py b/src/tmdb_client/resources/movies/credits.py index e5b96da..bc3941e 100644 --- a/src/tmdb_client/resources/movies/credits.py +++ b/src/tmdb_client/resources/movies/credits.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> CreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return CreditsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> CreditsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return CreditsResourceWithStreamingResponse(self) @@ -88,7 +88,7 @@ def with_raw_response(self) -> AsyncCreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncCreditsResourceWithRawResponse(self) @@ -97,7 +97,7 @@ def with_streaming_response(self) -> AsyncCreditsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncCreditsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/external_ids.py b/src/tmdb_client/resources/movies/external_ids.py index 738ce81..e781ef0 100644 --- a/src/tmdb_client/resources/movies/external_ids.py +++ b/src/tmdb_client/resources/movies/external_ids.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> ExternalIDsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ExternalIDsResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> ExternalIDsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ExternalIDsResourceWithStreamingResponse(self) @@ -78,7 +78,7 @@ def with_raw_response(self) -> AsyncExternalIDsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncExternalIDsResourceWithRawResponse(self) @@ -87,7 +87,7 @@ def with_streaming_response(self) -> AsyncExternalIDsResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncExternalIDsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/images.py b/src/tmdb_client/resources/movies/images.py index e1d62d3..4d61082 100644 --- a/src/tmdb_client/resources/movies/images.py +++ b/src/tmdb_client/resources/movies/images.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> ImagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ImagesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> ImagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ImagesResourceWithStreamingResponse(self) @@ -99,7 +99,7 @@ def with_raw_response(self) -> AsyncImagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncImagesResourceWithRawResponse(self) @@ -108,7 +108,7 @@ def with_streaming_response(self) -> AsyncImagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncImagesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/keywords.py b/src/tmdb_client/resources/movies/keywords.py index a368747..d1725c0 100644 --- a/src/tmdb_client/resources/movies/keywords.py +++ b/src/tmdb_client/resources/movies/keywords.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> KeywordsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return KeywordsResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> KeywordsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return KeywordsResourceWithStreamingResponse(self) @@ -80,7 +80,7 @@ def with_raw_response(self) -> AsyncKeywordsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncKeywordsResourceWithRawResponse(self) @@ -89,7 +89,7 @@ def with_streaming_response(self) -> AsyncKeywordsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncKeywordsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/latest.py b/src/tmdb_client/resources/movies/latest.py index ef085da..fb159aa 100644 --- a/src/tmdb_client/resources/movies/latest.py +++ b/src/tmdb_client/resources/movies/latest.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> LatestResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return LatestResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> LatestResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return LatestResourceWithStreamingResponse(self) @@ -66,7 +66,7 @@ def with_raw_response(self) -> AsyncLatestResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncLatestResourceWithRawResponse(self) @@ -75,7 +75,7 @@ def with_streaming_response(self) -> AsyncLatestResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncLatestResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/lists.py b/src/tmdb_client/resources/movies/lists.py index cb3b635..0940aba 100644 --- a/src/tmdb_client/resources/movies/lists.py +++ b/src/tmdb_client/resources/movies/lists.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> ListsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ListsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> ListsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ListsResourceWithStreamingResponse(self) @@ -95,7 +95,7 @@ def with_raw_response(self) -> AsyncListsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncListsResourceWithRawResponse(self) @@ -104,7 +104,7 @@ def with_streaming_response(self) -> AsyncListsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncListsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/movies.py b/src/tmdb_client/resources/movies/movies.py index d2532e0..d29163f 100644 --- a/src/tmdb_client/resources/movies/movies.py +++ b/src/tmdb_client/resources/movies/movies.py @@ -283,7 +283,7 @@ def with_raw_response(self) -> MoviesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return MoviesResourceWithRawResponse(self) @@ -292,7 +292,7 @@ def with_streaming_response(self) -> MoviesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return MoviesResourceWithStreamingResponse(self) @@ -712,7 +712,7 @@ def with_raw_response(self) -> AsyncMoviesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncMoviesResourceWithRawResponse(self) @@ -721,7 +721,7 @@ def with_streaming_response(self) -> AsyncMoviesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncMoviesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/now_playing.py b/src/tmdb_client/resources/movies/now_playing.py index b524d54..31c439c 100644 --- a/src/tmdb_client/resources/movies/now_playing.py +++ b/src/tmdb_client/resources/movies/now_playing.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> NowPlayingResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return NowPlayingResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> NowPlayingResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return NowPlayingResourceWithStreamingResponse(self) @@ -98,7 +98,7 @@ def with_raw_response(self) -> AsyncNowPlayingResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncNowPlayingResourceWithRawResponse(self) @@ -107,7 +107,7 @@ def with_streaming_response(self) -> AsyncNowPlayingResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncNowPlayingResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/popular.py b/src/tmdb_client/resources/movies/popular.py index c14ca61..0a1647b 100644 --- a/src/tmdb_client/resources/movies/popular.py +++ b/src/tmdb_client/resources/movies/popular.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> PopularResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return PopularResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> PopularResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return PopularResourceWithStreamingResponse(self) @@ -98,7 +98,7 @@ def with_raw_response(self) -> AsyncPopularResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncPopularResourceWithRawResponse(self) @@ -107,7 +107,7 @@ def with_streaming_response(self) -> AsyncPopularResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncPopularResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/recommendations.py b/src/tmdb_client/resources/movies/recommendations.py index 4f2ea53..88898e9 100644 --- a/src/tmdb_client/resources/movies/recommendations.py +++ b/src/tmdb_client/resources/movies/recommendations.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> RecommendationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return RecommendationsResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> RecommendationsResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return RecommendationsResourceWithStreamingResponse(self) @@ -94,7 +94,7 @@ def with_raw_response(self) -> AsyncRecommendationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncRecommendationsResourceWithRawResponse(self) @@ -103,7 +103,7 @@ def with_streaming_response(self) -> AsyncRecommendationsResourceWithStreamingRe """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncRecommendationsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/release_dates.py b/src/tmdb_client/resources/movies/release_dates.py index 9cb06a6..fa197f0 100644 --- a/src/tmdb_client/resources/movies/release_dates.py +++ b/src/tmdb_client/resources/movies/release_dates.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> ReleaseDatesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ReleaseDatesResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> ReleaseDatesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ReleaseDatesResourceWithStreamingResponse(self) @@ -78,7 +78,7 @@ def with_raw_response(self) -> AsyncReleaseDatesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncReleaseDatesResourceWithRawResponse(self) @@ -87,7 +87,7 @@ def with_streaming_response(self) -> AsyncReleaseDatesResourceWithStreamingRespo """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncReleaseDatesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/reviews.py b/src/tmdb_client/resources/movies/reviews.py index 4e35189..dc624e8 100644 --- a/src/tmdb_client/resources/movies/reviews.py +++ b/src/tmdb_client/resources/movies/reviews.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> ReviewsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ReviewsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> ReviewsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ReviewsResourceWithStreamingResponse(self) @@ -95,7 +95,7 @@ def with_raw_response(self) -> AsyncReviewsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncReviewsResourceWithRawResponse(self) @@ -104,7 +104,7 @@ def with_streaming_response(self) -> AsyncReviewsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncReviewsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/similar.py b/src/tmdb_client/resources/movies/similar.py index d3b7ba7..c274815 100644 --- a/src/tmdb_client/resources/movies/similar.py +++ b/src/tmdb_client/resources/movies/similar.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> SimilarResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return SimilarResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> SimilarResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return SimilarResourceWithStreamingResponse(self) @@ -95,7 +95,7 @@ def with_raw_response(self) -> AsyncSimilarResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncSimilarResourceWithRawResponse(self) @@ -104,7 +104,7 @@ def with_streaming_response(self) -> AsyncSimilarResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncSimilarResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/top_rated.py b/src/tmdb_client/resources/movies/top_rated.py index 06b00e2..906b8b0 100644 --- a/src/tmdb_client/resources/movies/top_rated.py +++ b/src/tmdb_client/resources/movies/top_rated.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> TopRatedResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TopRatedResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> TopRatedResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TopRatedResourceWithStreamingResponse(self) @@ -98,7 +98,7 @@ def with_raw_response(self) -> AsyncTopRatedResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTopRatedResourceWithRawResponse(self) @@ -107,7 +107,7 @@ def with_streaming_response(self) -> AsyncTopRatedResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTopRatedResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/translations.py b/src/tmdb_client/resources/movies/translations.py index 4767c1c..ecc0d39 100644 --- a/src/tmdb_client/resources/movies/translations.py +++ b/src/tmdb_client/resources/movies/translations.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> TranslationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TranslationsResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> TranslationsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TranslationsResourceWithStreamingResponse(self) @@ -78,7 +78,7 @@ def with_raw_response(self) -> AsyncTranslationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTranslationsResourceWithRawResponse(self) @@ -87,7 +87,7 @@ def with_streaming_response(self) -> AsyncTranslationsResourceWithStreamingRespo """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTranslationsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/upcoming.py b/src/tmdb_client/resources/movies/upcoming.py index 40ea3f1..df5fe35 100644 --- a/src/tmdb_client/resources/movies/upcoming.py +++ b/src/tmdb_client/resources/movies/upcoming.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> UpcomingResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return UpcomingResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> UpcomingResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return UpcomingResourceWithStreamingResponse(self) @@ -98,7 +98,7 @@ def with_raw_response(self) -> AsyncUpcomingResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncUpcomingResourceWithRawResponse(self) @@ -107,7 +107,7 @@ def with_streaming_response(self) -> AsyncUpcomingResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncUpcomingResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/videos.py b/src/tmdb_client/resources/movies/videos.py index 41ec3a1..d63cd8d 100644 --- a/src/tmdb_client/resources/movies/videos.py +++ b/src/tmdb_client/resources/movies/videos.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> VideosResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return VideosResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> VideosResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return VideosResourceWithStreamingResponse(self) @@ -88,7 +88,7 @@ def with_raw_response(self) -> AsyncVideosResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncVideosResourceWithRawResponse(self) @@ -97,7 +97,7 @@ def with_streaming_response(self) -> AsyncVideosResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncVideosResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/movies/watch_providers.py b/src/tmdb_client/resources/movies/watch_providers.py index 857ce68..cb80cb2 100644 --- a/src/tmdb_client/resources/movies/watch_providers.py +++ b/src/tmdb_client/resources/movies/watch_providers.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> WatchProvidersResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return WatchProvidersResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> WatchProvidersResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return WatchProvidersResourceWithStreamingResponse(self) @@ -78,7 +78,7 @@ def with_raw_response(self) -> AsyncWatchProvidersResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncWatchProvidersResourceWithRawResponse(self) @@ -87,7 +87,7 @@ def with_streaming_response(self) -> AsyncWatchProvidersResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncWatchProvidersResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/networks/alternative_names.py b/src/tmdb_client/resources/networks/alternative_names.py index c5688d7..a966f11 100644 --- a/src/tmdb_client/resources/networks/alternative_names.py +++ b/src/tmdb_client/resources/networks/alternative_names.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> AlternativeNamesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AlternativeNamesResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> AlternativeNamesResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AlternativeNamesResourceWithStreamingResponse(self) @@ -78,7 +78,7 @@ def with_raw_response(self) -> AsyncAlternativeNamesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncAlternativeNamesResourceWithRawResponse(self) @@ -87,7 +87,7 @@ def with_streaming_response(self) -> AsyncAlternativeNamesResourceWithStreamingR """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncAlternativeNamesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/networks/images.py b/src/tmdb_client/resources/networks/images.py index 5224512..911cc3c 100644 --- a/src/tmdb_client/resources/networks/images.py +++ b/src/tmdb_client/resources/networks/images.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> ImagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ImagesResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> ImagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ImagesResourceWithStreamingResponse(self) @@ -78,7 +78,7 @@ def with_raw_response(self) -> AsyncImagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncImagesResourceWithRawResponse(self) @@ -87,7 +87,7 @@ def with_streaming_response(self) -> AsyncImagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncImagesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/networks/networks.py b/src/tmdb_client/resources/networks/networks.py index 53f3c36..bf058e6 100644 --- a/src/tmdb_client/resources/networks/networks.py +++ b/src/tmdb_client/resources/networks/networks.py @@ -50,7 +50,7 @@ def with_raw_response(self) -> NetworksResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return NetworksResourceWithRawResponse(self) @@ -59,7 +59,7 @@ def with_streaming_response(self) -> NetworksResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return NetworksResourceWithStreamingResponse(self) @@ -110,7 +110,7 @@ def with_raw_response(self) -> AsyncNetworksResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncNetworksResourceWithRawResponse(self) @@ -119,7 +119,7 @@ def with_streaming_response(self) -> AsyncNetworksResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncNetworksResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/people/changes.py b/src/tmdb_client/resources/people/changes.py index 39aaa05..285ac60 100644 --- a/src/tmdb_client/resources/people/changes.py +++ b/src/tmdb_client/resources/people/changes.py @@ -34,7 +34,7 @@ def with_raw_response(self) -> ChangesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ChangesResourceWithRawResponse(self) @@ -43,7 +43,7 @@ def with_streaming_response(self) -> ChangesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ChangesResourceWithStreamingResponse(self) @@ -99,7 +99,7 @@ def with_raw_response(self) -> AsyncChangesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncChangesResourceWithRawResponse(self) @@ -108,7 +108,7 @@ def with_streaming_response(self) -> AsyncChangesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncChangesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/people/combined_credits.py b/src/tmdb_client/resources/people/combined_credits.py index d22f415..24d4764 100644 --- a/src/tmdb_client/resources/people/combined_credits.py +++ b/src/tmdb_client/resources/people/combined_credits.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> CombinedCreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return CombinedCreditsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> CombinedCreditsResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return CombinedCreditsResourceWithStreamingResponse(self) @@ -90,7 +90,7 @@ def with_raw_response(self) -> AsyncCombinedCreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncCombinedCreditsResourceWithRawResponse(self) @@ -99,7 +99,7 @@ def with_streaming_response(self) -> AsyncCombinedCreditsResourceWithStreamingRe """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncCombinedCreditsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/people/images.py b/src/tmdb_client/resources/people/images.py index c4f2374..df7c55e 100644 --- a/src/tmdb_client/resources/people/images.py +++ b/src/tmdb_client/resources/people/images.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> ImagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ImagesResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> ImagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ImagesResourceWithStreamingResponse(self) @@ -78,7 +78,7 @@ def with_raw_response(self) -> AsyncImagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncImagesResourceWithRawResponse(self) @@ -87,7 +87,7 @@ def with_streaming_response(self) -> AsyncImagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncImagesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/people/movie_credits.py b/src/tmdb_client/resources/people/movie_credits.py index 526b697..d23bcd9 100644 --- a/src/tmdb_client/resources/people/movie_credits.py +++ b/src/tmdb_client/resources/people/movie_credits.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> MovieCreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return MovieCreditsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> MovieCreditsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return MovieCreditsResourceWithStreamingResponse(self) @@ -88,7 +88,7 @@ def with_raw_response(self) -> AsyncMovieCreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncMovieCreditsResourceWithRawResponse(self) @@ -97,7 +97,7 @@ def with_streaming_response(self) -> AsyncMovieCreditsResourceWithStreamingRespo """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncMovieCreditsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/people/people.py b/src/tmdb_client/resources/people/people.py index 57243d9..9c73702 100644 --- a/src/tmdb_client/resources/people/people.py +++ b/src/tmdb_client/resources/people/people.py @@ -107,7 +107,7 @@ def with_raw_response(self) -> PeopleResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return PeopleResourceWithRawResponse(self) @@ -116,7 +116,7 @@ def with_streaming_response(self) -> PeopleResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return PeopleResourceWithStreamingResponse(self) @@ -341,7 +341,7 @@ def with_raw_response(self) -> AsyncPeopleResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncPeopleResourceWithRawResponse(self) @@ -350,7 +350,7 @@ def with_streaming_response(self) -> AsyncPeopleResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncPeopleResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/people/popular.py b/src/tmdb_client/resources/people/popular.py index 8ed5649..650993a 100644 --- a/src/tmdb_client/resources/people/popular.py +++ b/src/tmdb_client/resources/people/popular.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> PopularResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return PopularResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> PopularResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return PopularResourceWithStreamingResponse(self) @@ -94,7 +94,7 @@ def with_raw_response(self) -> AsyncPopularResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncPopularResourceWithRawResponse(self) @@ -103,7 +103,7 @@ def with_streaming_response(self) -> AsyncPopularResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncPopularResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/people/tv_credits.py b/src/tmdb_client/resources/people/tv_credits.py index 08ecb13..1fcc231 100644 --- a/src/tmdb_client/resources/people/tv_credits.py +++ b/src/tmdb_client/resources/people/tv_credits.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> TvCreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TvCreditsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> TvCreditsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TvCreditsResourceWithStreamingResponse(self) @@ -88,7 +88,7 @@ def with_raw_response(self) -> AsyncTvCreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTvCreditsResourceWithRawResponse(self) @@ -97,7 +97,7 @@ def with_streaming_response(self) -> AsyncTvCreditsResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTvCreditsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/person/latest.py b/src/tmdb_client/resources/person/latest.py index a693570..e9499d3 100644 --- a/src/tmdb_client/resources/person/latest.py +++ b/src/tmdb_client/resources/person/latest.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> LatestResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return LatestResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> LatestResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return LatestResourceWithStreamingResponse(self) @@ -70,7 +70,7 @@ def with_raw_response(self) -> AsyncLatestResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncLatestResourceWithRawResponse(self) @@ -79,7 +79,7 @@ def with_streaming_response(self) -> AsyncLatestResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncLatestResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/person/person.py b/src/tmdb_client/resources/person/person.py index 76a2938..9344a82 100644 --- a/src/tmdb_client/resources/person/person.py +++ b/src/tmdb_client/resources/person/person.py @@ -27,7 +27,7 @@ def with_raw_response(self) -> PersonResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return PersonResourceWithRawResponse(self) @@ -36,7 +36,7 @@ def with_streaming_response(self) -> PersonResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return PersonResourceWithStreamingResponse(self) @@ -52,7 +52,7 @@ def with_raw_response(self) -> AsyncPersonResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncPersonResourceWithRawResponse(self) @@ -61,7 +61,7 @@ def with_streaming_response(self) -> AsyncPersonResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncPersonResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/reviews.py b/src/tmdb_client/resources/reviews.py index 7c38f27..ec56fb7 100644 --- a/src/tmdb_client/resources/reviews.py +++ b/src/tmdb_client/resources/reviews.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> ReviewsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ReviewsResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> ReviewsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ReviewsResourceWithStreamingResponse(self) @@ -80,7 +80,7 @@ def with_raw_response(self) -> AsyncReviewsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncReviewsResourceWithRawResponse(self) @@ -89,7 +89,7 @@ def with_streaming_response(self) -> AsyncReviewsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncReviewsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/search.py b/src/tmdb_client/resources/search.py index bbd9498..e319857 100644 --- a/src/tmdb_client/resources/search.py +++ b/src/tmdb_client/resources/search.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> SearchResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return SearchResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> SearchResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return SearchResourceWithStreamingResponse(self) @@ -191,7 +191,7 @@ def with_raw_response(self) -> AsyncSearchResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncSearchResourceWithRawResponse(self) @@ -200,7 +200,7 @@ def with_streaming_response(self) -> AsyncSearchResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncSearchResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/trending.py b/src/tmdb_client/resources/trending.py index 5ba9421..bf85852 100644 --- a/src/tmdb_client/resources/trending.py +++ b/src/tmdb_client/resources/trending.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> TrendingResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TrendingResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> TrendingResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TrendingResourceWithStreamingResponse(self) @@ -94,7 +94,7 @@ def with_raw_response(self) -> AsyncTrendingResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTrendingResourceWithRawResponse(self) @@ -103,7 +103,7 @@ def with_streaming_response(self) -> AsyncTrendingResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTrendingResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/trending_movies.py b/src/tmdb_client/resources/trending_movies.py index f3593b4..c8ab7ef 100644 --- a/src/tmdb_client/resources/trending_movies.py +++ b/src/tmdb_client/resources/trending_movies.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> TrendingMoviesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TrendingMoviesResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> TrendingMoviesResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TrendingMoviesResourceWithStreamingResponse(self) @@ -94,7 +94,7 @@ def with_raw_response(self) -> AsyncTrendingMoviesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTrendingMoviesResourceWithRawResponse(self) @@ -103,7 +103,7 @@ def with_streaming_response(self) -> AsyncTrendingMoviesResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTrendingMoviesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/trending_people.py b/src/tmdb_client/resources/trending_people.py index b9cbfa6..1fbcb97 100644 --- a/src/tmdb_client/resources/trending_people.py +++ b/src/tmdb_client/resources/trending_people.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> TrendingPeopleResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TrendingPeopleResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> TrendingPeopleResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TrendingPeopleResourceWithStreamingResponse(self) @@ -94,7 +94,7 @@ def with_raw_response(self) -> AsyncTrendingPeopleResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTrendingPeopleResourceWithRawResponse(self) @@ -103,7 +103,7 @@ def with_streaming_response(self) -> AsyncTrendingPeopleResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTrendingPeopleResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/trending_tv_shows.py b/src/tmdb_client/resources/trending_tv_shows.py index 8221b25..5977b45 100644 --- a/src/tmdb_client/resources/trending_tv_shows.py +++ b/src/tmdb_client/resources/trending_tv_shows.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> TrendingTvShowsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TrendingTvShowsResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> TrendingTvShowsResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TrendingTvShowsResourceWithStreamingResponse(self) @@ -94,7 +94,7 @@ def with_raw_response(self) -> AsyncTrendingTvShowsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTrendingTvShowsResourceWithRawResponse(self) @@ -103,7 +103,7 @@ def with_streaming_response(self) -> AsyncTrendingTvShowsResourceWithStreamingRe """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTrendingTvShowsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/account_states.py b/src/tmdb_client/resources/tv/account_states.py index 482589e..3de5b73 100644 --- a/src/tmdb_client/resources/tv/account_states.py +++ b/src/tmdb_client/resources/tv/account_states.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> AccountStatesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AccountStatesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> AccountStatesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AccountStatesResourceWithStreamingResponse(self) @@ -95,7 +95,7 @@ def with_raw_response(self) -> AsyncAccountStatesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncAccountStatesResourceWithRawResponse(self) @@ -104,7 +104,7 @@ def with_streaming_response(self) -> AsyncAccountStatesResourceWithStreamingResp """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncAccountStatesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/changes.py b/src/tmdb_client/resources/tv/changes.py index 8be079e..c1dfedd 100644 --- a/src/tmdb_client/resources/tv/changes.py +++ b/src/tmdb_client/resources/tv/changes.py @@ -34,7 +34,7 @@ def with_raw_response(self) -> ChangesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ChangesResourceWithRawResponse(self) @@ -43,7 +43,7 @@ def with_streaming_response(self) -> ChangesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ChangesResourceWithStreamingResponse(self) @@ -99,7 +99,7 @@ def with_raw_response(self) -> AsyncChangesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncChangesResourceWithRawResponse(self) @@ -108,7 +108,7 @@ def with_streaming_response(self) -> AsyncChangesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncChangesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/episode/changes.py b/src/tmdb_client/resources/tv/episode/changes.py index b3b9aa2..340af18 100644 --- a/src/tmdb_client/resources/tv/episode/changes.py +++ b/src/tmdb_client/resources/tv/episode/changes.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> ChangesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ChangesResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> ChangesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ChangesResourceWithStreamingResponse(self) @@ -78,7 +78,7 @@ def with_raw_response(self) -> AsyncChangesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncChangesResourceWithRawResponse(self) @@ -87,7 +87,7 @@ def with_streaming_response(self) -> AsyncChangesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncChangesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/episode/episode.py b/src/tmdb_client/resources/tv/episode/episode.py index 9a5c989..de2f374 100644 --- a/src/tmdb_client/resources/tv/episode/episode.py +++ b/src/tmdb_client/resources/tv/episode/episode.py @@ -27,7 +27,7 @@ def with_raw_response(self) -> EpisodeResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return EpisodeResourceWithRawResponse(self) @@ -36,7 +36,7 @@ def with_streaming_response(self) -> EpisodeResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return EpisodeResourceWithStreamingResponse(self) @@ -52,7 +52,7 @@ def with_raw_response(self) -> AsyncEpisodeResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncEpisodeResourceWithRawResponse(self) @@ -61,7 +61,7 @@ def with_streaming_response(self) -> AsyncEpisodeResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncEpisodeResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/episode_group.py b/src/tmdb_client/resources/tv/episode_group.py index 45c2c6e..cbe693e 100644 --- a/src/tmdb_client/resources/tv/episode_group.py +++ b/src/tmdb_client/resources/tv/episode_group.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> EpisodeGroupResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return EpisodeGroupResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> EpisodeGroupResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return EpisodeGroupResourceWithStreamingResponse(self) @@ -82,7 +82,7 @@ def with_raw_response(self) -> AsyncEpisodeGroupResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncEpisodeGroupResourceWithRawResponse(self) @@ -91,7 +91,7 @@ def with_streaming_response(self) -> AsyncEpisodeGroupResourceWithStreamingRespo """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncEpisodeGroupResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/episodes/episodes.py b/src/tmdb_client/resources/tv/episodes/episodes.py index 3160f57..774b050 100644 --- a/src/tmdb_client/resources/tv/episodes/episodes.py +++ b/src/tmdb_client/resources/tv/episodes/episodes.py @@ -39,7 +39,7 @@ def with_raw_response(self) -> EpisodesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return EpisodesResourceWithRawResponse(self) @@ -48,7 +48,7 @@ def with_streaming_response(self) -> EpisodesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return EpisodesResourceWithStreamingResponse(self) @@ -68,7 +68,7 @@ def with_raw_response(self) -> AsyncEpisodesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncEpisodesResourceWithRawResponse(self) @@ -77,7 +77,7 @@ def with_streaming_response(self) -> AsyncEpisodesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncEpisodesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/episodes/rating.py b/src/tmdb_client/resources/tv/episodes/rating.py index 1f0985d..4490ccc 100644 --- a/src/tmdb_client/resources/tv/episodes/rating.py +++ b/src/tmdb_client/resources/tv/episodes/rating.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> RatingResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return RatingResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> RatingResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return RatingResourceWithStreamingResponse(self) @@ -97,7 +97,7 @@ def with_raw_response(self) -> AsyncRatingResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncRatingResourceWithRawResponse(self) @@ -106,7 +106,7 @@ def with_streaming_response(self) -> AsyncRatingResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncRatingResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/episodes/videos.py b/src/tmdb_client/resources/tv/episodes/videos.py index 0c3d09d..bea668d 100644 --- a/src/tmdb_client/resources/tv/episodes/videos.py +++ b/src/tmdb_client/resources/tv/episodes/videos.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> VideosResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return VideosResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> VideosResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return VideosResourceWithStreamingResponse(self) @@ -100,7 +100,7 @@ def with_raw_response(self) -> AsyncVideosResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncVideosResourceWithRawResponse(self) @@ -109,7 +109,7 @@ def with_streaming_response(self) -> AsyncVideosResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncVideosResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/images.py b/src/tmdb_client/resources/tv/images.py index 7da2a0b..1245c94 100644 --- a/src/tmdb_client/resources/tv/images.py +++ b/src/tmdb_client/resources/tv/images.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> ImagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ImagesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> ImagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ImagesResourceWithStreamingResponse(self) @@ -99,7 +99,7 @@ def with_raw_response(self) -> AsyncImagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncImagesResourceWithRawResponse(self) @@ -108,7 +108,7 @@ def with_streaming_response(self) -> AsyncImagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncImagesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/seasons/account_states.py b/src/tmdb_client/resources/tv/seasons/account_states.py index c3ee8f0..321377b 100644 --- a/src/tmdb_client/resources/tv/seasons/account_states.py +++ b/src/tmdb_client/resources/tv/seasons/account_states.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> AccountStatesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AccountStatesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> AccountStatesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AccountStatesResourceWithStreamingResponse(self) @@ -96,7 +96,7 @@ def with_raw_response(self) -> AsyncAccountStatesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncAccountStatesResourceWithRawResponse(self) @@ -105,7 +105,7 @@ def with_streaming_response(self) -> AsyncAccountStatesResourceWithStreamingResp """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncAccountStatesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/seasons/aggregate_credits.py b/src/tmdb_client/resources/tv/seasons/aggregate_credits.py index a35a177..0beaf66 100644 --- a/src/tmdb_client/resources/tv/seasons/aggregate_credits.py +++ b/src/tmdb_client/resources/tv/seasons/aggregate_credits.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> AggregateCreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AggregateCreditsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> AggregateCreditsResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AggregateCreditsResourceWithStreamingResponse(self) @@ -91,7 +91,7 @@ def with_raw_response(self) -> AsyncAggregateCreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncAggregateCreditsResourceWithRawResponse(self) @@ -100,7 +100,7 @@ def with_streaming_response(self) -> AsyncAggregateCreditsResourceWithStreamingR """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncAggregateCreditsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/seasons/changes.py b/src/tmdb_client/resources/tv/seasons/changes.py index daf5f26..859f133 100644 --- a/src/tmdb_client/resources/tv/seasons/changes.py +++ b/src/tmdb_client/resources/tv/seasons/changes.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> ChangesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ChangesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> ChangesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ChangesResourceWithStreamingResponse(self) @@ -97,7 +97,7 @@ def with_raw_response(self) -> AsyncChangesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncChangesResourceWithRawResponse(self) @@ -106,7 +106,7 @@ def with_streaming_response(self) -> AsyncChangesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncChangesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/seasons/credits.py b/src/tmdb_client/resources/tv/seasons/credits.py index 40363fe..b63f0c8 100644 --- a/src/tmdb_client/resources/tv/seasons/credits.py +++ b/src/tmdb_client/resources/tv/seasons/credits.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> CreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return CreditsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> CreditsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return CreditsResourceWithStreamingResponse(self) @@ -89,7 +89,7 @@ def with_raw_response(self) -> AsyncCreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncCreditsResourceWithRawResponse(self) @@ -98,7 +98,7 @@ def with_streaming_response(self) -> AsyncCreditsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncCreditsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/seasons/episodes/credits.py b/src/tmdb_client/resources/tv/seasons/episodes/credits.py index 58ba4ad..2c5f230 100644 --- a/src/tmdb_client/resources/tv/seasons/episodes/credits.py +++ b/src/tmdb_client/resources/tv/seasons/episodes/credits.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> CreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return CreditsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> CreditsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return CreditsResourceWithStreamingResponse(self) @@ -90,7 +90,7 @@ def with_raw_response(self) -> AsyncCreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncCreditsResourceWithRawResponse(self) @@ -99,7 +99,7 @@ def with_streaming_response(self) -> AsyncCreditsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncCreditsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/seasons/episodes/episodes.py b/src/tmdb_client/resources/tv/seasons/episodes/episodes.py index 5124ee4..8d6da78 100644 --- a/src/tmdb_client/resources/tv/seasons/episodes/episodes.py +++ b/src/tmdb_client/resources/tv/seasons/episodes/episodes.py @@ -79,7 +79,7 @@ def with_raw_response(self) -> EpisodesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return EpisodesResourceWithRawResponse(self) @@ -88,7 +88,7 @@ def with_streaming_response(self) -> EpisodesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return EpisodesResourceWithStreamingResponse(self) @@ -163,7 +163,7 @@ def with_raw_response(self) -> AsyncEpisodesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncEpisodesResourceWithRawResponse(self) @@ -172,7 +172,7 @@ def with_streaming_response(self) -> AsyncEpisodesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncEpisodesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/seasons/episodes/external_ids.py b/src/tmdb_client/resources/tv/seasons/episodes/external_ids.py index f16a26d..fefd013 100644 --- a/src/tmdb_client/resources/tv/seasons/episodes/external_ids.py +++ b/src/tmdb_client/resources/tv/seasons/episodes/external_ids.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> ExternalIDsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ExternalIDsResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> ExternalIDsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ExternalIDsResourceWithStreamingResponse(self) @@ -82,7 +82,7 @@ def with_raw_response(self) -> AsyncExternalIDsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncExternalIDsResourceWithRawResponse(self) @@ -91,7 +91,7 @@ def with_streaming_response(self) -> AsyncExternalIDsResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncExternalIDsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/seasons/episodes/images.py b/src/tmdb_client/resources/tv/seasons/episodes/images.py index 11302d7..00ca192 100644 --- a/src/tmdb_client/resources/tv/seasons/episodes/images.py +++ b/src/tmdb_client/resources/tv/seasons/episodes/images.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> ImagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ImagesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> ImagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ImagesResourceWithStreamingResponse(self) @@ -101,7 +101,7 @@ def with_raw_response(self) -> AsyncImagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncImagesResourceWithRawResponse(self) @@ -110,7 +110,7 @@ def with_streaming_response(self) -> AsyncImagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncImagesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/seasons/episodes/translations.py b/src/tmdb_client/resources/tv/seasons/episodes/translations.py index feaeff6..8e9c765 100644 --- a/src/tmdb_client/resources/tv/seasons/episodes/translations.py +++ b/src/tmdb_client/resources/tv/seasons/episodes/translations.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> TranslationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TranslationsResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> TranslationsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TranslationsResourceWithStreamingResponse(self) @@ -80,7 +80,7 @@ def with_raw_response(self) -> AsyncTranslationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTranslationsResourceWithRawResponse(self) @@ -89,7 +89,7 @@ def with_streaming_response(self) -> AsyncTranslationsResourceWithStreamingRespo """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTranslationsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/seasons/external_ids.py b/src/tmdb_client/resources/tv/seasons/external_ids.py index edb6853..5364ad8 100644 --- a/src/tmdb_client/resources/tv/seasons/external_ids.py +++ b/src/tmdb_client/resources/tv/seasons/external_ids.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> ExternalIDsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ExternalIDsResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> ExternalIDsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ExternalIDsResourceWithStreamingResponse(self) @@ -79,7 +79,7 @@ def with_raw_response(self) -> AsyncExternalIDsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncExternalIDsResourceWithRawResponse(self) @@ -88,7 +88,7 @@ def with_streaming_response(self) -> AsyncExternalIDsResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncExternalIDsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/seasons/images.py b/src/tmdb_client/resources/tv/seasons/images.py index 4cb5356..18c4e83 100644 --- a/src/tmdb_client/resources/tv/seasons/images.py +++ b/src/tmdb_client/resources/tv/seasons/images.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> ImagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ImagesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> ImagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ImagesResourceWithStreamingResponse(self) @@ -100,7 +100,7 @@ def with_raw_response(self) -> AsyncImagesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncImagesResourceWithRawResponse(self) @@ -109,7 +109,7 @@ def with_streaming_response(self) -> AsyncImagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncImagesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/seasons/seasons.py b/src/tmdb_client/resources/tv/seasons/seasons.py index ecc43a0..219206d 100644 --- a/src/tmdb_client/resources/tv/seasons/seasons.py +++ b/src/tmdb_client/resources/tv/seasons/seasons.py @@ -152,7 +152,7 @@ def with_raw_response(self) -> SeasonsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return SeasonsResourceWithRawResponse(self) @@ -161,7 +161,7 @@ def with_streaming_response(self) -> SeasonsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return SeasonsResourceWithStreamingResponse(self) @@ -259,7 +259,7 @@ def with_raw_response(self) -> AsyncSeasonsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncSeasonsResourceWithRawResponse(self) @@ -268,7 +268,7 @@ def with_streaming_response(self) -> AsyncSeasonsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncSeasonsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/seasons/translations.py b/src/tmdb_client/resources/tv/seasons/translations.py index 92e73da..677a65d 100644 --- a/src/tmdb_client/resources/tv/seasons/translations.py +++ b/src/tmdb_client/resources/tv/seasons/translations.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> TranslationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TranslationsResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> TranslationsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TranslationsResourceWithStreamingResponse(self) @@ -79,7 +79,7 @@ def with_raw_response(self) -> AsyncTranslationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTranslationsResourceWithRawResponse(self) @@ -88,7 +88,7 @@ def with_streaming_response(self) -> AsyncTranslationsResourceWithStreamingRespo """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTranslationsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/seasons/videos.py b/src/tmdb_client/resources/tv/seasons/videos.py index 57d3281..ec50bb9 100644 --- a/src/tmdb_client/resources/tv/seasons/videos.py +++ b/src/tmdb_client/resources/tv/seasons/videos.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> VideosResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return VideosResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> VideosResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return VideosResourceWithStreamingResponse(self) @@ -99,7 +99,7 @@ def with_raw_response(self) -> AsyncVideosResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncVideosResourceWithRawResponse(self) @@ -108,7 +108,7 @@ def with_streaming_response(self) -> AsyncVideosResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncVideosResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/seasons/watch_providers.py b/src/tmdb_client/resources/tv/seasons/watch_providers.py index 59de0ea..a866098 100644 --- a/src/tmdb_client/resources/tv/seasons/watch_providers.py +++ b/src/tmdb_client/resources/tv/seasons/watch_providers.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> WatchProvidersResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return WatchProvidersResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> WatchProvidersResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return WatchProvidersResourceWithStreamingResponse(self) @@ -89,7 +89,7 @@ def with_raw_response(self) -> AsyncWatchProvidersResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncWatchProvidersResourceWithRawResponse(self) @@ -98,7 +98,7 @@ def with_streaming_response(self) -> AsyncWatchProvidersResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncWatchProvidersResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv/tv.py b/src/tmdb_client/resources/tv/tv.py index 016aa9f..39bdfb9 100644 --- a/src/tmdb_client/resources/tv/tv.py +++ b/src/tmdb_client/resources/tv/tv.py @@ -119,7 +119,7 @@ def with_raw_response(self) -> TvResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TvResourceWithRawResponse(self) @@ -128,7 +128,7 @@ def with_streaming_response(self) -> TvResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TvResourceWithStreamingResponse(self) @@ -269,7 +269,7 @@ def with_raw_response(self) -> AsyncTvResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTvResourceWithRawResponse(self) @@ -278,7 +278,7 @@ def with_streaming_response(self) -> AsyncTvResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTvResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_series.py b/src/tmdb_client/resources/tv_series.py index 47afc87..6333569 100644 --- a/src/tmdb_client/resources/tv_series.py +++ b/src/tmdb_client/resources/tv_series.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> TvSeriesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TvSeriesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> TvSeriesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TvSeriesResourceWithStreamingResponse(self) @@ -95,7 +95,7 @@ def with_raw_response(self) -> AsyncTvSeriesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTvSeriesResourceWithRawResponse(self) @@ -104,7 +104,7 @@ def with_streaming_response(self) -> AsyncTvSeriesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTvSeriesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/aggregate_credits.py b/src/tmdb_client/resources/tv_shows/aggregate_credits.py index f1f8266..108fa0a 100644 --- a/src/tmdb_client/resources/tv_shows/aggregate_credits.py +++ b/src/tmdb_client/resources/tv_shows/aggregate_credits.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> AggregateCreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AggregateCreditsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> AggregateCreditsResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AggregateCreditsResourceWithStreamingResponse(self) @@ -90,7 +90,7 @@ def with_raw_response(self) -> AsyncAggregateCreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncAggregateCreditsResourceWithRawResponse(self) @@ -99,7 +99,7 @@ def with_streaming_response(self) -> AsyncAggregateCreditsResourceWithStreamingR """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncAggregateCreditsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/airing_today.py b/src/tmdb_client/resources/tv_shows/airing_today.py index 7c28eb5..9b3b109 100644 --- a/src/tmdb_client/resources/tv_shows/airing_today.py +++ b/src/tmdb_client/resources/tv_shows/airing_today.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> AiringTodayResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AiringTodayResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> AiringTodayResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AiringTodayResourceWithStreamingResponse(self) @@ -96,7 +96,7 @@ def with_raw_response(self) -> AsyncAiringTodayResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncAiringTodayResourceWithRawResponse(self) @@ -105,7 +105,7 @@ def with_streaming_response(self) -> AsyncAiringTodayResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncAiringTodayResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/alternative_titles.py b/src/tmdb_client/resources/tv_shows/alternative_titles.py index a43ecf4..751ae96 100644 --- a/src/tmdb_client/resources/tv_shows/alternative_titles.py +++ b/src/tmdb_client/resources/tv_shows/alternative_titles.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> AlternativeTitlesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AlternativeTitlesResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> AlternativeTitlesResourceWithStreamingRespo """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AlternativeTitlesResourceWithStreamingResponse(self) @@ -78,7 +78,7 @@ def with_raw_response(self) -> AsyncAlternativeTitlesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncAlternativeTitlesResourceWithRawResponse(self) @@ -87,7 +87,7 @@ def with_streaming_response(self) -> AsyncAlternativeTitlesResourceWithStreaming """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncAlternativeTitlesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/changes.py b/src/tmdb_client/resources/tv_shows/changes.py index 0f23c1b..f23a24f 100644 --- a/src/tmdb_client/resources/tv_shows/changes.py +++ b/src/tmdb_client/resources/tv_shows/changes.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> ChangesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ChangesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> ChangesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ChangesResourceWithStreamingResponse(self) @@ -97,7 +97,7 @@ def with_raw_response(self) -> AsyncChangesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncChangesResourceWithRawResponse(self) @@ -106,7 +106,7 @@ def with_streaming_response(self) -> AsyncChangesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncChangesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/content_ratings.py b/src/tmdb_client/resources/tv_shows/content_ratings.py index cdaaa36..b04f067 100644 --- a/src/tmdb_client/resources/tv_shows/content_ratings.py +++ b/src/tmdb_client/resources/tv_shows/content_ratings.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> ContentRatingsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ContentRatingsResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> ContentRatingsResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ContentRatingsResourceWithStreamingResponse(self) @@ -78,7 +78,7 @@ def with_raw_response(self) -> AsyncContentRatingsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncContentRatingsResourceWithRawResponse(self) @@ -87,7 +87,7 @@ def with_streaming_response(self) -> AsyncContentRatingsResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncContentRatingsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/credits.py b/src/tmdb_client/resources/tv_shows/credits.py index 4d0eaf7..027ae00 100644 --- a/src/tmdb_client/resources/tv_shows/credits.py +++ b/src/tmdb_client/resources/tv_shows/credits.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> CreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return CreditsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> CreditsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return CreditsResourceWithStreamingResponse(self) @@ -88,7 +88,7 @@ def with_raw_response(self) -> AsyncCreditsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncCreditsResourceWithRawResponse(self) @@ -97,7 +97,7 @@ def with_streaming_response(self) -> AsyncCreditsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncCreditsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/episode_groups.py b/src/tmdb_client/resources/tv_shows/episode_groups.py index 9cf4c76..a0c8ac4 100644 --- a/src/tmdb_client/resources/tv_shows/episode_groups.py +++ b/src/tmdb_client/resources/tv_shows/episode_groups.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> EpisodeGroupsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return EpisodeGroupsResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> EpisodeGroupsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return EpisodeGroupsResourceWithStreamingResponse(self) @@ -78,7 +78,7 @@ def with_raw_response(self) -> AsyncEpisodeGroupsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncEpisodeGroupsResourceWithRawResponse(self) @@ -87,7 +87,7 @@ def with_streaming_response(self) -> AsyncEpisodeGroupsResourceWithStreamingResp """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncEpisodeGroupsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/external_ids.py b/src/tmdb_client/resources/tv_shows/external_ids.py index b879a25..e1a892b 100644 --- a/src/tmdb_client/resources/tv_shows/external_ids.py +++ b/src/tmdb_client/resources/tv_shows/external_ids.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> ExternalIDsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ExternalIDsResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> ExternalIDsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ExternalIDsResourceWithStreamingResponse(self) @@ -78,7 +78,7 @@ def with_raw_response(self) -> AsyncExternalIDsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncExternalIDsResourceWithRawResponse(self) @@ -87,7 +87,7 @@ def with_streaming_response(self) -> AsyncExternalIDsResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncExternalIDsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/keywords.py b/src/tmdb_client/resources/tv_shows/keywords.py index 94c795b..62a93c7 100644 --- a/src/tmdb_client/resources/tv_shows/keywords.py +++ b/src/tmdb_client/resources/tv_shows/keywords.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> KeywordsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return KeywordsResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> KeywordsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return KeywordsResourceWithStreamingResponse(self) @@ -78,7 +78,7 @@ def with_raw_response(self) -> AsyncKeywordsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncKeywordsResourceWithRawResponse(self) @@ -87,7 +87,7 @@ def with_streaming_response(self) -> AsyncKeywordsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncKeywordsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/latest.py b/src/tmdb_client/resources/tv_shows/latest.py index b536c4b..7e8f00c 100644 --- a/src/tmdb_client/resources/tv_shows/latest.py +++ b/src/tmdb_client/resources/tv_shows/latest.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> LatestResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return LatestResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> LatestResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return LatestResourceWithStreamingResponse(self) @@ -66,7 +66,7 @@ def with_raw_response(self) -> AsyncLatestResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncLatestResourceWithRawResponse(self) @@ -75,7 +75,7 @@ def with_streaming_response(self) -> AsyncLatestResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncLatestResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/on_the_air.py b/src/tmdb_client/resources/tv_shows/on_the_air.py index 5c2a98e..4263ff8 100644 --- a/src/tmdb_client/resources/tv_shows/on_the_air.py +++ b/src/tmdb_client/resources/tv_shows/on_the_air.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> OnTheAirResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return OnTheAirResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> OnTheAirResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return OnTheAirResourceWithStreamingResponse(self) @@ -96,7 +96,7 @@ def with_raw_response(self) -> AsyncOnTheAirResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncOnTheAirResourceWithRawResponse(self) @@ -105,7 +105,7 @@ def with_streaming_response(self) -> AsyncOnTheAirResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncOnTheAirResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/popular.py b/src/tmdb_client/resources/tv_shows/popular.py index 0d85e1f..7146cda 100644 --- a/src/tmdb_client/resources/tv_shows/popular.py +++ b/src/tmdb_client/resources/tv_shows/popular.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> PopularResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return PopularResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> PopularResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return PopularResourceWithStreamingResponse(self) @@ -94,7 +94,7 @@ def with_raw_response(self) -> AsyncPopularResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncPopularResourceWithRawResponse(self) @@ -103,7 +103,7 @@ def with_streaming_response(self) -> AsyncPopularResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncPopularResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/rating.py b/src/tmdb_client/resources/tv_shows/rating.py index 102af63..13cd56a 100644 --- a/src/tmdb_client/resources/tv_shows/rating.py +++ b/src/tmdb_client/resources/tv_shows/rating.py @@ -32,7 +32,7 @@ def with_raw_response(self) -> RatingResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return RatingResourceWithRawResponse(self) @@ -41,7 +41,7 @@ def with_streaming_response(self) -> RatingResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return RatingResourceWithStreamingResponse(self) @@ -141,7 +141,7 @@ def with_raw_response(self) -> AsyncRatingResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncRatingResourceWithRawResponse(self) @@ -150,7 +150,7 @@ def with_streaming_response(self) -> AsyncRatingResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncRatingResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/recommendations.py b/src/tmdb_client/resources/tv_shows/recommendations.py index 2499073..a6ff178 100644 --- a/src/tmdb_client/resources/tv_shows/recommendations.py +++ b/src/tmdb_client/resources/tv_shows/recommendations.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> RecommendationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return RecommendationsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> RecommendationsResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return RecommendationsResourceWithStreamingResponse(self) @@ -95,7 +95,7 @@ def with_raw_response(self) -> AsyncRecommendationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncRecommendationsResourceWithRawResponse(self) @@ -104,7 +104,7 @@ def with_streaming_response(self) -> AsyncRecommendationsResourceWithStreamingRe """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncRecommendationsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/reviews.py b/src/tmdb_client/resources/tv_shows/reviews.py index ce80843..0f590b7 100644 --- a/src/tmdb_client/resources/tv_shows/reviews.py +++ b/src/tmdb_client/resources/tv_shows/reviews.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> ReviewsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ReviewsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> ReviewsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ReviewsResourceWithStreamingResponse(self) @@ -95,7 +95,7 @@ def with_raw_response(self) -> AsyncReviewsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncReviewsResourceWithRawResponse(self) @@ -104,7 +104,7 @@ def with_streaming_response(self) -> AsyncReviewsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncReviewsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/screened_theatrically.py b/src/tmdb_client/resources/tv_shows/screened_theatrically.py index 2587b6f..41503b7 100644 --- a/src/tmdb_client/resources/tv_shows/screened_theatrically.py +++ b/src/tmdb_client/resources/tv_shows/screened_theatrically.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> ScreenedTheatricallyResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return ScreenedTheatricallyResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> ScreenedTheatricallyResourceWithStreamingRe """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return ScreenedTheatricallyResourceWithStreamingResponse(self) @@ -78,7 +78,7 @@ def with_raw_response(self) -> AsyncScreenedTheatricallyResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncScreenedTheatricallyResourceWithRawResponse(self) @@ -87,7 +87,7 @@ def with_streaming_response(self) -> AsyncScreenedTheatricallyResourceWithStream """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncScreenedTheatricallyResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/similar.py b/src/tmdb_client/resources/tv_shows/similar.py index 4b6acdb..4350147 100644 --- a/src/tmdb_client/resources/tv_shows/similar.py +++ b/src/tmdb_client/resources/tv_shows/similar.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> SimilarResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return SimilarResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> SimilarResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return SimilarResourceWithStreamingResponse(self) @@ -97,7 +97,7 @@ def with_raw_response(self) -> AsyncSimilarResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncSimilarResourceWithRawResponse(self) @@ -106,7 +106,7 @@ def with_streaming_response(self) -> AsyncSimilarResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncSimilarResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/top_rated.py b/src/tmdb_client/resources/tv_shows/top_rated.py index 1b8cde1..dfa7b03 100644 --- a/src/tmdb_client/resources/tv_shows/top_rated.py +++ b/src/tmdb_client/resources/tv_shows/top_rated.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> TopRatedResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TopRatedResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> TopRatedResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TopRatedResourceWithStreamingResponse(self) @@ -94,7 +94,7 @@ def with_raw_response(self) -> AsyncTopRatedResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTopRatedResourceWithRawResponse(self) @@ -103,7 +103,7 @@ def with_streaming_response(self) -> AsyncTopRatedResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTopRatedResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/translations.py b/src/tmdb_client/resources/tv_shows/translations.py index 377a403..e0b20e9 100644 --- a/src/tmdb_client/resources/tv_shows/translations.py +++ b/src/tmdb_client/resources/tv_shows/translations.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> TranslationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TranslationsResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> TranslationsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TranslationsResourceWithStreamingResponse(self) @@ -78,7 +78,7 @@ def with_raw_response(self) -> AsyncTranslationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTranslationsResourceWithRawResponse(self) @@ -87,7 +87,7 @@ def with_streaming_response(self) -> AsyncTranslationsResourceWithStreamingRespo """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTranslationsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/tv_shows.py b/src/tmdb_client/resources/tv_shows/tv_shows.py index 897a564..6f909e9 100644 --- a/src/tmdb_client/resources/tv_shows/tv_shows.py +++ b/src/tmdb_client/resources/tv_shows/tv_shows.py @@ -267,7 +267,7 @@ def with_raw_response(self) -> TvShowsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TvShowsResourceWithRawResponse(self) @@ -276,7 +276,7 @@ def with_streaming_response(self) -> TvShowsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TvShowsResourceWithStreamingResponse(self) @@ -372,7 +372,7 @@ def with_raw_response(self) -> AsyncTvShowsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTvShowsResourceWithRawResponse(self) @@ -381,7 +381,7 @@ def with_streaming_response(self) -> AsyncTvShowsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTvShowsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/videos.py b/src/tmdb_client/resources/tv_shows/videos.py index a6e86c0..00d3f49 100644 --- a/src/tmdb_client/resources/tv_shows/videos.py +++ b/src/tmdb_client/resources/tv_shows/videos.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> VideosResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return VideosResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> VideosResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return VideosResourceWithStreamingResponse(self) @@ -98,7 +98,7 @@ def with_raw_response(self) -> AsyncVideosResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncVideosResourceWithRawResponse(self) @@ -107,7 +107,7 @@ def with_streaming_response(self) -> AsyncVideosResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncVideosResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/tv_shows/watch_providers.py b/src/tmdb_client/resources/tv_shows/watch_providers.py index cf0a7f5..7e8f9e3 100644 --- a/src/tmdb_client/resources/tv_shows/watch_providers.py +++ b/src/tmdb_client/resources/tv_shows/watch_providers.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> WatchProvidersResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return WatchProvidersResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> WatchProvidersResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return WatchProvidersResourceWithStreamingResponse(self) @@ -78,7 +78,7 @@ def with_raw_response(self) -> AsyncWatchProvidersResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncWatchProvidersResourceWithRawResponse(self) @@ -87,7 +87,7 @@ def with_streaming_response(self) -> AsyncWatchProvidersResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncWatchProvidersResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/watch_providers/movies.py b/src/tmdb_client/resources/watch_providers/movies.py index 887a0e6..777ffea 100644 --- a/src/tmdb_client/resources/watch_providers/movies.py +++ b/src/tmdb_client/resources/watch_providers/movies.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> MoviesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return MoviesResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> MoviesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return MoviesResourceWithStreamingResponse(self) @@ -94,7 +94,7 @@ def with_raw_response(self) -> AsyncMoviesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncMoviesResourceWithRawResponse(self) @@ -103,7 +103,7 @@ def with_streaming_response(self) -> AsyncMoviesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncMoviesResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/watch_providers/regions.py b/src/tmdb_client/resources/watch_providers/regions.py index 6b7ceb8..f9e28c3 100644 --- a/src/tmdb_client/resources/watch_providers/regions.py +++ b/src/tmdb_client/resources/watch_providers/regions.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> RegionsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return RegionsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> RegionsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return RegionsResourceWithStreamingResponse(self) @@ -87,7 +87,7 @@ def with_raw_response(self) -> AsyncRegionsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncRegionsResourceWithRawResponse(self) @@ -96,7 +96,7 @@ def with_streaming_response(self) -> AsyncRegionsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncRegionsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/watch_providers/tv_shows.py b/src/tmdb_client/resources/watch_providers/tv_shows.py index 2a206af..d4f91fd 100644 --- a/src/tmdb_client/resources/watch_providers/tv_shows.py +++ b/src/tmdb_client/resources/watch_providers/tv_shows.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> TvShowsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return TvShowsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> TvShowsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return TvShowsResourceWithStreamingResponse(self) @@ -94,7 +94,7 @@ def with_raw_response(self) -> AsyncTvShowsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncTvShowsResourceWithRawResponse(self) @@ -103,7 +103,7 @@ def with_streaming_response(self) -> AsyncTvShowsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncTvShowsResourceWithStreamingResponse(self) diff --git a/src/tmdb_client/resources/watch_providers/watch_providers.py b/src/tmdb_client/resources/watch_providers/watch_providers.py index 51f41e4..6fc6207 100644 --- a/src/tmdb_client/resources/watch_providers/watch_providers.py +++ b/src/tmdb_client/resources/watch_providers/watch_providers.py @@ -51,7 +51,7 @@ def with_raw_response(self) -> WatchProvidersResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return WatchProvidersResourceWithRawResponse(self) @@ -60,7 +60,7 @@ def with_streaming_response(self) -> WatchProvidersResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return WatchProvidersResourceWithStreamingResponse(self) @@ -84,7 +84,7 @@ def with_raw_response(self) -> AsyncWatchProvidersResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/jed-richards/tmdb-client-python#accessing-raw-response-data-eg-headers """ return AsyncWatchProvidersResourceWithRawResponse(self) @@ -93,7 +93,7 @@ def with_streaming_response(self) -> AsyncWatchProvidersResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/tmdb-client-python#with_streaming_response + For more information, see https://www.github.com/jed-richards/tmdb-client-python#with_streaming_response """ return AsyncWatchProvidersResourceWithStreamingResponse(self)